✨Prometheus
Spring Boot整合prometheus监控
<!--boot监控-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency> - job_name: 'spring-boot-demo'
metrics_path: '/metrics',
static_configs:
- targets: [ "192.168.51.160:8080" ],
labels: {
job: "spring-boot-demo",
instance: "spring-boot-demo"
}Last updated