springboot监控之监控管理

Posted 西西嘛呦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot监控之监控管理相关的知识,希望对你有一定的参考价值。

1、新建一个springboot项目,选中web、DevTools、Actuator

2、在application.properties里面配置

#actuator端口 
management.server.port=9001
#修改访问路径  2.0之前默认是/   2.0默认是 /actuator  可以通过这个属性值修改  
management.endpoints.web.base-path=/monitor
#开放所有页面节点  默认只开启了health、info两个节点
management.endpoints.web.exposure.include=*
#显示健康具体信息  默认不会显示详细信息  
management.endpoint.health.show-details=always

3、启动服务器,之后输入:localhost:9001/monitor/health

 

4、相关端点

 

 5、测试

在appllication.properties同位置下新建git.properties:

git.branch=master
git.commit.id=123
git.commit.time=2019-02-10 12:12:56

启动服务器:并访问

以上是关于springboot监控之监控管理的主要内容,如果未能解决你的问题,请参考以下文章

二十springboot之监控管理Actuator

Spring-Boot之Admin服务监控-9

Spring Boot2.0之 监控管理

SpringBoot - 监控管理

springboot应用监控和管理

重学SpringBoot系列应用程序监控管理