This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 81fdda050d Minor documentation improvements for opentelemetry2
extension
81fdda050d is described below
commit 81fdda050d80a8c8873da9df4d88071b60919d88
Author: James Netherton <[email protected]>
AuthorDate: Thu Feb 5 11:51:09 2026 +0000
Minor documentation improvements for opentelemetry2 extension
---
docs/modules/ROOT/pages/reference/extensions/opentelemetry2.adoc | 4 ++--
extensions/opentelemetry2/runtime/src/main/doc/usage.adoc | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/opentelemetry2.adoc
b/docs/modules/ROOT/pages/reference/extensions/opentelemetry2.adoc
index 77a5f4da20..f3a4a12983 100644
--- a/docs/modules/ROOT/pages/reference/extensions/opentelemetry2.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/opentelemetry2.adoc
@@ -50,7 +50,7 @@ The extension automatically creates a Camel
`OpenTelemetryTracer` and binds it t
In order to send the captured traces to a tracing system, you need to
configure some properties within `application.properties` like those below.
-NOTE: this extension may eventually replace the `opentelemetry` extension.
You're invited to change the older extension usage with this one.
+NOTE: This extension addresses inconsistencies found in the original
`camel-quarkus-opentelemetry` extensions and offers a more robust
implementation.
[source,properties]
----
@@ -65,7 +65,7 @@ Route endpoints can be excluded from tracing by configuring a
property named `qu
[source,properties]
----
# Exclude all direct & netty-http endpoints from tracing
-quarkus.camel.opentelemetry.exclude-patterns=direct:*,netty-http:*
+quarkus.camel.opentelemetry2.exclude-patterns=direct:*,netty-http:*
----
NOTE: The use of the
https://opentelemetry.io/docs/zero-code/java/agent/[OpenTelemetry Agent] *is
not needed nor recommended*.
diff --git a/extensions/opentelemetry2/runtime/src/main/doc/usage.adoc
b/extensions/opentelemetry2/runtime/src/main/doc/usage.adoc
index 97077e0a13..e89534cc88 100644
--- a/extensions/opentelemetry2/runtime/src/main/doc/usage.adoc
+++ b/extensions/opentelemetry2/runtime/src/main/doc/usage.adoc
@@ -2,7 +2,7 @@ The extension automatically creates a Camel
`OpenTelemetryTracer` and binds it t
In order to send the captured traces to a tracing system, you need to
configure some properties within `application.properties` like those below.
-NOTE: this extension may eventually replace the `opentelemetry` extension.
You're invited to change the older extension usage with this one.
+NOTE: This extension addresses inconsistencies found in the original
`camel-quarkus-opentelemetry` extensions and offers a more robust
implementation.
[source,properties]
----
@@ -17,7 +17,7 @@ Route endpoints can be excluded from tracing by configuring a
property named `qu
[source,properties]
----
# Exclude all direct & netty-http endpoints from tracing
-quarkus.camel.opentelemetry.exclude-patterns=direct:*,netty-http:*
+quarkus.camel.opentelemetry2.exclude-patterns=direct:*,netty-http:*
----
NOTE: The use of the
https://opentelemetry.io/docs/zero-code/java/agent/[OpenTelemetry Agent] *is
not needed nor recommended*.