This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new eefc8e471ba 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.
eefc8e471ba is described below
commit eefc8e471ba78599a8abb805d2685a4e0235bbb4
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Mar 18 12:05:01 2023 +0100
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.
---
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc | 5 +++++
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc | 5 +++++
docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc | 5 +++++
3 files changed, 15 insertions(+)
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
index 7c4c4400958..ae1c7a24286 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
@@ -10,6 +10,11 @@ The option `backlogTracing=true` now automatic enabled the
tracer on startup. Th
was _surprisingly_ that the tracer was only made available, and had to be
manually enabled afterwards.
The old behavior can be archived by setting `backlogTracingStandby=true`.
+=== camel-micrometer-starter
+
+Camel no longer include `uri` as tag due to potential too many tags generated
due to URI with dynamic values.
+This can be enabled again by setting `camel.metrics.uriTagEnabled=true`.
+
== Upgrading Camel 3.20.1 to 3.20.2
No changes
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc
index 20627825900..274bab7f21e 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc
@@ -106,6 +106,11 @@ The `certificatePath` parameter can now be specified as
resource: for user point
The deprecated option `componentName` was removed. Please use either
`producerComponentName` or `consumerComponentName`.
+=== camel-micrometer-starter
+
+Camel no longer include `uri` as tag due to potential too many tags generated
due to URI with dynamic values.
+This can be enabled again by setting `camel.metrics.uriTagEnabled=true`.
+
=== Deprecated Components
The following components that had been marked as deprecated, were removed in
this release:
diff --git a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
index cb5fd0b7e2b..58e67991231 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
@@ -164,3 +164,8 @@ There is also a noticeable behavior change regarding the
`socketTimeout`, it is
Finally, the options `connectTimeout` and `socketTimeout` along with any
parameters included into `SocketConfig` and `ConnectionConfig`, need to be
prefixed by `httpConnection.`,
the rest of the parameters including those defined into `HttpClientBuilder`
and `RequestConfig` still need to be prefixed by `httpClient.` like before.
+
+=== camel-micrometer-starter
+
+Camel no longer include `uri` as tag due to potential too many tags generated
due to URI with dynamic values.
+This can be enabled again by setting `camel.metrics.uriTagEnabled=true`.