场景
准备
- 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 # 自定义tag
push-rate: 10s #上传数据间隔
效果
在pushgateway面板中会显示新增的服务,在prometheus中也可能看到采集的数据文章来源:https://www.toymoban.com/news/detail-658538.html
文章来源地址https://www.toymoban.com/news/detail-658538.html
到了这里,关于actuator/prometheus使用pushgateway上传jvm监控数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!