在我的 springboot 应用程序中,我在 application.properties 中添加了以下内容:
management.metrics.export.newrelic.api-key=MY_INSIGHT_KEY
management.metrics.export.newrelic.account-id=MY_NEWRELIC_ACCOUNT_ID
在 pom 文件中,我将 micrometer-newrelic 依赖项插入为:
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-new-relic</artifactId>
<version>${micrometer.version}</version>
</dependency>
但我在洞察站点上看不到任何指标。
我在配置中缺少什么?
编辑:
此链接记录了在 Spring Boot 2 中为新遗物配置千分尺。
它要求实现 NewRelicConfig 接口并用它创建 NewRelicMeterRegistry。
但是我需要将此代码放在 springboot 2 应用程序中的哪个位置。