Hi Previously I used to run my Camel routes under 2.25.0 and with Micrometer component for JMX in Spring Boot 2.1.9.
This route gives me a “messasges” counter in JMX to study: .to("micrometer:counter:messages") But now that I upgraded to Camel 3.2.0 and Spring 2.2.6 it is not available in JMX anymore. Instead I get three other categories: * gauges * meters * timers Same dependencies apply and also my bean is the same @Bean(name = MicrometerConstants.METRICS_REGISTRY_NAME) public MeterRegistry getMeterRegistry() { CompositeMeterRegistry meterRegistry = new CompositeMeterRegistry(); meterRegistry.add(new JmxMeterRegistry( CamelJmxConfig.DEFAULT, Clock.SYSTEM, HierarchicalNameMapper.DEFAULT)); return meterRegistry; } Please advice Thx M