Spring Boot - 整合Actuator

2021/9/19 23:37:48

本文主要是介绍Spring Boot - 整合Actuator,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

目录
  • 前言
  • 具体使用
    • 依赖
    • health端点
    • 端点激活
    • info端点

前言

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


具体使用

依赖

  • pom.xml
<!-- actuator -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
  • 查看actuator的端点

在这里插入图片描述


health端点

  • /health端点的作用:健康检查

  • 访问health端点

在这里插入图片描述


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

在这里插入图片描述



端点激活

  • 默认情况下只开启了health端点
  • 配置application.yml激活所有端点
management:
  endpoint.health.show-details: always # health端点详情展示
  endpoints:
    web:
      exposure:
        include: "*" # 激活所有端点
        # include: metrics, health # 激活metrics, health端点

在这里插入图片描述


info端点

  • info端点是描述性端点
  • application.yml
# info端点描述应用
info:
  app-name: user-center
  author: Coisini
  email: xxx.email

在这里插入图片描述



  • Actuator默认提供了许多端点,具体如下,这里不一一举例了

在这里插入图片描述



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


这篇关于Spring Boot - 整合Actuator的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程