文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot怎么配置Actuator组件实现系统监控

2023-06-08 05:43

关注

这篇文章主要介绍“SpringBoot怎么配置Actuator组件实现系统监控”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“SpringBoot怎么配置Actuator组件实现系统监控”文章能帮助大家解决问题。

一、Actuator简介

监控分类

二、与SpringBoot2.0整合 

1、核心依赖Jar包

<!-- 监控依赖 --><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-actuator</artifactId></dependency>

2、Yml配置文件

# 端口server:  port: 8016spring:  application:    # 应用名称    name: node16-boot-actuatormanagement:  endpoints:    web:      exposure:        # 打开所有的监控点        include: "*"      # 自定义监控路径 monitor      # 默认值:http://localhost:8016/actuator/*      # 配置后:http://localhost:8016/monitor/*      base-path: /monitor  endpoint:    health:      show-details: always    shutdown:      # 通过指定接口关闭 SpringBoot      enabled: true  # 可以自定义端口  # server:  #   port: 8089# 描述项目基础信息info:  app:    name: node16-boot-actuator    port: 8016    version: 1.0.0    author: cicada

三、监控接口详解 

1、Info接口

Yml文件中配置的项目基础信息

路径:http://localhost:8016/monitor/info输出:{    "app": {        "name": "node16-boot-actuator",        "port": 8016,        "version": "1.0.0",        "author": "cicada"    }}

2、Health接口

health 主要用来检查应用的运行状态

路径:http://localhost:8016/monitor/health输出:{    "status": "UP",    "details": {        "diskSpace": {            "status": "UP",            "details": {                "total": 185496236032,                "free": 140944084992,                "threshold": 10485760            }        }    }}

3、Beans接口

展示了 bean 的类型、单例多例、别名、类的全路径、依赖Jar等内容。

路径:http://localhost:8016/monitor/beans输出:{    "contexts": {        "node16-boot-actuator": {        "beans": {            "endpointCachingOperationInvokerAdvisor": {                "aliases": [],                "scope": "singleton",                "type": "org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor",                "resource": "class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/EndpointAutoConfiguration.class]",                "dependencies": ["environment"]            }        }    }}

4、Conditions接口

查看配置在什么条件下有效,或者自动配置为什么无效。

路径:http://localhost:8016/monitor/conditions输出:{    "contexts": {        "node16-boot-actuator": {            "positiveMatches": {                "AuditAutoConfiguration#auditListener": [{                    "condition": "OnBeanCondition",                    "message": "@ConditionalOnMissingBean"                }],    }}

5、HeapDump接口

自动生成Jvm的堆转储文件HeapDump,可以使用监控工具 VisualVM 打开此文件查看内存快照。

路径:http://localhost:8016/monitor/heapdump

6、Mappings接口

描述 URI 路径和控制器的映射关系

路径:http://localhost:8016/monitor/mappings输出:{    "contexts": {        "node16-boot-actuator": {            "mappings": {                "dispatcherServlets": {                    "dispatcherServlet": [ {                        "handler": "Actuator web endpoint 'auditevents'",                        "predicate": "{GET /monitor/auditevents || application/json]}",                        "details": {                            "handlerMethod": {                                "className": "org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping.Operat                                "name": "handle",                                "descriptor": "(Ljavax/servlet/http/HttpServletRequest;Ljava/util/Map;)Ljava/lang/Object;"                            },                            "requestMappingConditions": {                                "consumes": [],                                "headers": [],                                "methods": ["GET"],                                "params": [],                                "patterns": ["/monitor/auditevents"],                                "produces": [{                                    "mediaType": "application/vnd.spring-boot.actuator.v2+json",                                    "negated": false                                }, {                                    "mediaType": "application/json",                                    "negated": false                                }]                            }                        }                    }            }    }}

7、ThreadDump接口

展示线程名、线程ID、是否等待锁、线程的状态、线程锁等相关信息。

路径:http://localhost:8016/monitor/threaddump输出:{    "threads": [{        "threadName": "DestroyJavaVM",        "threadId": 34,        "blockedTime": -1,        "blockedCount": 0,        "waitedTime": -1,        "waitedCount": 0,        "lockName": null,        "lockOwnerId": -1,        "lockOwnerName": null,        "inNative": false,        "suspended": false,        "threadState": "RUNNABLE",        "stackTrace": [],        "lockedMonitors": [],        "lockedSynchronizers": [],        "lockInfo": null    }    ]}

8、ShutDown接口

优雅关闭 Spring Boot 应用,默认只支持POST请求。

路径:http://localhost:8016/monitor/shutdown

关于“SpringBoot怎么配置Actuator组件实现系统监控”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯