其他分享
首页 > 其他分享> > Spring Boot - 整合Actuator

Spring Boot - 整合Actuator

作者:互联网

目录

前言

ActuatorSpringBoot中的重要组件,为应用程序提供了强大的监控能力


具体使用

依赖

<!-- actuator -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

在这里插入图片描述


health端点

在这里插入图片描述


UP:正常
DOWN:遇到了问题,不正常
OUT_OF_SERVICE:资源正在使用,或者不该去使用
UNKNOWN:不知道
# Actuator配置
management:
  endpoint.health.show-details: always # health端点详情展示

在这里插入图片描述



端点激活

management:
  endpoint.health.show-details: always # health端点详情展示
  endpoints:
    web:
      exposure:
        include: "*" # 激活所有端点
        # include: metrics, health # 激活metrics, health端点

在这里插入图片描述


info端点

# info端点描述应用
info:
  app-name: user-center
  author: Coisini
  email: xxx.email

在这里插入图片描述



在这里插入图片描述



- End -
白嫖有风险
点赞加收藏

标签:info,Spring,Boot,health,端点,激活,Actuator,yml
来源: https://www.cnblogs.com/maggieq8324/p/15313082.html