真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springbootstarteractuator怎么用

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

目前成都創(chuàng)新互聯(lián)公司已為成百上千的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、成都網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、松溪網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

添加POM依賴:



  org.springframework.boot
  spring-boot-starter-actuator


  org.springframework.boot
  spring-boot-starter-web

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

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

監(jiān)控和管理端點(diǎn)

端點(diǎn)名描述
autoconfig所有自動(dòng)配置信息( positiveMatches :運(yùn)行的, negativeMatches 未運(yùn)行組件)
auditevents審計(jì)事件
beans所有Bean的信息
configprops所有配置屬性
dump線程狀態(tài)信息
env當(dāng)前環(huán)境信息
health應(yīng)用健康狀況
info當(dāng)前應(yīng)用信息
metrics應(yīng)用的各項(xiàng)指標(biāo)
mappings應(yīng)用@RequestMapping映射路徑
shutdown關(guān)閉當(dāng)前應(yīng)用(默認(rèn)關(guān)閉)
trace追蹤信息(最新的http請(qǐng)求)
heapdump下載內(nèi)存快照

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
#遠(yuǎn)程關(guān)閉開(kāi)啟
endpoints.shutdown.enabled=true 
#訪問(wèn):http://localhost:8083/shutdown  關(guān)閉服務(wù)

metrics

{
mem: 573549,  //內(nèi)存大小
mem.free: 388198, //內(nèi)存剩余大小
processors: 4, //處理器數(shù)量
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, //沒(méi)加載的類
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
}

自定義配置說(shuō)明:

#關(guān)閉metrics功能
endpoints.metrics.enabled=false
#開(kāi)啟shutdown遠(yuǎn)程關(guān)閉功能
endpoints.shutdown.enabled=true
#設(shè)置beansId
endpoints.beans.id=mybean
#設(shè)置beans路徑
endpoints.beans.path=/bean
#關(guān)閉beans 功能
endpoints.beans.enabled=false
#關(guān)閉所有的
endpoints.enabled=false 
#開(kāi)啟單個(gè)beans功能
endpoints.beans.enabled=true
#所有訪問(wèn)添加根目錄
management.context-path=/manage
management.port=8181

org.springframework.boot.actuate.health 包下對(duì)于所有的健康狀態(tài)檢查例如:redisHealthIndicator ,當(dāng)有redis的starter 時(shí)候就會(huì)檢查

{
  status: "DOWN", //狀態(tài)
  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

?自定義健康狀態(tài)指示器

?1、編寫(xiě)一個(gè)指示器 實(shí)現(xiàn) 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","服務(wù)異常").build();
  }
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“spring boot starter actuator怎么用”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


網(wǎng)頁(yè)名稱:springbootstarteractuator怎么用
URL標(biāo)題:http://weahome.cn/article/pogiec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部