This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-3.14.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1f093edcff9bfbab400ec7b7c21664214f8226f5 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Feb 21 10:18:37 2022 +0100 CAMEL-17679: remove references to unsupported metrics types --- .../java/org/apache/camel/component/micrometer/MicrometerEndpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-micrometer/src/main/java/org/apache/camel/component/micrometer/MicrometerEndpoint.java b/components/camel-micrometer/src/main/java/org/apache/camel/component/micrometer/MicrometerEndpoint.java index f8f0c0c..5bec25e 100644 --- a/components/camel-micrometer/src/main/java/org/apache/camel/component/micrometer/MicrometerEndpoint.java +++ b/components/camel-micrometer/src/main/java/org/apache/camel/component/micrometer/MicrometerEndpoint.java @@ -40,7 +40,7 @@ public class MicrometerEndpoint extends DefaultEndpoint { protected MeterRegistry registry; - @UriPath(description = "Type of metrics") + @UriPath(description = "Type of metrics", enums = "counter, distribution_summary, timer") @Metadata(required = true) protected final Meter.Type metricsType; @UriPath(description = "Name of metrics")
