-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello Bruno!
Hope you are doing well!
I am trying to explore micrometer integration with Quarkus
I used as bases the example from https://quarkus.io/guides/telemetry-micrometer-tutorial
Included dependency
<dependency> <groupId>io.quarkiverse.micrometer.registry</groupId> <artifactId>quarkus-micrometer-registry-otlp</artifactId> <version>3.2.4</version> </dependency>
In application.properties
quarkus.micrometer.registry-enabled-default=true quarkus.micrometer.export.otlp.enabled=true quarkus.micrometer.export.otlp.get-enabled=true quarkus.micrometer.export.otlp.url=http://localhost:4318/v1/metrics
In order to have monitor tab enabled on a local jaeger deployment I used the docker-compose from here Made also a small addition in port binding to have 4318 also available
Unfortunately the prime number metric is not presented on the monitor dashboard. Only Operations metrics of the application, regarding the latency, request rate etc...
Also http://localhost:4318/v1/metrics responds 404 page not found
Could you please help me?
Thanks in advance
Best Regards,
Roi Arapoglou