在multimaven模块项目中,当我尝试访问Prometheus形式的执行器时,会引发内部服务器错误,但能够正确访问执行器。
添加了以下依赖性:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Micormeter core dependecy -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
</dependency>
<!-- Micrometer Prometheus registry -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
还添加了application.properties:
management.endpoints.web.exposure.include=*
我陷入了困境。