本文主要是介绍Flink实战(七十):监控(二)搭建flink可视化监控 Pushgateway+ Prometheus + Grafana (windows ),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1 Flink 的配置:
在flink配置⽂件flink-conf.yaml中添加:
metrics.reporter.promgateway.class:
org.apache.flink.metrics.prometheus.PrometheusPushGatewayReporter
metrics.reporter.promgateway.host: localhost # promgateway 主要是Pushgateway所在机器的ip地址
metrics.reporter.promgateway.port: 9091
metrics.reporter.promgateway.jobName: zhisheng // 随意起名
metrics.reporter.promgateway.randomJobNameSuffix: true
metrics.reporter.promgateway.deleteOnShutdown: false
将flink包中opt文件下的flink-metrics-prometheus-xxxxx.jar包复制到lib文件夹中
2 pushgateway 配置
这篇关于Flink实战(七十):监控(二)搭建flink可视化监控 Pushgateway+ Prometheus + Grafana (windows )的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!