我目前正在尝试将我们的 prometheus 库迁移到 spring boot 2.0.3.RELEASE。我们为 prometheus 使用自定义路径,到目前为止,我们使用解决方法来确保这一点。由于信息和健康端点可以自定义路径,因此使用management.endpoint.<health/info>.path
. 我试图指定management.endpoint.prometheus.path
,但它仍然只能在/actuator/prometheus
.
如何使用自定义路径或普罗米修斯?
我们使用以下库启用普罗米修斯(我们的 build.gradle 的片段)
compile "org.springframework.boot:spring-boot-starter-actuator:2.0.3.RELEASE"
compile "io.micrometer:micrometer-core:2.0.5"
compile "io.micrometer:micrometer-registry-prometheus:2.0.5"
我们还使用类的导入PrometheusMetricsExportAutoConfiguration
非常感谢您的帮助:)