actuator

Posted fly-book

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了actuator相关的知识,希望对你有一定的参考价值。

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
# 显示详情
management:
  endpoint:
    health:
      show-details: always
  endpoints:
    web:
      exposure:
        include: ‘*‘
#        include: metrics,health

# 自定义info
info:
  app-name: springboot-demo
  author: fly
spring:
  profiles:
    active: default

# 连接符
---
spring:
  profiles: dev

management:
  endpoint:
    health:
      show-details: never

  endpoints:
    web:
      exposure:
        include: metrics,health

以上是关于actuator的主要内容,如果未能解决你的问题,请参考以下文章

如何将 /actuator/health 中的所有健康检查信息发布到 /actuator/prometheus?

无法访问 Spring Boot Actuator“/actuator”端点

关于spring boot启动监控端点的方法(spring-boot-starter-actuator)

springboot源码研究actuator,自定义actuator路径

spring cloud(Greenwich.M2) hystrix dashboard 报/actuator/hystrix.stream 404 Not Found的问题

使用 java 函数从 Spring Boot 调用 Spring actuator /restart 端点