9:30:02.391 [main] ERROR o.s.b.SpringApplication - [reportFailure,830] - Application run failed
org.springframework.context.ApplicationContextException: Failed to start bean ‘nacosWatch’; nested exception is java.lang.NoClassDefFoundError: io/prometheus/client/Gauge
以上报错信息显示没有找到类io.prometheus.client.Gauge,需要在pom.xml文件中引入simpleclient的依赖:
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient</artifactId>
<version>0.3.0</version>
</dependency>