Spring-Actuator是Spring-boot對(duì)應(yīng)用監(jiān)控的集成模塊,提供了我們對(duì)服務(wù)器進(jìn)行監(jiān)控的支持,使我們更直觀的獲取應(yīng)用程序中加載的應(yīng)用配置、環(huán)境變量、自動(dòng)化配置報(bào)告等。
創(chuàng)新互聯(lián)建站專(zhuān)注于企業(yè)全網(wǎng)整合營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、河北網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場(chǎng)景定制、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為河北等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
使用Spring-Actuator
1、引入Maven依賴(lài)
org.springframework.boot spring-boot-starter-actuator
引入依賴(lài)后啟動(dòng)項(xiàng)目即可。
項(xiàng)目啟動(dòng)時(shí)會(huì)打印出我們所需的url
2018-03-26 23:19:00.169 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
2018-03-26 23:19:00.169 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.170 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.170 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.171 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
2018-03-26 23:19:00.171 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.172 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.173 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
2018-03-26 23:19:00.173 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.173 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/pause || /pause.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2018-03-26 23:19:00.174 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/service-registry/instance-status],methods=[POST]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.setStatus(java.lang.String)
2018-03-26 23:19:00.174 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/service-registry/instance-status],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.getStatus()
2018-03-26 23:19:00.175 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
2018-03-26 23:19:00.175 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map)
2018-03-26 23:19:00.175 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.176 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
2018-03-26 23:19:00.176 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/refresh || /refresh.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2018-03-26 23:19:00.177 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/resume || /resume.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2018-03-26 23:19:00.178 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.178 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/archaius || /archaius.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.179 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
2018-03-26 23:19:00.179 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.value(java.util.Map)
2018-03-26 23:19:00.179 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env/reset],methods=[POST]}" onto public java.util.Maporg.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.reset()
2018-03-26 23:19:00.179 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/features || /features.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.180 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/restart || /restart.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.restart.RestartMvcEndpoint.invoke()
2018-03-26 23:19:00.181 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/entity || /entity.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.181 INFO 6148 --- [ main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2018-03-26 23:19:00.193 INFO 6148 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public java.util.Maporg.springframework.boot.actuate.endpoint.mvc.ManagementErrorEndpoint.invoke()
2、yml配置文件的配置
(1)配置端口號(hào)和不啟用某功能模塊
#制定端口號(hào),不制定則和該服務(wù)器server.port相同 management: port: 4321 #去掉某項(xiàng)不需要查看內(nèi)容的功能,如不需要health health: mail: #false代表不啟用該功能 enabled: false
上述配置表示配置的端口為http端口為4321 并且禁用 /health功能。
(2)修改映射路徑
#修改某配置的映射id的路徑 endpoints: beans: id: entity
上述配置表示將/beans獲取應(yīng)用上下文創(chuàng)建bean的路徑改為/entity
(3)配置Actuator安全配置
配置安全需要借助Spring-security
引入依賴(lài)
org.springframework.boot spring-boot-starter-security
配置賬號(hào)密碼:
security: basic: #代表開(kāi)啟賬號(hào)密碼認(rèn)證 enabled: true #配置賬號(hào)和密碼 user: name: root password: 123
配置完賬號(hào)密碼后即可通過(guò) http://127.0.0.1:4321進(jìn)行訪(fǎng)問(wèn),并且輸入配置的賬號(hào)和密碼即可,輸入一次當(dāng)瀏覽器不關(guān)閉時(shí)都有效。
(4)將展示報(bào)文顯示為json格式
json格式展示擁有更好的可讀性和美觀性
#將acyuator顯示的報(bào)文打印為json格式 spring: jackson: serialization: indent-output: true
將上述配置加至application.yml文件中即可
3、啟動(dòng)類(lèi)配置
@SpringBootApplication @EnableEurekaServer//此行注解代表為一個(gè)服務(wù)注冊(cè)組件,此注解僅適用于eureka public class EurekaServerApplication { public static void main(String[] args) { SpringApplication.run(EurekaServerApplication.class, args); } }
無(wú)須做配置即可運(yùn)行
4、一些主要的配置模塊
HTTP請(qǐng)求方式 | 路徑 | 描述 |
GET | /autoconfig | 用于獲取應(yīng)用的自動(dòng)化配置信息 |
GET | /beans | 用于獲取應(yīng)用上下文創(chuàng)建的所有bean |
GET | /configprops | 獲取應(yīng)用中配置的屬性信息報(bào)告 |
GET | /env | 用于獲取應(yīng)用所有可用的環(huán)境變量屬性報(bào)告 |
GET | /mappings | 用于獲取所有SpringMvc的控制器映射關(guān)系報(bào)告 |
GET | /info | 用于獲取應(yīng)用自定義的信息 |
(1) /autoconfig
該配置下有兩個(gè)主節(jié)點(diǎn)。
positiveMatches :返回的是條件匹配成功的自動(dòng)化配置信息
negativeMatches :返回的是條件匹配不成功的配置信息
(2) /beans
該配置文件用于展示由ApplicationContext應(yīng)用上下文加載的bean對(duì)象,包含以下幾個(gè)節(jié)點(diǎn):
"context" : "bootstrap", "parent" : null, "beans" : [ { "bean" : "propertySourceBootstrapConfiguration", "aliases" : [ ], "scope" : "singleton", "type" : "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration$$EnhancerBySpringCGLIB$$82fdf928", "resource" : "null", "dependencies" : [ ] }]
beans為應(yīng)用上下文加載的類(lèi)的集合,其包括以下幾個(gè)標(biāo)簽:
1)、bean : 應(yīng)用上下文創(chuàng)建的bean的名稱(chēng)
2)、scope:創(chuàng)建的bean的作用域
singleton : 單例 , 是spring默認(rèn)的作用域
prototype : 每一次請(qǐng)求都會(huì)產(chǎn)生一個(gè)新的實(shí)例 ,相當(dāng)于new的操作
request : 每次http請(qǐng)求都會(huì)產(chǎn)生一個(gè)新的實(shí)例,當(dāng)前bean只在同一個(gè) HttpRequest中有效
session : 同一個(gè)HttpSession中有效
3)、type : 應(yīng)用上下文管理bean的類(lèi)型
為類(lèi)的全限定類(lèi)名
4)、resource : class文件的具體路徑
5)、dependencies : 依賴(lài)bean的名稱(chēng) ,即bean中有關(guān)聯(lián)關(guān)系bean的名稱(chēng)
(3) /configprops : 獲取應(yīng)用中配置的屬性信息報(bào)告
其下有兩個(gè)子節(jié)點(diǎn)
prefix : 代表屬性的配置前綴
properties : 代表各個(gè)屬性的名稱(chēng)和值
(4) /env 用于獲取應(yīng)用上下文的環(huán)境變量屬性報(bào)告,如環(huán)境變量、JVM屬性、應(yīng)用的配置信息、命令行中的參數(shù)等。
1)、server.ports 代表該應(yīng)用配置的端口號(hào)
2) 、systemProperties獲取的為應(yīng)用的jvm等信息
(5) /mappings SpringMvc控制器映射的報(bào)告,
{ "{[/error]}" : { "bean" : "requestMappingHandlerMapping", "method" : "public org.springframework.http.ResponseEntity> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)" }}
1) /error代表springMvc的映射路徑
2) /bean 代表用于處理器映射器映射的類(lèi)
3) /method 代表映射類(lèi)中的方法
(6)、info 用于獲取application.yml中配置的自定義配置信息
5、度量指標(biāo)類(lèi)的配置
度量指標(biāo)提供的報(bào)告內(nèi)容是動(dòng)態(tài)變化的,提供了一些快照信息;如內(nèi)存使用情況、Http請(qǐng)求次數(shù)統(tǒng)計(jì)、外部資源指標(biāo)統(tǒng)計(jì)等。
(1)、/metrics 返回當(dāng)前應(yīng)用的各類(lèi)重要度量指標(biāo)。有以下內(nèi)容
1)、系統(tǒng)信息: processors ---- 處理器數(shù)量
instance.uptime ------ 運(yùn)行時(shí)間
systemload.average --系統(tǒng)平均負(fù)載 等。
2) 、 men.* : 系統(tǒng)內(nèi)存概要信息
3) 、 heap.* :堆內(nèi)存使用情況
4) 、 nonheap.* : 非堆內(nèi)存使用情況
5) 、 threads.* : 線(xiàn)程使用情況
6) 、 classess.* : 類(lèi)加載和卸載情況
7) 、 gc.* : 垃圾收集器的詳細(xì)信息
8) 、 httpsession.* : tomcat等容器的繪畫(huà)情況
9) 、 guage.* : 返回一個(gè)映射數(shù)值,如延遲時(shí)間等
10) 、 conter.* : 作為計(jì)數(shù)器使用,記錄了增加量與減少量
(2) /health :各類(lèi)健康指標(biāo)
如下述顯示了內(nèi)存的一些信息.
"diskSpace" : { "status" : "UP", "total" : 21475880960, "free" : 8916258816, "threshold" : 10485760 }
(3) /dump :用于暴露程序中的線(xiàn)程信息
threadName -- 暴露的線(xiàn)程名稱(chēng)
threadId --暴露的線(xiàn)程id 等等
(4) /trace :用于跟蹤基本的http信息
6、操作控制類(lèi)配置
(1) /shutdowm 用于關(guān)閉該應(yīng)用的遠(yuǎn)程操作 --為post請(qǐng)求
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。