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 addf15d0a26 CAMEL-19193 - Follow Micrometer meter naming conventions
addf15d0a26 is described below

commit addf15d0a26f9ae1b069522163dd79da06737893
Author: Claus Ibsen <[email protected]>
AuthorDate: Sun Mar 26 18:40:15 2023 +0200

    CAMEL-19193 - Follow Micrometer meter naming conventions
---
 .../modules/ROOT/pages/camel-4-migration-guide.adoc    | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

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 69052560a69..355fc6c3c31 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
@@ -179,6 +179,24 @@ The API in `org.apache.camel.http.common.HttpBinding` has 
changed slightly to be
 The `parseBody` method now takes in `HttpServletRequest` as input parameter. 
And all `HttpMessage`
 has been changed to generic `Message` types.
 
+=== 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 Spring Boot
 

Reply via email to