spingboot自带监控功能Actuator,可以实现对程序内部运行情况监控,比如监控情况,Bean加载情况,配置属性。日志信息等。
勾选
ops里的Spring boot Actuator选项
web里的spring Web
- <dependency>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-actuatorartifactId>
- dependency>
访问http://localhost:8080/actuator
实例:
使用http://json.cn的网站转换为json格式。
- # 开启健康检查的完整信息
- management.endpoint.health.show-details=always
- # 将所有的监控endpoint暴露出来
- management.endpoints.web.exposure.include=*
勾选
ops里的(Server)选项
web里的spring Web
勾选
ops里的client选项
web里的spring Web
在resources中设置端口
sever.port= 9000
启动类加注解(开启识别的作用)
@EnableAdminServer
执行admin.server地址
spring.boot.admin.client.url=http://localhost:9000
打开所有endpoint
- # 开启健康检查的完整信息
- management.endpoint.health.show-details=always
- # 将所有的监控endpoint暴露出来
- management.endpoints.web.exposure.include=*
http://localhost:9000
项目运行后