SpringBoot四大神器之Actuator

2021-09-08 13:47:24 字數 1831 閱讀 3891

spring boot有四大神器,分別是auto-configuration、starters、cli、actuator,本文主要講actuator。actuator是spring boot提供的對應用系統的自省和監控的整合功能,可以對應用系統進行配置檢視、相關功能統計等。

org.springframework.bootgroupid> spring-boot-starter-actuatorartifactid> dependency>

http方法

路徑描述

鑑權get

/autoconfig

檢視自動配置的使用情況

true

get/configprops

檢視配置屬性,包括預設配置

true

get/beans

檢視bean及其關係列表

true

get/dump

列印執行緒棧

true

get/env

檢視所有環境變數

true

get/env/

檢視具體變數值

true

get/health

檢視應用健康指標

false

get/info

檢視應用資訊

false

get檢視所有url對映

true

get/metrics

檢視應用基本指標

true

get/metrics/

檢視具體指標

true

post

/shutdown

關閉應用

true

get/trace

檢視基本追蹤資訊

true

] }, "negativematches":  ] } } 

}, "multipart.configuration_properties":  }, "environmentendpoint":  } }

[

, , , ], "lockedmonitors": [ ], "lockedsynchronizers": [ ], "lockinfo": } ]

,

servletcontextinitparams: {},

systemproperties: , db: }

info:

contact:

email: [email protected]

phone: 0755-82890987

然後請求就可以出來了

}

: , : , : {

{

mem: 499404,

mem.free: 257591,

processors: 8,

instance.uptime: 4284997,

要真正生效,得配置檔案開啟

endpoints.shutdown.enabled: true

記錄最近100個請求的資訊

[{

"timestamp": 1452955704922,

"info": {

直線矩陣數學之路 2 四大神器 R 18

最近研究直線矩陣,稍微總結一下,以後繼續補充 目標是這些點到這條直線的距離的平方和最小,可運用最小二乘法,最小二乘法擬合的程序就是回歸,這條直線就是回歸線。lsfit 函式實現最小二乘法擬合,其主要引數為 x 乙個矩陣的行對應的情況和其列對應為變數。y 結果,可所以乙個矩陣,如果你想,以適應多種左手...

python三大神器之virtualenv

pip,virtualenv,fabric通稱為pythoner的三大神器。virtualenv 用來建立乙個虛擬的python環境,乙個專屬於專案的python環境。用virtualenv 來保持乙個乾淨的環境非常有用 測試環境 linux下 通過pip安裝virtualenv pip insta...

python三大神器之pip

pip是一款管理python各類包和庫的工具,非常好用。下文介紹常用的一些命令。安裝 pip install 庫名 也可以指定版本 pip install 庫名 版本 解除安裝 pip uninstall 庫名 公升級 pip install upgrade 庫名 檢視所有第三方庫 pip list...