Actuator是什么?

官网:Spring Boot Actuator: Production-ready Features

先从官网摘几句文绉绉的解释:

  • SpringBoot可以帮助你再将应用程序推向生产环境时对其进行监视和管理。

  • 你可以选择使用http断点或JMX来管理和监视应用程序。

  • 审计【auditing】、健康【health】和指标收集【metrics gathering】可以自动应用到你的应用程序中。

总结一下就是:Actuator就是用来监控你的应用程序的。

快速开始

引入依赖

        <!--Actuator-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!--Spring MVC 自动化配置-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

一般来说这两个依赖都是相互配合的。

yml与自动配置

下面是一段yml的配置:

server:
port: 8081
management:
endpoints:
web:
base-path: /actuator # Actuator 提供的 API 接口的根目录
exposure:
include: '*' # 需要开放的端点
exclude: # 需要排除的端点
  • management.endpoints.web对应的配置类是:org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties

  • 相关的自动配置在org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration中完成,感兴趣的同学可以查看一下源码。

  • basePath是Actuator提供的API接口的根目录,默认配置就是/actuator

  • Exposure.include表示需要开放的端点,默认只打开healthinfo两个断点,设置*可以开放所有端点 。

  • Exposure.include表示排除的端点,设置*为排除所有的端点。

主程序类

@SpringBootApplication
public class SpringBootActuatorApplication { public static void main(String[] args) {
SpringApplication.run(SpringBootActuatorApplication.class, args);
} }

测试

访问http://localhost:8081/actuator/health,得到应用的健康信息如下:

{
status: "UP" // 开启
}

Endpoints

由于我们设置开放了所有的Endpoints,启动程序时,我们能够看到控制台输出:

[  restartedMain] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 13 endpoint(s) beneath base path '/actuator'

说的很清楚,总共暴露了内置的13个端点,这些端点,SpringBoot文档已经交代地非常详细啦。

其实内置的端点不止13个,官方文档说:每个端点可以被enabled or disabledexposed over HTTP or JMX。只有当端点同时enabled和exposed的时候才可用,内置的端点也只有在自动配置生效的时候才可用。

大多数的应用程序会选择HTTP暴露端点,我们可以通过/actuator/health访问ID为health的端点。

官方列举的所有端点列表

JMX和web共有的

ID Description
auditevents 显示当前应用程序的审计事件信息,需要 AuditEventRepository bean.
beans 展示你应用程序中Spring Beans的完整列表
caches 显示可用缓存信息
conditions 显示自动装配类的状态及是否匹配
configprops 显示所有@ConfigurationProperties列表
env 显示ConfigurableEnvironment中的属性
flyway 显示Flyway数据库迁移信息,需要一个或多个 Flyway beans
health 显示应用的健康信息(未认证只显示status,认证显示全部信息详情)
httptrace 显示HTTP跟踪信息(默认显示最后100个HTTP请求 - 响应交换),需要一个 HttpTraceRepository bean.
info 显示任意的应用信息
integrationgraph 显示Spring Integration图,需要 spring-integration-core依赖
loggers 显示和修改应用程序中日志记录器的配置。
liquibase 展示Liquibase 数据库迁移,需要一个或多个 Liquibase beans.
metrics 展示当前应用的 metrics 信息
mappings 显示所有@RequestMapping 路径集列表
scheduledtasks 显示应用程序中的计划任务
sessions 允许从Spring会话支持的会话存储中检索和删除用户会话。 需要一个 Servlet-based web application using Spring Session.
shutdown 允许应用以优雅的方式关闭(默认情况下不启用)
startup 显示由ApplicationStartup收集的启动步骤. 将 SpringApplication 配置为BufferingApplicationStartup.
threaddump 执行一个线程dump

如果你的是web应用 (Spring MVC, Spring WebFlux, or Jersey),你可以使用下面这些额外的端点:

ID Description
heapdump 返回一个 hprof 堆转储文件
jolokia 通过HTTP公开JMXbean 当Jolokia在类路径上时,不适用于WebFlux). 需要 jolokia-core依赖
logfile 返回日志文件的内容(如果 logging.file.namelogging.file.path 属性已经被设置) 支持使用HTTPrange标头来检索部分日志文件的内容
prometheus 以Prometheus服务器可以抓取的格式公开指标。 需要依赖于micrometer-registry-prometheus

启动端点

如果你希望启动某个端点,你可以按照management.endpoint.<id>.enabled的配置启动,以shutdown端点为例:

management:
endpoint:
shutdown:
enabled: true

如果你只希望启动某个端点,你可以向下面这样:

management:
endpoints:
enabled-by-default: false # 不启用默认配置
endpoint:
info:
enabled: true

这个示例,只会启用info端点。

暴露端点

端点可能会包含铭感信息,考虑暴露的时候应当慎重考虑。

  • web程序默认暴露的端点有且仅有两个:healthinfo

  • JMX程序默认暴露所有的端点。

我们可以使用includeexclude属性来控制端点是否需要暴露。下面是两个例子

一、不让JMX暴露所有端点,只让它暴露healthinfo两个端点。

management:
endpoints:
jmx:
exposure:
include: "health,info"

二、暴露web除envbeans之外的所有端点。

management:
endpoints:
web:
exposure:
include: "*"
exclude: "env,beans"
management.endpoints.web.exposure.include=*
management.endpoints.web.exposure.exclude=env,beans

配置端点

端点将会自动缓存对不带任何参数的读取操作的响应。你可以使用cache.time-to-live属性配置。

以下示例将Bean端点的缓存的生存时间设置为10秒。

management:
endpoint:
beans:
cache:
time-to-live: "10s"

发现页面

默认你可以访问/actuator页面获得所有的端点信息:

{
_links: {
self: {
href: "http://localhost:8081/actuator",
templated: false
},
health: {
href: "http://localhost:8081/actuator/health",
templated: false
},
health-path: {
href: "http://localhost:8081/actuator/health/{*path}",
templated: true
},
info: {
href: "http://localhost:8081/actuator/info",
templated: false
}
}
}

跨域支持

默认情况下,CORS支持是禁用的,并且仅在设置了management.endpoints.web.cors.allowed-origins属性后才启用。 以下配置允许来自example.com域的GET和POST调用:

management:
endpoints:
web:
cors:
allowed-origins: "https://example.com"
allowed-methods: "GET,POST"

完整的选项可以查看:CorsEndpointProperties

实现一个定义的端点

我们直接来看一个例子吧:

@Component  // 让Spring容器管理
@Endpoint(id = "myEndPoint") //web和jmx公用, @WebEndpoint表示指定web
public class MyEndpoint { Runtime runtime = Runtime.getRuntime(); @ReadOperation // 读操作
public Map<String, Object> getData() {
Map<String, Object> map = new HashMap<>();
map.put("available-processors", runtime.availableProcessors());
map.put("free-memory", runtime.freeMemory());
map.put("max-memory", runtime.maxMemory());
map.put("total-memory", runtime.totalMemory());
return map;
}
}
  • @Component表明让这个bean给Spring容器管理。
  • @Endpoint标注这是个端点,类似的还有@WebEndpoint标注的是特指web程序。
  • id = "myEndPoint"限制访问端点的路径:/actuator/myEndPoint
  • @ReadOperation规定HTTP请求的方法为GET,@ReadOperation为POST,@DeleteOperation为DELETE。

接下来我们测试一下,再测试之前,不要忘了yml中启动设置:

server:
port: 8081 management:
endpoints:
web:
exposure:
include: '*' # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 *
enabled-by-default: false
endpoint:
myEndPoint:
enabled: true

我们暂时关闭其他所有的端点,只关注myEndPoint端点,接着启动程序,访问:http://localhost:8081/actuator/myEndPoint,获得json信息。

{
max-memory: 3787980800,
free-memory: 235775968,
available-processors: 4,
total-memory: 298844160
}

实际上如果是用于SpringMVC或Spring WebFlux,我们可以使用@RestControllerEndpoint@ControllerEndpoint注解,定义一个更符合我们平时web开发模式的端点,你可以看一下下面这个例子。

@Component
@RestControllerEndpoint(id = "web")
public class MyWebEndPoint {
@GetMapping("/")
public Map<String, Object> getData() {
// ...
return map;
}
}

Health端点

端点这么多,我们挑几个学习一下,health作为默认开放的端点之一,还是需要好好了解一下的。

设置何时显示信息

你可以使用得到的健康信息去检查你的应用程序,暴露的health信息依赖于下面两个属性配置:

management.endpoint.health.show-details
management.endpoint.health.show-components

这两个属性可以设置的值如下:

Name Description
never 永远不显示
when-authorized 需要授权,通过 management.endpoint.health.roles配置
always 对所有用户显示

health端点通过健康指示器HealthIndicator获取不同的资源的健康信息,且Autuator内置了多个HealthIndicator的实现,太多啦太多啦,如果需要可以看看官网 Auto-configured HealthIndicators

另外,如果你想启用或者禁用指定的指示器,你可以配置management.health.key.enabled,key需要被替换,官网表格上有。

如果你想设置全部的,你可以配置management.health.defaults.enabled

设置顺序

你可以通过以下设置显示顺序:

management:
endpoint:
health:
status:
order: "fatal,down,out-of-service,unknown,up"

设置响应码

响应码反应了总体健康状态。默认情况下,OUT_OF_SERVICEDOWN的映射为503,其他状态为200。你可以按照下面的方式设置映射:

management:
endpoint:
health:
status:
http-mapping:
down: 503
fatal: 503
out-of-service: 503

自定义健康信息

纵使,Actuator已经提供了许多内置实现,总会满足不了我们的需求,那如何去自定义呢?

  • 注册实现HealthIndicator接口的Spring Bean。
  • 提供health()方法的实现并返回健康响应,包括状态和其他需要显示的详细信息。

以下代码展示了一个案例:

import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
import java.util.Random; @Component
public class MyHealthIndicator implements HealthIndicator { @Override
public Health health() {
// perform some specific health check
boolean check = check();
if (!check) {
return Health.down().withDetail("Error Code", 0).build();
}
return Health.up().build();
} private boolean check() {
return new Random().nextBoolean();
} }

id就是bena的名称去掉HealthIndicator后缀,这里id就是my。

看看相关的yml怎么配置?

management:
endpoints:
web:
exposure:
include: '*' # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
enabled-by-default: false
endpoint:
health:
enabled: true
show-details: always # 何时显示完整的健康信息
show-components: always
status:
http-mapping: # 设置不同健康状态对应的响应状态码
DOWN: 503
order: FATAL, DOWN, OUT_OF_SERVICE, UP, UNKNOWN # 状态排序

测试一下,访问:/actuator/health,可以尝试多点几次,会出现UP和DOWN的情况,得到以下信息:

{
status: "DOWN",
components: {
diskSpace: {
status: "UP",
details: {
total: 267117391872,
free: 130840469504,
threshold: 10485760,
exists: true
}
},
my: {
status: "DOWN",
details: {
Error Code: 0
}
},
ping: {
status: "UP"
}
}
}
  • my对应的就是我们自定义的MyHealthIndicator,里面详细的信息有:状态status,信息details。
  • diskSpace对应DiskSpaceHealthIndicator,ping对应的是PingHealthIndicator。

其他的端点,感兴趣的小伙伴可以去到官网一一测试,总之,通过这些Actuator提供的端点,我们很容易就能够监控管理我们的应用程序。

源码下载

本文内容均为对优秀博客及官方文档总结而得,原文地址均已在文中参考阅读处标注。最后,文中的代码样例已经全部上传至Gitee:https://gitee.com/tqbx/springboot-samples-learn

参考阅读

SpringBoot如何利用Actuator来监控应用?的更多相关文章

  1. SpringBoot入门教程(十)应用监控Actuator

    Actuator可能大家非常熟悉,它是springboot提供对应用自身监控,以及对应用系统配置查看等功能.spring-boot-starter-actuator模块的实现对于实施微服务的中小团队来 ...

  2. Springboot如何利用http请求控制器

    写好了接口,现在想用postman测试一下这个接口是否正确,想请问怎么传入请求参数?先谢谢了! Springboot如何利用http请求控制器 >> java这个答案描述的挺清楚的:htt ...

  3. SpringBoot actuator 应用监控。

    前言 : 今天在阅读 <SpringCloud微服务实战>一书时看到了SpringBoot actuator相关知识,并且自己也本地调试实践.觉得SpringBoot这一套监控还是挺有意思 ...

  4. SpringBoot | 第二十七章:监控管理之Actuator使用

    前言 随着我们服务越来越多,部署的环境也越来越繁多时,由于各服务都部署在不同的机器上,每当出现问题或者异常时,想快速进行问题的定位就变的麻烦了.所以,本章节开始,开始讲解SpringBoot的监控相关 ...

  5. springcloud(九) springboot Actuator + admin 监控

    前一章讲的都是Feign项目(调用方)的监控.接下来讲的是服务提供方的监控 一.springboot actuator + springboot admin Spring Boot Admin 是一个 ...

  6. SpringBoot简单整合Actuator监控

    pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>s ...

  7. SpringBoot | 第二十八章:监控管理之Spring Boot Admin使用

    前言 上一章节,我们介绍了Actuator的使用,知道了可通过访问不同的端点路径,获取相应的监控信息.但使用后也能发现,返回的监控数据都是以JSON串的形式进行返回的,对于实施或者其他人员来说,不是很 ...

  8. spring-boot 速成(3) actuator

    actuator 通过暴露一系列的endpoints可以让开发者快速了解spring boot的各项运行指标,比如:线程数,jvm剩余内存等一系列参数. 启用方法很简单,参考下面: dependenc ...

  9. SpringBoot学习笔记(14)----应用监控-HTTP方式

    SpringBoot提供了三种应用监控的方式 通过HTTP(最简单方便) 通过JMX 通过远程shell 这里就是用最简单的方式来使用SpringBoot的应用监控 首先引入依赖,pom文件如下 &l ...

随机推荐

  1. 探究:nuget工具对不再使用的dll文件的处理策略

    背景介绍 nuget是.net平台有效的包管理工具,相信每个C#开发者对它都不陌生. 本文我们来探究一下nuget对不再使用的dll文件的处理策略,分为如下2个场景: 场景A:包A1.0原来包含New ...

  2. 阿里云的nginx的https配置问题

    server { listen 443 ssl; server_name www.xxx域名.com; root html; index index.html index.html; ssl_cert ...

  3. 下载器Folx教程:智能标签怎么用?

    Mac专用下载器Folx的智能标签中内置了图片标签,可以自动分类图片文件,但要如何分类GIF图片呢?其实,我们可以在Folx的标签面板创建动图标签,然后再创建标签专属的下载文件夹,来独立存放GIF格式 ...

  4. css3系列之@font-face

    @font-face 这个属性呢,必须设置在 css的根下,也就是说,不能设置在任何元素里面. @font-face: 参数: font-family:  给这个文字库 起个名字. src: url( ...

  5. Elasticsearch实现搜索推荐词

    本篇介绍的是基于Elasticsearch实现搜索推荐词,其中需要用到Elasticsearch的pinyin插件以及ik分词插件,代码的实现这里提供了java跟C#的版本方便大家参考. 1.实现的结 ...

  6. vue springboot利用easypoi实现简单导出

    vue springboot利用easypoi实现简单导出 前言 一.easypoi是什么? 二.使用步骤 1.传送门 2.前端vue 3.后端springboot 3.1编写实体类(我这里是dto, ...

  7. Java基础教程——Scanner类

    Scanner属于java.util包. java.util包是Java内置的一个工具包,其中包含一系列常用的工具类,如处理日期.日历.集合类: 如果要使用到该包中的类,必须显式引入包名:import ...

  8. Java集合【2】--iterator接口详解

    目录 一.iterator接口介绍 二.为什么需要iterator接口 三.iterator接口相关接口 3.1 ListIterator 3.2 SpitIterator 3.2.1 SpitIte ...

  9. 专业五线谱作曲打谱软件Overture的常用快捷键功能大全

    快捷命令在我们使用软件时起到的帮助是不言而喻的,它用一个或几个简单的字母来代替常用的命令,使我们不用去记忆众多的长长的命令,也不必为了执行一个命令,在菜单和工具栏上寻寻觅觅.当然,随着Overture ...

  10. Windows操作系统深入解析原理

    Windows运用程序编写插口(API)是对于Windows电脑操作系统大家族的客户方式系统软件程序编写插口.在32位版本号的Windows营销推广之前,31位版本号Windows电脑操作系统的程序编 ...