# actuator-example **Repository Path**: jonathanzyf/actuator-example ## Basic Information - **Project Name**: actuator-example - **Description**: 微服务状态检测 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-11-12 - **Last Updated**: 2021-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 微服务 actuator 示例工程 ## 介绍 微服务状态检测示例代码,包括两种实现方式: | 模块名称 | 实现方式 | 请求地址 | |---|---|---| | boot-actuator-example | 基于spring-boot-starter-actuator | /actuator/health | | iuap-actuator-example | 基于health-autoconfigurate | /health-check | ## actuator endpoints列表 |Endpoint ID|Description| |---|---| |auditevents|显示应用暴露的审计事件 (比如认证进入、订单失败)| |info|显示应用的基本信息| |health|显示应用的健康状态| |metrics|显示应用多样的度量信息| |loggers|显示和修改配置的loggers| |logfile|返回log file中的内容(如果logging.file或者logging.path被设置)| |httptrace|显示HTTP足迹,最近100个HTTP request/repsponse| |env|显示当前的环境特性| |flyway|显示数据库迁移路径的详细信息| |liquidbase|显示Liquibase 数据库迁移的纤细信息| |shutdown|让你逐步关闭应用| |mappings|显示所有的@RequestMapping路径| |scheduledtasks|显示应用中的调度任务| |threaddump|执行一个线程dump| |heapdump|返回一个GZip压缩的JVM堆dump|