赞
踩
使用Spring Boot为我们提供的准 生产环境下的应用监控和管理功能。我们可以通过HTTP,JMX,SSH协议来进 行操作,自动得到审计、健康及指标信息等。
监控和管理端点:
定制端点信息:
1、定制端点一般通过endpoints+端点名+属性名来设置。
2、修改端点id(endpoints.beans.id=mybeans)
3、开启远程应用关闭功能(endpoints.shutdown.enabled=true)
4、关闭端点(endpoints.beans.enabled=false)
5、开启所需端点:
endpoints.enabled=false
endpoints.beans.enabled=true
6、定制端点访问根路径:
management.context-path=/manage
7、关闭http端点:
management.port=-1
使用:
引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
application.properties配置
management.security.enabled=false
info.app.id=hello
info.app.version=1.0.0
management.context-path=/manage
management.port=8181
git.properties
git.branch=develop
git.commit.id=xjkd33s
git.commit.time=2019-03-03 13:03:59
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。