![[metric]使用Prometheus监控flink1.13org.apache.flink.metrics,第1张 [metric]使用Prometheus监控flink1.13org.apache.flink.metrics,第1张](/aiimages/%5Bmetric%5D%E4%BD%BF%E7%94%A8Prometheus%E7%9B%91%E6%8E%A7flink1.13org.apache.flink.metrics.png)
- 1 Prometheus安装使用
- 2 pushgateway安装使用
- 3 flink配置
- Prometheus查看到如下指标
prometheus下载地址:
https://prometheus.io/download/
打开http://localhost:9090/就可以访问使用
解压后直接运⾏ ./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查看到如下指标欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)