91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring boot starter actuator怎么用

發布時間:2021-08-09 11:05:57 來源:億速云 閱讀:190 作者:小新 欄目:編程語言

這篇文章主要介紹了spring boot starter actuator怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

添加POM依賴:

<!-- spring-boot-監控-->
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>

application.yml中指定監控的HTTP端口(如果不指定,則使用和Server相同的端口);指定去掉某項的檢查(比如不監控health.mail):

server:
 port: 8083
management:
  port: 8083
  security:
   enabled: false #

監控和管理端點

端點名描述
autoconfig所有自動配置信息( positiveMatches :運行的, negativeMatches 未運行組件)
auditevents審計事件
beans所有Bean的信息
configprops所有配置屬性
dump線程狀態信息
env當前環境信息
health應用健康狀況
info當前應用信息
metrics應用的各項指標
mappings應用@RequestMapping映射路徑
shutdown關閉當前應用(默認關閉)
trace追蹤信息(最新的http請求)
heapdump下載內存快照

http://localhost:8083/info 讀取配置文件application.properties的 info.*屬性

  在InfoProperties 讀取

  application.properties :

info.app.version=v1.2.0
info.app.name=abc

在GitProperties  獲取git.properties 的信息 

info.app.version=v1.2.0
info.app.name=abc
#遠程關閉開啟
endpoints.shutdown.enabled=true 
#訪問:http://localhost:8083/shutdown  關閉服務

metrics

{
mem: 573549,  //內存大小
mem.free: 388198, //內存剩余大小
processors: 4, //處理器數量
instance.uptime: 338426,
uptime: 345091,
systemload.average: -1,
heap.committed: 489984,
heap.init: 131072,
heap.used: 101785,
heap: 1842688,
nonheap.committed: 85056,
nonheap.init: 2496,
nonheap.used: 83566,
nonheap: 0,
threads.peak: 46,
threads.daemon: 36,
threads.totalStarted: 72,
threads: 39, //線程
classes: 12109,
classes.loaded: 12109, //加載的類
classes.unloaded: 0, //沒加載的類
gc.ps_scavenge.count: 10,
gc.ps_scavenge.time: 103,
gc.ps_marksweep.count: 3,
gc.ps_marksweep.time: 219,
httpsessions.max: -1,
httpsessions.active: 0,
gauge.response.mappings: 3,
gauge.response.autoconfig: 4,
gauge.response.trace: 167,
counter.status.200.mappings: 1,
counter.status.200.autoconfig: 2,
counter.status.200.trace: 1
}

自定義配置說明:

#關閉metrics功能
endpoints.metrics.enabled=false
#開啟shutdown遠程關閉功能
endpoints.shutdown.enabled=true
#設置beansId
endpoints.beans.id=mybean
#設置beans路徑
endpoints.beans.path=/bean
#關閉beans 功能
endpoints.beans.enabled=false
#關閉所有的
endpoints.enabled=false 
#開啟單個beans功能
endpoints.beans.enabled=true
#所有訪問添加根目錄
management.context-path=/manage
management.port=8181

org.springframework.boot.actuate.health 包下對于所有的健康狀態檢查例如:RedisHealthIndicator ,當有redis的starter 時候就會檢查

{
  status: "DOWN", //狀態
  diskSpace: {
  status: "UP",
  total: 395243941888,
  free: 367246643200,
  threshold: 10485760
  },
  rabbit: {
  status: "DOWN",
  error: "org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect"
  },
  redis: {
  status: "UP",
  version: "4.0.9"
  },
  db: {
  status: "UP",
  database: "MySQL",
  hello: 1
  }
}

自定義health

?自定義健康狀態指示器

?1、編寫一個指示器 實現 HealthIndicator 接口

?2、指示器的名字 xxxxHealthIndicator

?3、加入容器中

import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
@Component
public class MyAppHealthIndicator implements HealthIndicator {

  @Override
  public Health health() {

    //自定義的檢查方法
    //Health.up().build()代表健康
    return Health.down().withDetail("msg","服務異常").build();
  }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“spring boot starter actuator怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

神农架林区| 吴旗县| 东乌| 仪征市| 阿勒泰市| 乌兰浩特市| 长乐市| 兴和县| 西安市| 青冈县| 兴业县| 五大连池市| 临桂县| 西吉县| 永吉县| 江川县| 南宫市| 云和县| 龙川县| 吉首市| 龙陵县| 互助| 西林县| 绿春县| 洪雅县| 祁连县| 若羌县| 南开区| 尼玛县| 忻城县| 宁安市| 五峰| 香格里拉县| 嘉禾县| 云霄县| 陇西县| 大悟县| 大厂| 长治市| 周宁县| 璧山县|