码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot2配置prometheus浏览器访问404

时间:2019-12-19 16:11:38      阅读:464      评论:0      收藏:0      [点我收藏+]

标签:ogr   div   bsp   html   访问   引号   release   文件中   pom   

背景: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文件中就不能加引号

参考:

https://www.liangzl.com/get-article-detail-4864.html

SpringBoot2配置prometheus浏览器访问404

标签:ogr   div   bsp   html   访问   引号   release   文件中   pom   

原文地址:https://www.cnblogs.com/happyflyingpig/p/12068002.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!