`
哈哈哈558
  • 浏览: 14596 次
社区版块
存档分类
最新评论

Spring Boot : 微服务应用监控 Spring Boot Actuator 详解

 
阅读更多

 

Spring Boot (九): 微服务应用监控 Spring Boot Actuator 详解
 

 

1. 引言

在当前的微服务架构方式下,我们会有很多的服务部署在不同的机器上,相互是通过服务调用的方式进行交互,一个完整的业务流程中间会经过很多个微服务的处理和传递,那么,如何能知道每个服务的健康状况就显得尤为重要。

万幸的是 Spring Boot 为我们提供了监控模块 Spring Boot Actuator ,本篇文章将和大家一起探讨一些 Spring Boot Actuator 一些常见用法方便我们在日常的使用中对我们的微服务进行监控治理。

Spring Boot Actuator 帮我们实现了对程序内部运行情况监控,比如监控状况、Bean加载情况、环境变量、日志信息、线程信息等。(了解源码可+求求: 1791743380)

 

2. Actuator 的使用

2.1 工程依赖

使用 Spring Boot Actuator 需要加入如下依赖:

Java代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework.boot</groupId>  
  3.     <artifactId>spring-boot-starter-actuator</artifactId>  
  4. </dependency>  

 

注意: 因 Spring Boot Actuator 会暴露我们服务的详细信息,为了保障安全性,建议添加安全控制的相关依赖 spring-boot-starter-security ,这样,在访问应用监控端点时,都需要输入验证信息。所需依赖如下:

Java代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework.boot</groupId>  
  3.     <artifactId>spring-boot-starter-security</artifactId>  
  4. </dependency>  

 

2.2 工程配置

配置文件 application.yml 如下:

代码清单:spring-boot-actuator/src/main/resources/application.yml

 
Java代码  收藏代码
  1. server:  
  2.   port: 8080  
  3. info:  
  4.   app:  
  5.     name: spring-boot-actuator  
  6.     version: 1.0.0  
  7. spring:  
  8.   security:  
  9.     user:  
  10.       name: admin  
  11.       password: admi  
 

现在先启动工程,打开浏览器访问:http://localhost:8080/actuator ,可以看到页面显示如下 json :

Java代码  收藏代码
  1. {  
  2.   "_links":{  
  3.     "self":{  
  4.       "href":"http://localhost:8080/actuator",  
  5.       "templated":false  
  6.     },  
  7.     "health":{  
  8.       "href":"http://localhost:8080/actuator/health",  
  9.       "templated":false  
  10.     },  
  11.     "health-component-instance":{  
  12.       "href":"http://localhost:8080/actuator/health/{component}/{instance}",  
  13.       "templated":true  
  14.     },  
  15.     "health-component":{  
  16.       "href":"http://localhost:8080/actuator/health/{component}",  
  17.       "templated":true  
  18.     },  
  19.     "info":{  
  20.       "href":"http://localhost:8080/actuator/info",  
  21.       "templated":false  
  22.     }  
  23.   }  
  24. }  

 

这些是默认支持的链接,只有:

Java代码  收藏代码
  1. /actuator  
  2. /actuator/health  
  3. /health/{component}/{instance}  
  4. /health/{component}  
  5. /actuator/info  

 

我们可以在配置文件 application.yml 中增加配置来开启更多的监控信息:

Java代码  收藏代码
  1. management:  
  2.   endpoints:  
  3.     web:  
  4.       exposure:  
  5.         include: '*'  
  6. #      base-path: /monitor  
  7.   endpoint:  
  8.     health:  
  9.       show-details: always  
  10.     shutdown:  
  11.       enabled: true  

 

  • management.endpoints.web.exposure.include='*' 代表开启全部监控,当然也可以配置需要开启的监控,如: management.endpoints.web.exposure.include=beans,trace 。
  • management.endpoint.health.show-details=always 含义是 health endpoint 是开启显示全部细节。默认情况下, /actuator/health 是公开的,并且不显示细节。
  • management.endpoints.web.base-path=/monitor 代表启用单独的url地址来监控 Spring Boot 应用,默认的路径是 /actuator/* ,如果开启此配置,重启后再次访问路径就会变成 /manage/* 。
  • management.endpoint.shutdown.enabled=true 启用接口关闭 Spring Boot 。

在某些业务场景下,我们的监控信息可能会需要跨越获取, Spring Boot Actuator 提供了 CORS 相关的配置,来支持跨域调用,默认情况下,CORS 支持处于禁用状态,只有在设置了 management.endpoints.web.cors.allowed-origins 属性后才能启用。以下配置允许来自 https://www.geekdigging.com 域的 GET 和 POST 调用:

Java代码  收藏代码
  1. management:  
  2.   endpoints:  
  3.     web:  
  4.       cors:  
  5.         allowed-origins: https://www.geekdigging.com  
  6.         allowed-methods: GET,POST  

 

2.3 REST 接口

Spring Boot Actuator 为我们提供了非常丰富的监控接口,可以通过它们了解应用程序运行时的内部状况。同时 Actuator 支持用户自定义添加端点,用户可以根据自己的实际应用,定义一些比较关心的指标,在运行期进行监控。

HTTP 方法 路径 描述

GET /auditevents 显示当前应用程序的审计事件信息
GET /beans 显示一个应用中所有Spring Beans的完整列表
GET /conditions 显示配置类和自动配置类(configuration and auto-configuration classes)的状态及它们被应用或未被应用的原因
GET /configprops 显示一个所有@ConfigurationProperties的集合列表
GET /env 显示来自Spring的 ConfigurableEnvironment的属性
GET /flyway 显示数据库迁移路径,如果有的话
GET /health 显示应用的健康信息(当使用一个未认证连接访问时显示一个简单的’status’,使用认证连接访问则显示全部信息详情)
GET /info 显示任意的应用信息
GET /liquibase 展示任何Liquibase数据库迁移路径,如果有的话
GET /metrics 展示当前应用的metrics信息
GET /mappings 显示一个所有@RequestMapping路径的集合列表
GET /scheduledtasks 显示应用程序中的计划任务
GET /sessions 允许从Spring会话支持的会话存储中检索和删除(retrieval and deletion)用户会话。使用Spring Session对反应性Web应用程序的支持时不可用。
POST /shutdown 允许应用以优雅的方式关闭(默认情况下不启用)
GET /threaddump 执行一个线程dump

如果使用web应用(Spring MVC, Spring WebFlux, 或者 Jersey),还可以使用以下接口:

HTTP 方法 路径 描述

GET /heapdump 返回一个GZip压缩的hprof堆dump文件
GET /jolokia 通过HTTP暴露JMX beans(当Jolokia在类路径上时,WebFlux不可用)
GET /logfile 返回日志文件内容(如果设置了logging.file或logging.path属性的话),支持使用HTTP Range头接收日志文件内容的部分信息
GET /prometheus 以可以被Prometheus服务器抓取的格式显示metrics信息

3. 接口详解

3.1 /health

health 主要用来检查应用的运行状态,这是我们使用最高频的一个监控点。通常使用此接口提醒我们应用实例的运行状态,以及应用不”健康“的原因,比如数据库连接、磁盘空间不够等。

默认情况下 health 的状态是开放的,添加依赖后启动项目,访问:http://localhost:8080/actuator/health 即可看到应用的状态。

Java代码  收藏代码
  1. {  
  2.     "status" : "UP"  
  3. }  

 

默认情况下,最终的 Spring Boot 应用的状态是由 HealthAggregator 汇总而成的,汇总的算法是:

  1. 设置状态码顺序:setStatusOrder(Status.DOWN, Status.OUT_OF_SERVICE, Status.UP, Status.UNKNOWN);
  2. 过滤掉不能识别的状态码。
  3. 如果无任何状态码,整个 Spring Boot 应用的状态是 UNKNOWN。
  4. 将所有收集到的状态码按照 1 中的顺序排序。
  5. 返回有序状态码序列中的第一个状态码,作为整个 Spring Boot 应用的状态。

Health 通过合并几个健康指数检查应用的健康情况。Spring Boot Actuator 会自动配置以下内容:

名称 描述

CassandraHealthIndicator 检查Cassandra数据库是否已启动。
CouchbaseHealthIndicator 检查Couchbase群集是否已启动。
DiskSpaceHealthIndicator 检查磁盘空间不足。
DataSourceHealthIndicator 检查是否可以建立连接 DataSource 。
ElasticsearchHealthIndicator 检查Elasticsearch集群是否已启动。
InfluxDbHealthIndicator 检查InfluxDB服务器是否已启动。
JmsHealthIndicator 检查JMS代理是否启动。
MailHealthIndicator 检查邮件服务器是否已启动。
MongoHealthIndicator 检查Mongo数据库是否已启动。
Neo4jHealthIndicator 检查Neo4j服务器是否已启动。
RabbitHealthIndicator 检查Rabbit服务器是否已启动。
RedisHealthIndicator 检查Redis服务器是否启动。
SolrHealthIndicator 检查Solr服务器是否已启动。

可以通过设置 management.health.defaults.enabled 属性来全部禁用它们。

3.2 /info

info 就是我们自己在配置文件中配置的以 info 开头的信息,如我们在示例工程中配置的:

Java代码  收藏代码
  1. info:  
  2.   app:  
  3.     name: spring-boot-actuator  
  4.     version: 1.0.0  

 

启动工程,打开浏览器访问: http://localhost:8080/actuator/info ,结果如下:

Java代码  收藏代码
  1. {  
  2.   "app":{  
  3.     "name":"spring-boot-actuator",  
  4.     "version":"1.0.0"  
  5.   }  
  6. }  

 

3.3 /beans

启动工程,打开浏览器访问: http://localhost:8080/actuator/beans ,部分结果如下:

Java代码  收藏代码
  1. {  
  2.     "contexts": {  
  3.         "application": {  
  4.             "beans": {  
  5.                 "endpointCachingOperationInvokerAdvisor": {  
  6.                     "aliases": [],  
  7.                     "scope": "singleton",  
  8.                     "type": "org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor",  
  9.                     "resource": "class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/EndpointAutoConfiguration.class]",  
  10.                     "dependencies": ["environment"]  
  11.                 },  
  12.                 "defaultServletHandlerMapping": {  
  13.                     "aliases": [],  
  14.                     "scope": "singleton",  
  15.                     "type": "org.springframework.web.servlet.HandlerMapping",  
  16.                     "resource": "class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]",  
  17.                     "dependencies": []  
  18.                 },  
  19.             },  
  20.             "parentId": null  
  21.         }  
  22.     }  
  23. }  

 

从中可以看到,这个接口展现了 bean 的别名、类型、是否单例、类的地址、依赖等信息。

3.4 /conditions

启动工程,打开浏览器访问: http://localhost:8080/actuator/conditions ,部分结果如下:

Java代码  收藏代码
  1. {  
  2.     "contexts": {  
  3.         "application": {  
  4.             "positiveMatches": {  
  5.                 "AuditAutoConfiguration#auditListener": [{  
  6.                     "condition": "OnBeanCondition",  
  7.                     "message": "@ConditionalOnMissingBean (types: org.springframework.boot.actuate.audit.listener.AbstractAuditListener; SearchStrategy: all) did not find any beans"  
  8.                 }],  
  9.                 "AuditAutoConfiguration#authenticationAuditListener": [{  
  10.                     "condition": "OnClassCondition",  
  11.                     "message": "@ConditionalOnClass found required class 'org.springframework.security.authentication.event.AbstractAuthenticationEvent'"  
  12.                 }, {  
  13.                     "condition": "OnBeanCondition",  
  14.                     "message": "@ConditionalOnMissingBean (types: org.springframework.boot.actuate.security.AbstractAuthenticationAuditListener; SearchStrategy: all) did not find any beans"  
  15.                 }],  
  16.             },  
  17.         }  
  18.     }  
  19. }  

 

是用这个接口可以看出应用运行时查看代码了某个配置在什么条件下生效,或者某个自动配置为什么没有生效。

3.5 /shutdown

这个接口首先需要在配置文件中配置开启此功能:

Java代码  收藏代码
  1. management.endpoint.shutdown.enabled=true  

 

配置完成后,可以使用 curl 模拟 post 请求此接口:

Java代码  收藏代码
  1. curl -X POST "http://localhost:8080/actuator/shutdown"  

 

显示结果为:

Java代码  收藏代码
  1. {  
  2.     "message": "Shutting down, bye..."  
  3. }  

 

注意:示例工程添加了 spring-boot-starter-security ,直接使用 post 访问此接口会响应 401 ,表示无权限访问,如需测试此接口,请暂时先关闭 spring-boot-starter-security 。

这时可以看到我们启动的示例工程已经关闭了。

3.6 /mappings

描述全部的 URI 路径,以及它们和控制器的映射关系

启动工程,打开浏览器访问: http://localhost:8080/actuator/mappings ,部分结果如下:

Java代码  收藏代码
  1. {  
  2.   "handler": "Actuator web endpoint 'beans'",  
  3.   "predicate": "{GET /actuator/beans, produces [application/vnd.spring-boot.actuator.v2+json || application/json]}",  
  4.   "details": {  
  5.     "handlerMethod": {  
  6.       "className": "org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping.OperationHandler",  
  7.       "name": "handle",  
  8.       "descriptor": "(Ljavax/servlet/http/HttpServletRequest;Ljava/util/Map;)Ljava/lang/Object;"  
  9.     },  
  10.     "requestMappingConditions": {  
  11.       "consumes": [],  
  12.       "headers": [],  
  13.       "methods": ["GET"],  
  14.       "params": [],  
  15.       "patterns": ["/actuator/beans"],  
  16.       "produces": [{  
  17.         "mediaType": "application/vnd.spring-boot.actuator.v2+json",  
  18.         "negated": false  
  19.       }, {  
  20.         "mediaType": "application/json",  
  21.         "negated": false  
  22.       }]  
  23.     }  
  24.   }  
  25. }  

 

3.7 /threaddump

/threaddump 接口会生成当前线程活动的快照。这个功能非常好,方便我们在日常定位问题的时候查看线程的情况。 主要展示了线程名、线程ID、线程的状态、是否等待锁资源等信息。

启动工程,打开浏览器访问: http://localhost:8080/actuator/threaddump ,部分结果如下:

Java代码  收藏代码
  1. {  
  2.     "threads": [{  
  3.         "threadName": "Reference Handler",  
  4.         "threadId": 2,  
  5.         "blockedTime": -1,  
  6.         "blockedCount": 2,  
  7.         "waitedTime": -1,  
  8.         "waitedCount": 0,  
  9.         "lockName": null,  
  10.         "lockOwnerId": -1,  
  11.         "lockOwnerName": null,  
  12.         "daemon": true,  
  13.         "inNative": false,  
  14.         "suspended": false,  
  15.         "threadState": "RUNNABLE",  
  16.         "priority": 10,  
  17.         "stackTrace": [{  
  18.             "classLoaderName": null,  
  19.             "moduleName": "java.base",  
  20.             "moduleVersion": "11.0.4",  
  21.             "methodName": "waitForReferencePendingList",  
  22.             "fileName": "Reference.java",  
  23.             "lineNumber": -2,  
  24.             "className": "java.lang.ref.Reference",  
  25.             "nativeMethod": true  
  26.         }  
  27.   ...  
  28.   "lockedMonitors": [],  
  29.         "lockedSynchronizers": [{  
  30.             "className": "java.util.concurrent.locks.ReentrantLock$NonfairSync",  
  31.             "identityHashCode": 2060076420  
  32.         }],  
  33.         "lockInfo": null  
  34.   ...  
  35.   {  
  36.         "threadName": "DestroyJavaVM",  
  37.         "threadId": 42,  
  38.         "blockedTime": -1,  
  39.         "blockedCount": 0,  
  40.         "waitedTime": -1,  
  41.         "waitedCount": 0,  
  42.         "lockName": null,  
  43.         "lockOwnerId": -1,  
  44.         "lockOwnerName": null,  
  45.         "daemon": false,  
  46.         "inNative": false,  
  47.         "suspended": false,  
  48.         "threadState": "RUNNABLE",  
  49.         "priority": 5,  
  50.         "stackTrace": [],  
  51.         "lockedMonitors": [],  
  52.         "lockedSynchronizers": [],  
  53.         "lockInfo": null  
  54.     }]  
  55. }  
  56.    
分享到:
评论

相关推荐

    使用 Spring Boot Actuator 监控应用.docx

    Spring Boot Actuator 作为一款强大的监控工具,提供了丰富的功能来帮助开发者和运维人员更好地管理和监控他们的微服务应用。 #### Actuator 的作用与原理 Spring Boot Actuator 是 Spring Boot 提供的一个用于...

    详解用Spring Boot Admin来监控我们的微服务

    Spring Boot Admin 监控微服务 Spring Boot Admin 是一个基于 Web 的应用程序,用于管理和监视 Spring Boot 应用程序。它可以对微服务进行监控和管理,提供了详细的示例代码,对学习和工作具有重要的参考价值。 ...

    精通 Spring Boot 42 讲(有源码).rar

    这套教程可能涵盖了以下主题:Spring Boot的安装与配置、起步依赖详解、自动配置原理、创建第一个Spring Boot应用、Web开发、数据访问、安全控制、健康检查、Actuator使用、微服务实战等。每个主题都配有源码,可以...

    Spring Boot Actuator执行器运行原理详解

    Spring Boot Actuator 执行器运行原理详解 Spring Boot Actuator 执行器是 Spring Boot 框架中的一种功能强大且实用的模块,用于监视和管理 Spring Boot 应用程序。在本文中,我们将详细介绍 Spring Boot Actuator ...

    《Spring Boot企业级开发教程》配套资源.zip

    用户可以通过对比自己的答案来检验理解程度,巩固所学知识,包括自动配置、起步依赖、Web开发、数据访问、Actuator监控、Spring Cloud集成等内容。 2. **教学PPT**: 教学PPT通常会以清晰的图表和步骤说明Spring ...

    spring boot admin server

    **Spring Boot Admin Server详解** Spring Boot Admin Server 是一个用于监控和管理 Spring Boot 应用的工具,它提供了直观的 Web 界面,帮助开发者实时查看应用程序的状态、日志、JVM 指标等信息。这个工具对于...

    spring boot

    7. **健康检查、指标监控**:Spring Boot Actuator模块提供了生产级的功能,如应用监控、健康检查等。 #### 三、Spring Boot核心概念 1. **Starter Parent**:这是一个父项目,它包含了构建Spring Boot应用所需的...

    Spring Boot核心技术-笔记-pdf版.pdf

    **Spring Boot核心技术详解** Spring Boot是由Pivotal团队提供的全新框架,其设计目标是为了简化Spring应用的初始搭建以及开发过程。它集成了大量的常用组件,如数据源、定时任务、缓存、邮件服务等,无需繁琐配置...

    05-Spring全家桶(Spring Boot)

    Actuator是Spring Boot用于监控和管理应用的组件,提供了一组端点(endpoints),如健康检查、日志查看、环境信息等。这使得开发者可以实时了解应用状态,进行问题诊断和性能优化。 ### Spring Boot与微服务 ...

    详解Spring boot Admin 使用eureka监控服务

    "Spring Boot Admin 使用 Eureka 监控服务详解" 本篇文章主要介绍了如何使用 Spring Boot Admin 结合 Eureka 服务注册和发现功能来监控服务。下面将详细介绍 Spring Boot Admin 的搭建过程和关键配置。 Eureka ...

    microservices-in-springboot:使用Spring Boot的微服务

    Spring Boot Actuator提供了丰富的端点来监控应用程序的健康状态、指标和配置。配合Prometheus和Grafana可以构建强大的监控系统。日志方面,Spring Boot默认使用Logback或Log4j2,通过Spring Cloud Sleuth可以实现...

    spring_boot_tutorial.pdf_springboot_spring_源码

    《Spring Boot教程详解》 Spring Boot是Java领域中一个非常重要的框架,它简化了Spring应用程序的初始设置和配置,使得开发者能够快速构建可运行的应用程序。这个教程将深入探讨Spring Boot的核心特性,以及如何...

    Spring Boot + Vue3 完整开发全栈项目附资料.zip

    《Spring Boot + Vue3 全栈开发详解及实践指南》 在现代Web开发领域,Spring Boot和Vue3已经成为构建高效、可扩展应用的热门选择。本项目实战将深入讲解如何结合这两个强大的技术栈,实现一个全栈应用。下面,我们...

    Spring Boot

    ### Spring Boot:微服务入门级框架详解 #### 引言 随着云计算和微服务架构的兴起,企业级应用开发越来越倾向于轻量化、模块化和服务化的方向发展。在众多微服务框架中,Spring Boot因其易用性和高效性而备受...

    Spring Boot的入门程序

    - **Actuator**:Spring Boot 提供 Actuator 模块,用于监控和管理应用,包括健康检查、指标收集、审计追踪等功能。 - **配置优化**:通过调整 `server.max-http-header-size`、`server.tomcat.max-threads` 等属性...

    spring-boot-reference-1.5.7

    Actuator是Spring Boot的监控组件,提供了一系列端点用于监控和管理应用。例如: - /health:检查应用健康状况。 - /info:显示应用信息,如环境变量、应用配置等。 - /metrics:展示应用性能指标,如内存使用、HTTP...

Global site tag (gtag.js) - Google Analytics