This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch mm in repository https://gitbox.apache.org/repos/asf/camel.git
commit 636ab5c8c842f9b7bdfd67caa0e77737e7d1afae Author: Claus Ibsen <[email protected]> AuthorDate: Wed Nov 15 21:13:20 2023 +0100 CAMEL-20105: camel-micromemter - Make it easier to configure for camel-main --- .../camel/component/micrometer/prometheus/MicrometerPrometheus.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-micrometer-prometheus/src/main/java/org/apache/camel/component/micrometer/prometheus/MicrometerPrometheus.java b/components/camel-micrometer-prometheus/src/main/java/org/apache/camel/component/micrometer/prometheus/MicrometerPrometheus.java index b6fee55cb02..36946b45423 100644 --- a/components/camel-micrometer-prometheus/src/main/java/org/apache/camel/component/micrometer/prometheus/MicrometerPrometheus.java +++ b/components/camel-micrometer-prometheus/src/main/java/org/apache/camel/component/micrometer/prometheus/MicrometerPrometheus.java @@ -43,6 +43,8 @@ public class MicrometerPrometheus extends ServiceSupport implements CamelMetrics // TODO: option to configure prometheus // TODO: context-path / port for http scrape service + // TODO: use platform-http-main + // TODO: dev console private CamelContext camelContext; private final PrometheusMeterRegistry meterRegistry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT);
