【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
- Spring Boot Actuator詳解與深入應用(一):Actuator 1.xSpring Boot
- Spring Boot Actuator詳解與深入應用(二):Actuator 2.xSpring Boot
- springboot之actuator監控Spring Boot
- springMVC中增加spring-boot-actuatorSpringMVCboot
- SpringBoot中的響應式web應用Spring BootWeb
- Springboot學習日記(二) Web應用Spring BootWeb
- web應用服務端cache策略初探Web服務端
- Native APP(原生應用)、Web App(Web應用)、Hybrid App(混合應用) 優缺點分析APPWeb
- SpringBoot整合Actuator進行健康監控Spring Boot
- springboot中使用actuator進行監控Spring Boot
- 如何在docker中部署springboot的web應用DockerSpring BootWeb
- facebook web端傳送應用通知邀請Web
- Spring Boot Actuator詳解與深入應用(三):Prometheus+Grafana應用監控Spring BootPrometheusGrafana
- Spring Boot (十九):使用 Spring Boot Actuator 監控應用Spring Boot
- stm32 USB增加端點總結
- 盤點web應用程式中常見的漏洞!Web
- 淺談 web-桌面端應用--------nw.jsWebJS
- Web 應用伺服器端渲染入門指南Web伺服器
- 輕鬆搭建基於 SpringBoot + Vue 的 Web 商城應用Spring BootVueWeb
- Web應用Web
- 一圖搞懂Web應用的單點登入Web
- Web 應用客戶端渲染和伺服器端渲染的比較Web客戶端伺服器
- Maven Web 應用MavenWeb
- Web小應用Web
- Web應用程式Web
- springboot 07 Spring Boot Actuator: Production-ready featuresSpring Boot
- WEB PC 管理端打包詳細教程Web
- SpringBoot應用Docker化Spring BootDocker
- Flutter應用如何快速增加雲同步功能Flutter
- web離線應用Web
- 開發Web應用Web
- 系統架構:Web應用架構的新趨勢---前端和後端分離的一點想法Web應用架構前端後端