温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用SpringBoot Actuator监控应用示例

发布时间:2020-09-25 14:33:25 来源:脚本之家 阅读:203 作者:zx 栏目:编程语言

Actuator是Spring Boot提供的对应用系统的自省和监控的集成功能,可以对应用系统进行配置查看、相关功能统计等。

使用Actuator

引入依赖即可

Maven

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

Gradle

compile('org.springframework.boot:spring-boot-starter-actuator')

Endpoints

列举一些主要的endpoints

使用SpringBoot Actuator监控应用示例 

配置文件属性介绍

地址和端口的配置

  1.  management.port :指定访问这些监控方法的端口,与逻辑接口端口分离。如果不想将这些暴露在http中,可以设置 management.port = -1
  2. management.address :指定地址,比如只能通过本机监控,可以设置 management.address = 127.0.0.1

敏感信息访问限制

根据上面表格,鉴权为 false 的,表示不敏感,可以随意访问,否则就是做了一些保护,不能随意访问。

endpoints.mappings.sensitive=false

这样需要对每一个都设置,比较麻烦。敏感方法默认是需要用户拥有 ACTUATOR 角色,因此,也可以设置关闭安全限制:

management.security.enabled=false

或者配合 Spring Security 做细粒度控制。

自定义系统信息

可以通过访问 /info 获取信息,需要在配置文件设置

info:
 aaa:
 name: xxx
 email: xxx@qq.com
 bbb:
 age: 25
 hobbies: running
 build:
 artifact: "@project.artifactId@"
 name: "@project.name@"
 version: "@project.version@"

此时访问 localhost:8080/info 返回一下信息

使用SpringBoot Actuator监控应用示例

如果使用 maven ,可以访问pom.xml文件的信息,用法如下:

// 获取pom.xml中project节点下artifactId属性 artifact: "@project.artifactId@"

其他

/shutdown这个需要post方式,通过请求来关闭应用。

这个操作比较敏感,要想真正生效,需要以下配置:

endpoints.shutdown.enabled: true

我们可以通过实现HealthIndicator接口,编写自己的/health方法逻辑。也可以增加自定义监控方法。

查看详细介绍,请移步官方文档

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI