SpringBoot2配置prometheus浏览器访问404
Posted 寻找风口的猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot2配置prometheus浏览器访问404相关的知识,希望对你有一定的参考价值。
背景:SpringBoot2的项目要配置 actuator + prometheus的健康检查,按照教程配置好之后再浏览器测试 http://localhost:port/prometheus 后404错误
项目pom文件添加;
<!--actuator--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>2.0.1.RELEASE</version> </dependency> <!--pometheus 监控--> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> <version>1.0.3</version> </dependency>
springboot2的配置文件application.properties添加
management.endpoints.enabled-by-default=true
management.endpoints.web.exposure.include="*"
management.endpoints.web.base-path=/
management.endpoints.jmx.exposure.include="*"
management.endpoints.jmx.shutdown.enabled=false
management.endpoints.metrics.export.prometheus.enabled=true
management.endpoints.metrics.distribution.percentiles-histogram[http.server.requests]=true
management.endpoints.security.enabled=false
management.endpoint.health.show-details=always
然后启动项目发现
问题解决:
*号在yaml文件中属于关健字,所以要加引号,但是再properties文件中就不能加引号
参考:
以上是关于SpringBoot2配置prometheus浏览器访问404的主要内容,如果未能解决你的问题,请参考以下文章
springboot2+exporter+prometheus+grafana搭建监控体系
SpringBoot2.x整合Prometheus+Grafana附源码
Spring Boot 2.0 Prometheus 向后兼容
Prometheus 配置不适用于 Spring boot 2.3.0:ClassNotFoundException:io.micrometer.prometheus.HistogramFlavor