1.导入jar包
将 flink-metrics-prometheus_2.11-1.13.2.jar 包导入 flink-1.13.2/lib 目录下
2.配置 Reporter
选取 PrometheusPushGatewayReporter 方式,通过在官网查询 Flink 1.13.6 Metrics 的配置后,在 flink-conf.yaml 设置,配置如下:
metrics.reporter.promgateway.class: org.apache.flink.metrics.prometheus.PrometheusPushGatewayReporter
metrics.reporter.promgateway.host: 192.168.xxx.xxx
metrics.reporter.promgateway.port: 9091
metrics.reporter.promgateway.jobName: myJob
metrics.reporter.promgateway.randomJobNameSuffix: true
metrics.reporter.promgateway.deleteOnShutdown: false
metrics.reporter.promgateway.groupingKey: k1=v1;k2=v2
metrics.reporter.promgateway.interval: 60 SECONDS
3.部署 pushgateway
Pushgateway 是一个独立的服务,Pushgateway 位于应用程序发送指标和 Prometheus 服务器之间。
Pushgateway 接收指标,然后将其作为目标被 Prometheus 服务器拉取。可以将其看作代理服务,或者与 blackbox exporter 的行为相反,它接收度量,而不是探测它们。
4.解压 pushgateway
5.启动 pushgateway
进入到 pushgateway-1.4.1 目录下
./pushgateway &
查看是否在后台启动成功
ps aux|grep pushgateway
6.登录 pushgateway webui
7.编写prometheus配置文件prometheus.yml
8.登录prometheus webui
**9.登录 grafana **
配置 Grafana 数据源
添加Prometheus 数据源
选择 Prometheus
导入监控 Dashboard 模板
附:jar包+pushgateway压缩包+JSON 模板
链接:https://pan.baidu.com/s/1d0DOUgkYPrR0N1OTpaIclw
提取码:a9tc
版权归原作者 CHEN YOU 所有, 如有侵权,请联系我们删除。