squakez opened a new issue, #7405: URL: https://github.com/apache/camel-quarkus/issues/7405
### Bug description I think I spotted a potential problem in the extension. The metric exposed, `camel_exchanges_total` differs from the TYPE, which is instead `camel_exchanges`. ``` # TYPE camel_exchanges counter # HELP camel_exchanges Total number of processed exchanges camel_exchanges_total{camelContext="camel-1",eventType="route",kind="CamelRoute",routeId="route1"} 13.0 camel_exchanges_total{camelContext="camel-1",eventType="context",kind="CamelRoute",routeId=""} 13.0 ``` It seems to be a generic problem with all the `_total` metrics exposed. Just a comparison with other Camel runtimes, the expected output should be: ``` # HELP camel_exchanges_total Total number of processed exchanges # TYPE camel_exchanges_total counter camel_exchanges_total{camelContext="camel-1",eventType="context",kind="CamelRoute",routeId=""} 44.0 camel_exchanges_total{camelContext="camel-1",eventType="route",kind="CamelRoute",routeId="route1"} 44.0 ``` -- 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.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org