CAMEL-19136: camel-micrometer-starter - Turn of metrics with uri tag by default as it can lead to too many tags due to dynamic values.
diff --git a/rest-openapi/src/main/resources/application.properties b/rest-openapi/src/main/resources/application.properties
index 5923779..69959a9 100644
--- a/rest-openapi/src/main/resources/application.properties
+++ b/rest-openapi/src/main/resources/application.properties
@@ -47,5 +47,7 @@
 management.endpoints.web.exposure.include=mappings,metrics,shutdown,prometheus
 
 # camel metrics can be configured
-# beware if you have a lot of dynamic uris then turn this off
 camel.metrics.uriTagEnabled = true
+# the uri tag is by default static (/users/{id}), you can turn on dynamic that uses the actual value (users/1, users/2 etc)
+# beware if you have a lot of dynamic uris then this can lead to too many tags issue in prometheus
+# camel.metrics.uriTagDynamic = true