中三A105论坛

注册 登录
查看: 775|回复: 0

Spring Boot & Actuator

[复制链接]

169

主题

169

帖子

603

积分

高级会员

Rank: 4

积分
603
发表于 2020-1-6 14:38:44 | 显示全部楼层 |阅读模式
SpringBoot自带监控功能Actuator,可以帮助实现对程序内部运行情况监控,比如监控状况、Bean加载情况、环境变量、日志信息、线程信息等


  • Spring Boot七分钟快速实践
  • Spring Boot & MyBatis
  • Spring Boot & Redis
  • Spring Boot & Swagger
  • Spring Boot & 单元测试
  • Spring Boot & Actuator
  • Spring Boot Admin
配置Actuator


  • pom.xml




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

  • 浏览器打开链接http://localhost:8080/actuator/


  • 可以看到所有支持的连接,默认只有




/actuator/actuator/health/actuator/health/{component}/actuator/health/{component}/{instance}/actuator/info

  • bean加载情况http://localhost:8080/actuator/beans




{    "contexts":{        "application":{            "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"                    ]                }            }        }    }}

  • 环境变量http://localhost:8080/actuator/env




{    "activeProfiles":[    ],    "propertySources":[        {            "name":"server.ports",            "properties":{                "local.server.port":{                    "value":8080                }            }        },        {            "name":"servletContextInitParams",            "properties":{            }        },        {            "name":"systemProperties",            "properties":{                "java.vendor":{                    "value":"Oracle Corporation"                },                "sun.java.launcher":{                    "value":"SUN_STANDARD"                },                "catalina.base":{                    "value":"C:%users\timxia\AppData\Local\Temp\tomcat.2979281870254394426.8080"                }            }        }    ]}
常用配置


  • 如果要看到所有支持的状态查询,需要配置
management.endpoints.web.exposure.include=*

  • 显示所有健康状态,需要加配置
management.endpoint.health.show-details=always结果
{    "status":"UP",    "details":{        "db":{            "status":"UP",            "details":{                "database":"MySQL",                "hello":1            }        },        "diskSpace":{            "status":"UP",            "details":{                "total":335067213824,                "free":241971175424,                "threshold":10485760            }        },        "redis":{            "status":"UP",            "details":{                "version":"3.2.12"            }        }    } }
启用端点
默认情况下,除shutdown以外的所有端点均已启用。要配置单个端点的启用,请使用management.endpoint..enabled属性。以下示例启用shutdown端点:
management.endpoint.shutdown.enabled=true另外可以通过management.endpoints.enabled-by-default来修改全局端口默认配置,以下示例启用info端点并禁用所有其他端点:
management.endpoints.enabled-by-default=falsemanagement.endpoint.info.enabled=true
注意
禁用的端点将从应用程序上下文中完全删除。如果您只想更改端点公开(对外暴露)的技术,请改为使用include和exclude属性,详情见下文
暴露端点

要更改公开哪些端点,请使用以下技术特定的include和exclude属性:
PropertyDefaultmanagement.endpoints.jmx.exposure.exclude*management.endpoints.jmx.exposure.include*management.endpoints.web.exposure.exclude*management.endpoints.web.exposure.includeinfo, healthinclude属性列出了公开的端点的ID,exclude属性列出了不应该公开的端点的ID
exclude属性优先于include属性。包含和排除属性都可以使用端点ID列表进行配置。
注意
这里的优先级是指同一端点ID,同时出现在include属性表和exclude属性表里,exclude属性优先于include属性,即此端点没有暴露


  • 例如,要停止通过JMX公开所有端点并仅公开health和info端点,请使用以下属性:
management.endpoints.jmx.exposure.include=health,info*可以用来选择所有端点。例如,要通过HTTP公开除env和beans端点之外的所有内容,请使用以下属性:
management.endpoints.web.exposure.include=*management.endpoints.web.exposure.exclude=env,beans参考


  • spring boot 2 使用 actuator 404的问题
  • Spring Boot 2.0官方文档之 Actuator

来源:https://www.jianshu.com/p/14d10481845e
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回列表 返回顶部