本文介紹了如何在Spring Boot獨立應用程序中激活JMX監控的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我看了幾乎所有的文檔,但幾乎不能抓住這個神秘的東西。
那么我的問題是我可以通過http jmx url使用我的獨立的Spring Boot應用程序來監控我的應用程序的運行狀況和其他指標嗎?我是否需要為此配置其他內容?
我已在啟動應用程序中添加了以下依賴項。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-core</artifactId>
</dependency>
我還在配置文件中配置了以下屬性。
management.endpoints.web.exposure.include=*
management.endpoints.jmx.unique-names=true
management.server.port=8080
management.server.ssl.enabled=false
當我嘗試點擊URL:http://localhost:8080/actuator/jolokia/health時,無法看到任何結果。
還嘗試添加如下所示的自定義終結點,但不起作用。
@Endpoint(id="mypoint")
@Component
public class myPointEndPoint {
@ReadOperation
public String mypoint(){
return "Hello" ;
}
具有附加屬性
Management.endpoint t.mypoint t.Enabled=True
推薦答案
問題出在您嘗試調用的URL。
首先,使用http://localhost:8080/actuator/jolokia/list
檢索可能的MBean
查看Health mBean時,必須提供唯一的名稱和操作(Op)。
在我的例子中,它看起來像:http://localhost:8080/actuator/jolokia/exec/org.springframework.boot:type=Endpoint,name=Health,identity=4200098/health
同時查看Jolokia文檔:https://jolokia.org/reference/html/index.html
這篇關于如何在Spring Boot獨立應用程序中激活JMX監控的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,