springboot2.x簡單詳細教程--高階篇幅之監控Actuator實戰(第十八章)
阿新 • • 發佈:2018-11-24
一、SpringBoot2.x監控Actuator實戰上集
簡介:講解SpringBoot使用actuator監控配置和使用
可用性:100%,99.9%
1、介紹什麼是actuator
官方介紹:
Spring Boot包含許多附加功能,可幫助您在將應用程式投入生產時監視和管理應用程式 。 可 以選擇使用HTTP端點或JMX來管理和監控您的應用程式,自動應用於審計,健康和指標收集;
一句話:springboot提供用於監控和管理生產環境的模組(監控系統各種變化)
官方文件:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#production-ready
2、加入依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
3、加入上述依賴後,訪問幾個url
啟動工程已經有對映的路徑
1) /actuator/health :可以通過定時器訪問這個路徑,以監控系統狀態
2)
3)
http://localhost:8080/actuator
監控服務流程