yangtaoran
yangtaoran
> Hi @yangtaoran - there is currently not any support for mapping resource properties into metric attributes for Prometheus exporter. Are you using the prometheus exporter in this repository or...
I think It's necessary that the Prometheus exporter from SDK should export metrics data with resource.Although I can do like above,it's complicated.If it is possible,I can push a PR.
The `DefaultExports.register()` in another framework, I application depend on the framework,but the framework cannot remove `DefaultExports.register()`.However, I want to use micrometer to registry jvm metrics to prometheus defaultRegistry,but the hostpot...
The dependencies: ```xml org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-actuator io.micrometer micrometer-registry-prometheus ``` The application entrypoint: ```java @SpringBootApplication public class HelloServerApplication { public static void main(String[] args) throws IOException { DefaultExports.initialize(); new HTTPServer("127.0.0.1",...
Yes, it will be ok if I remove `DefaultExports.initialize()`.