jamesnetherton commented on issue #7405: URL: https://github.com/apache/camel-quarkus/issues/7405#issuecomment-2929611077
I think this is expected. It's related to the content type for the metrics format when the metrics are scraped: https://docs.micrometer.io/micrometer/reference/implementations/prometheus.html#_scrape_format With `camel-micrometer-prometheus`, the default is set to [0.0.4](https://github.com/apache/camel/blob/180ce20a518e84df9182924942951f909d251841/components/camel-micrometer-prometheus/src/main/java/org/apache/camel/component/micrometer/prometheus/MicrometerPrometheus.java#L77) (maybe also true for Spring Boot?). The default on Quarkus is version [1.0.0](https://github.com/quarkusio/quarkus/blob/f8f9afdcaf93d82a4b3aafacafaececf2c796a77/extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/export/handlers/PrometheusHandler.java#L53). The scrape output is different between the two versions. With `0.0.4` you get `# TYPE camel_exchanges_total counter`, on `1.0.0` it's `# TYPE camel_exchanges counter`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org