端點名
描述
autoconfig
所有自動配置資訊
auditevents
審計事件
beans
所有bean的資訊
configprops
所有配置屬性
dump
執行緒狀態資訊
env當前環境資訊
health
應用健康狀況
info
當前應用資訊
metrics
應用的各項指標
shutdown
關閉當前應用(預設關閉)
trace
追蹤資訊(最新的http請求)
springboot的版本是1.5.12.release
org.springframework.boot
spring-boot-starter-actuator
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-devtools
runtime
true
org.springframework.boot
spring-boot-starter-test
test
# 關閉安全
management.security.enabled=false
#遠端關閉應用
endpoints.shutdown.enabled=true
# 關閉安全
management.security.enabled=false
#遠端關閉應用
endpoints.shutdown.enabled=true
# 修改端點
#endpoints.beans.id=mybean
#endpoints.beans.path=/bean
# 禁用端點
#endpoints.beans.enabled=false
# 關閉所有的端點,並啟用某個端點
#endpoints.enabled=false
#endpoints.beans.enabled=true
# 定製所有端點的根路徑
management.context-path=/manage
# 定製所有端點的埠,如果是-1,就表示不能訪問
management.port=8081
springboot(十七)監控管理
1.監控端點資訊 2.定製端點資訊 3.自定義健康狀態指示器 通過引入spring boot starter actuator,可以使用spring boot為我們提供的準生產環境下的應用監控和管理功能。我們可以通過http,jmx,ssh協議來進 行操作,自動得到審計 健康及指標資訊等 autoc...
使用supervisor監控管理Linux服務程序
supervisor docs 使用ssh遠端維護vps時候,要在後台掛起乙個程式。掛起程式很簡單,在command後加上 符號就可以,但是當斷開ssh時候,掛起的程式也隨之killed,很是惱火。在使用nohup的時候意外發現了supervisor,supervisor使用python開發,通過配...
使用Superivisor監控管理程序
1.superivisor簡介 supervisor是乙個c s系統,它允許使用者在類unix系統上監控和管理一系列的程序。你可以把乙個程序以daemon的形式用supervisor來管理。2.安裝 使用pip來安裝supervisor root test1 pip install supervis...