- 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:90953 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查看到如下指标

![[metric]使用Prometheus监控flink1.13org.apache.flink.metrics [metric]使用Prometheus监控flink1.13org.apache.flink.metrics](http://www.mshxw.com/aiimages/31/882420.png)
