2019年1月14日 | Leave a comment 问题 解决: helm install stable/influxdb helm install stable/grafana 在 influxdb 中创建数据库 在 Spring Boot 中 增加 (见后边) 在 Spring boot 中增加 metric influx 在 grafana 中增加 datasource , 增加 dashbord pom.xml 增加 <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-influx</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 12345678 <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-influx</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 增加 management: endpoints.enabled-by-default: false endpoint: health.enabled: true web.exposure.include: "*" metrics.export.influx: uri: "http://*****:8086" db: db1 12345678 management: endpoints.enabled-by-default: false endpoint: health.enabled: true web.exposure.include: "*" metrics.export.influx: uri: "http://*****:8086" db: db1