【web】springboot應用增加actuator管理端點
在spring boot應用中增加actuator管理端點,可以通過訪問actuator提供的一些預設端點快捷的訪問應用的一些執行和配置狀態。
springboot應用中增加actuator端點很簡單,只需要在maven的pom.xml依賴中增加如下依賴配置就可以了,直接上程式碼:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
如下為Actuator暴露的功能:
HTTP方法 | 路徑 | 描述 | 鑑權 |
---|---|---|---|
GET | /autoconfig | 檢視自動配置的使用情況 | true |
GET | /configprops | 檢視配置屬性,包括預設配置 | true |
GET | /beans | 檢視bean及其關係列表 | true |
GET | /dump | 列印執行緒棧 | true |
GET | /env | 檢視所有環境變數 | true |
GET | /env/{name} | 檢視具體變數值 | true |
GET | /health | 檢視應用健康指標 | false |
GET | /info | 檢視應用資訊 | false |
GET | /mappings | 檢視所有url對映 | true |
GET | /metrics | 檢視應用基本指標 | true |
GET | /metrics/{name} | 檢視具體指標 | true |
POST | /shutdown | 關閉應用 | true |
GET | /trace | 檢視基本追蹤資訊 | true |
相關文章
- 使用SpringBoot Actuator監控應用Spring Boot
- SpringBoot如何利用Actuator來監控應用?Spring Boot
- 聊聊springboot專案如何實現自定義actuator端點Spring Boot
- SpringBoot Actuator — 埋點和監控Spring Boot
- SpringBoot第二十二篇:應用監控之ActuatorSpring Boot
- SpringBoot:定製 ActuatorSpring Boot
- SpringBoot中的響應式web應用Spring BootWeb
- springMVC中增加spring-boot-actuatorSpringMVCboot
- Spring Boot Actuator詳解與深入應用(二):Actuator 2.xSpring Boot
- Spring Boot Actuator詳解與深入應用(一):Actuator 1.xSpring Boot
- Springboot學習日記(二) Web應用Spring BootWeb
- SpringBoot整合Actuator進行健康監控Spring Boot
- springboot 07 Spring Boot Actuator: Production-ready featuresSpring Boot
- 輕鬆搭建基於 SpringBoot + Vue 的 Web 商城應用Spring BootVueWeb
- Spring Boot Actuator詳解與深入應用(三):Prometheus+Grafana應用監控Spring BootPrometheusGrafana
- facebook web端傳送應用通知邀請Web
- 盤點web應用程式中常見的漏洞!Web
- 淺談 web-桌面端應用--------nw.jsWebJS
- Web 應用伺服器端渲染入門指南Web伺服器
- stm32 USB增加端點總結
- 一圖搞懂Web應用的單點登入Web
- Web 應用客戶端渲染和伺服器端渲染的比較Web客戶端伺服器
- SpringCloud SpringBoot mybatis分散式Web應用的統一異常處理GCCloudSpring BootMyBatis分散式Web
- Maven Web 應用MavenWeb
- SpringBoot應用Docker化Spring BootDocker
- 用Spring Web Flow和Terracotta搭建Web應用SpringWeb
- 遠端檔案管理系統(SpringBoot + Vue)Spring BootVue
- WEB PC 管理端打包詳細教程Web
- 實踐篇 -- Redis客戶端快取在SpringBoot應用的探究Redis客戶端快取Spring Boot
- 使用dockerfile部署springboot應用DockerSpring Boot
- 開發Web應用Web
- web離線應用Web
- 72 個網路應用安全實操要點,全方位保護 Web 應用的安全Web
- Flutter應用如何快速增加雲同步功能Flutter
- [譯] 響應式 Web 應用(四)Web
- [譯] 響應式 Web 應用(五)Web
- SpringBoot2.0應用(五):SpringBoot2.0整合MyBatisSpring BootMyBatis
- SpringBoot2.0應用(二):SpringBoot2.0整合ActiveMQSpring BootMQ