[metric]使用Prometheus监控flink1.13org.apache.flink.metrics

[metric]使用Prometheus监控flink1.13org.apache.flink.metrics,第1张

目录
  • 1 Prometheus安装使用
  • 2 pushgateway安装使用
  • 3 flink配置
  • Prometheus查看到如下指标

1 Prometheus安装使用

prometheus下载地址:
https://prometheus.io/download/
打开http://localhost:9090/就可以访问使用

2 pushgateway安装使用

解压后直接运⾏ ./prometheus 就可以启动 prometheus

prometheus pushgateway下载地址:
https://prometheus.io/download/

编辑Prometheus中的prometheus.yaml文件

- job_name: 'pushgateway'
 scrape_interval: 10s
 honor_labels: true #加上此配置exporter节点上传数据中的⼀些标签将不会被pushgateway节点的相同标签覆盖
 static_configs:
 - targets: ['192.168.xx.xxx:9095']
 labels:
 instance: pushgateway

因为prometheus配置pushgateway 的时候,也会指定job和instance,但是它只表示
pushgateway实例,不能真正表达收集数据的含义。所以配置pushgateway需要添加
honor_labels:true,避免收集数据本身的job和instance被覆盖

启动 pushgaterway

./pushgaterway --web.listen-address=192.168.xx.xxx:9095
3 flink配置
vi flink-conf.yaml

底部添加

metrics.reporter.promgateway.class: org.apache.flink.metrics.prometheus.PrometheusPushGatewayReporter
metrics.reporter.promgateway.host: 192.168.xx.xxx
metrics.reporter.promgateway.port: 9095
metrics.reporter.promgateway.jobName: wyJob
metrics.reporter.promgateway.randomJobNameSuffix: true
metrics.reporter.promgateway.deleteOnShutdown: false

启动 Flink,可以看到启动日志有端口号

Prometheus查看到如下指标

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/langs/905403.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-15
下一篇2022-05-15

发表评论

登录后才能评论

评论列表(0条)

    保存