一、使用Actuator检查与监控SpringBoot1.5.19.RELEASE
actuaotr是spring boot项目中非常强大的一个功能,有助于对应用程序进行监控和管理,通过restful API请求来监管、审计、收集应用的运行情况,针对微服务而言它是必不可少的一个环节。
在pom文件中添加Actuator坐标
<dependency> <groupID>org.springframework.boot</groupID> <artifactID>spring-boot-starter-actuator</artifactID></dependency>
在全局配置文件中设置关闭安全限制
management.security.enabled=false
运行,会发现控制台打印信息变多了
直接访问eg: http://localhost:8080/health http://localhost:8080/dump http://localhost:8080/beans 等
二、Spring Boot admin具体可参考:https://www.cnblogs.com/baidawei/p/9183531.html
Spring Boot admin 提供了很多功能,如显示 name、ID 和 version,显示在线状态,Loggers 的日志级别管理,Threads 线程管理,Environment 管理等。
访问spring boot admin的github页面:https://github.com/codecentric/spring-boot-admin
-------以下内容在服务端 *** 作:在pom文件中添加spring boot admin 坐标
<dependencIEs> <dependency> <groupID>de.codecentric</groupID> <artifactID>spring-boot-admin-starter-server</artifactID> <version>1.5.7</version> </dependency></dependencIEs>
在启动类中增加注解:@EnableadminServer
@SpringBootApplication@EnableadminServerpublic class SpringboothelloworldApplication { public static voID main(String[] args) { SpringApplication.run(SpringboothelloworldApplication.class,args); }}
-------以下内容在客户端 *** 作:在客户端(另一个项目)pom文件添加依赖
<dependency> <groupID>de.codecentric</groupID> <artifactID>spring-boot-admin-starter-clIEnt</artifactID> <version>1.5.7</version></dependency>
修改propertIEs文件
#服务端的ip地址和端口spring.boot.admin.url: http://localhost:8383management.security.enabled=false
此时客户端的端口是:8080 ; 服务端的端口是8383
先启动服务端,打开网页:http://localhost:8383 (什么都没有,因为客户端还没启动)
启动客户端 总结以上是内存溢出为你收集整理的【SpringBoot】16. 如何监控springboot的健康状况全部内容,希望文章能够帮你解决【SpringBoot】16. 如何监控springboot的健康状况所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)