场景
准备
- prometheus已经部署pushgateway服务,访问{pushgateway.server:9091}可以看到面板
实现
- 基于springboot引入支持组件,版本可以
<!--监控检查--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency><dependency><groupId>io.micrometer</groupId><artifactId>micrometer-registry-prometheus</artifactId><version>1.5.14</version></dependency><dependency><groupId>io.prometheus</groupId><artifactId>simpleclient_pushgateway</artifactId><version>0.16.0</version></dependency>
- 开启配置
management:endpoints:web:exposure:# 暴露监控接口,*为全部接口include: '*'# 不暴露接口# exclude: 'info'metrics: #是否在内存中保存监控统计数据export:simple:enabled: false # 关闭内存中计算指标prometheus:enabled: true # 开启prometheus上传pushgateway: ## 配置pushgateway信息enabled: true # 开启pushgateway上传base-url: http://10.111.11.111:9091 # 配置pushgateway服务地址job: ${spring.application.name} # 配置pushgateway服务地址grouping-key:instance: ${spring.application.name}:${spring.profiles.active}lable1: labelValue1 # 自定义tagpush-rate: 10s #上传数据间隔
效果
在pushgateway面板中会显示新增的服务,在prometheus中也可能看到采集的数据