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 7c51123bf5a CAMEL-19193: Add to 3.21 upgrade guide about metrics
renamed
7c51123bf5a is described below
commit 7c51123bf5a882a9e5869b7e634817a1a1ecb5f9
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Sep 22 11:42:12 2023 +0200
CAMEL-19193: Add to 3.21 upgrade guide about metrics renamed
---
.../ROOT/pages/camel-3x-upgrade-guide-3_21.adoc | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
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 3104128f0dc..36cc5bd79cb 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
@@ -49,6 +49,25 @@ one of each out of the box.
The option `camel.main.routesReloadRestartDuration` has changed its default
value from `true` to `false`.
+=== camel-micrometer
+
+The metrics has been renamed to follow Micrometer naming convention
https://micrometer.io/docs/concepts#_naming_meters[Naming Meters].
+
+|===
+| Old Name | New Name
+| CamelExchangeEventNotifier | camel.exchange.event.notifier
+| CamelExchangesFailed | camel.exchanges.failed
+| CamelExchangesFailuresHandled | camel.exchanges.failures.handled
+| CamelExchangesInflight | camel.exchanges.external.redeliveries
+| CamelExchangesSucceeded | camel.exchanges.succeeded
+| CamelExchangesTotal | camel.exchanges.total
+| CamelMessageHistory | camel.message.history
+| CamelRoutePolicy | camel.route.policy
+| CamelRoutePolicyLongTask | camel.route.policy.long.task
+| CamelRoutesAdded | camel.routes.added
+| CamelRoutesRunning | camel.routes.running
+|===
+
=== camel-http-common
The API in `org.apache.camel.http.common.HttpBinding` has changed slightly to
be more reusable.