本文介紹了MicroProfile指標在WildFly 25上不顯示自定義指標的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試使用Javax/jaxars,并且使用的是我不太熟悉的WildFly 25服務器。
在搜索類似于Spring的Actuator的東西時,我無意中發現了服務器默認公開的指標和健康端點,以及它向應用程序端點添加自定義計數器、量規等的能力。
但是,無論我做什么,這些自定義終結點都不會在默認的http://localhost:9990/metrics URL下公開。
我正在遵循GitHub存儲庫下WildFly提供的指南:
https://github.com/wildfly/quickstart/tree/main/microprofile-metrics
教程中的一些危險信號似乎不適用于我嘗試執行的任何操作。
-
本指南建議,如果我們想要獲取JSON格式的指標,則需要使用以下標題:";
Accepted: application/json
";,它仍然返回默認的Prometheus格式,包括郵政編碼和Curl格式。本指南還建議指標/供應商、指標/應用程序、指標/基礎返回不同作用域的指標,在我的測試中,它們返回的指標都相同。
就教程代碼而言,我嘗試在Jakarta EE 8 Full&;Web發行版上運行它,但它拋出以下錯誤:
Artifact microprofile-metrics:war exploded: java.lang.Exception: {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit."microprofile-metrics.war".undertow-deployment" => "java.lang.NoClassDefFoundError: org/eclipse/microprofile/metrics/Counter Caused by: java.lang.NoClassDefFoundError: org/eclipse/microprofile/metrics/Counter
我嘗試用不同版本的Java(1.8、11、17)編譯代碼,希望可以解決問題,但無濟于事。
但是,使用WildFly預覽EE 9.1分發版似乎可以停止引發錯誤,但自定義度量值仍然不起作用。
有我在嘗試期間添加到兩個發行版的子系統(取自Standalone.xml):
<extension module="org.wildfly.extension.health"/>
<extension module="org.wildfly.extension.metrics"/>
<extension module="org.wildfly.extension.microprofile.config-smallrye"/>
<extension module="org.wildfly.extension.microprofile.fault-tolerance-smallrye"/>
<extension module="org.wildfly.extension.microprofile.health-smallrye"/>
<extension module="org.wildfly.extension.microprofile.jwt-smallrye"/>
<extension module="org.wildfly.extension.microprofile.metrics-smallrye"/>
<extension module="org.wildfly.extension.microprofile.openapi-smallrye"/>
<extension module="org.wildfly.extension.microprofile.opentracing-smallrye"/>
<extension module="org.wildfly.extension.undertow"/>
(為簡潔起見省略其他部分)
我還嘗試通過創建以下BAT并啟動它來啟用統計信息:
call standalone.bat -Dwildfly.statistics-enabled=true
我使用的是IntelliJ,因此我嘗試在IDE中執行相同的操作:
(在啟動過程中將";Enable Statistics&q;選項同時添加到VM Options&;以確保其工作)
以下是我使用的依賴項,基于我的服務器版本:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-microprofile</artifactId>
<version>25.0.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-jakartaee8-with-tools</artifactId>
<version>25.0.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Import the MicroProfile Metrics API, we use provided scope as the API is included in the server -->
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Import the CDI API, we use provided scope as the API is included in the server -->
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Import the Jakarta REST API, we use provided scope as the API is included in the server -->
<dependency>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
推薦答案
約翰。我是WildFly的指標/MP指標組件負責人,因此希望我能幫助您解決問題。
在我對挖掘WF源代碼感到非常興奮之前,您能確認您使用的是哪種配置嗎?看起來您使用的是Standalone.xml配置。雖然這確實有指標擴展,但它不是MP指標。為此,您需要使用stand-microprofile.xml.
希望您的問題就是這么簡單。如果沒有,讓我知道,我們會更深入地調查。:)
這篇關于MicroProfile指標在WildFly 25上不顯示自定義指標的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,