| // Do not edit directly! |
| // This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page |
| [id="extensions-opentelemetry"] |
| = OpenTelemetry |
| :linkattrs: |
| :cq-artifact-id: camel-quarkus-opentelemetry |
| :cq-native-supported: true |
| :cq-status: Stable |
| :cq-status-deprecation: Stable |
| :cq-description: Distributed tracing using OpenTelemetry |
| :cq-deprecated: false |
| :cq-jvm-since: 2.1.0 |
| :cq-native-since: 2.1.0 |
| |
| ifeval::[{doc-show-badges} == true] |
| [.badges] |
| [.badge-key]##JVM since##[.badge-supported]##2.1.0## [.badge-key]##Native since##[.badge-supported]##2.1.0## |
| endif::[] |
| |
| Distributed tracing using OpenTelemetry |
| |
| [id="extensions-opentelemetry-whats-inside"] |
| == What's inside |
| |
| * xref:{cq-camel-components}:others:opentelemetry.adoc[OpenTelemetry] |
| |
| Please refer to the above link for usage and configuration details. |
| |
| [id="extensions-opentelemetry-maven-coordinates"] |
| == Maven coordinates |
| |
| https://{link-quarkus-code-generator}/?extension-search=camel-quarkus-opentelemetry[Create a new project with this extension on {link-quarkus-code-generator}, window="_blank"] |
| |
| Or add the coordinates to your existing project: |
| |
| [source,xml] |
| ---- |
| <dependency> |
| <groupId>org.apache.camel.quarkus</groupId> |
| <artifactId>camel-quarkus-opentelemetry</artifactId> |
| </dependency> |
| ---- |
| ifeval::[{doc-show-user-guide-link} == true] |
| Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications. |
| endif::[] |
| |
| [id="extensions-opentelemetry-usage"] |
| == Usage |
| The extension automatically creates a Camel `OpenTelemetryTracer` and binds it to the Camel registry. |
| |
| In order to send the captured traces to a tracing system, you need to configure some properties within `application.properties` like those below. |
| |
| [source,properties] |
| ---- |
| # Identifier for the origin of spans created by the application |
| quarkus.application.name=my-camel-application |
| |
| # OTLP exporter endpoint |
| quarkus.opentelemetry.tracer.exporter.otlp.endpoint=http://localhost:4317 |
| ---- |
| |
| Refer to the https://quarkus.io/guides/opentelemetry[Quarkus OpenTelemetry guide] for a full list of configuration options. |
| |
| Route endpoints can be excluded from tracing by configuring a property named `quarkus.camel.opentelemetry.exclude-patterns` in `application.properties`. For example: |
| |
| [source,properties] |
| ---- |
| # Exclude all direct & netty-http endpoints from tracing |
| quarkus.camel.opentelemetry.exclude-patterns=direct:*,netty-http:* |
| ---- |
| |
| [id="extensions-opentelemetry-usage-exporters"] |
| === Exporters |
| |
| Quarkus OpenTelemetry defaults to the standard OTLP exporter defined in OpenTelemetry. |
| Additional exporters will be available in the Quarkiverse https://github.com/quarkiverse/quarkus-opentelemetry-exporter/blob/main/README.md[quarkus-opentelemetry-exporter] project. |
| |
| [id="extensions-opentelemetry-usage-tracing-cdi-bean-method-execution"] |
| === Tracing CDI bean method execution |
| |
| When instrumenting the execution of CDI bean methods from Camel routes, you should annotate such methods with `io.opentelemetry.extension.annotations.WithSpan`. Methods annotated with `@WithSpan` will create a new Span and establish any required relationships with the current Trace context. |
| |
| For example, to instrument a CDI bean from a Camel route, first ensure the appropriate methods are annotated with `@WithTrace`. |
| |
| [source,java] |
| ---- |
| @ApplicationScoped |
| @Named("myBean") |
| public class MyBean { |
| @WithSpan |
| public String greet() { |
| return "Hello World!"; |
| } |
| } |
| ---- |
| |
| Next, use the bean in your Camel route. |
| |
| IMPORTANT: To ensure that the sequence of recorded spans is correct, you must use the full `to("bean:")` endpoint URI and not the shortened `.bean()` EIP DSL method. |
| |
| [source,java] |
| ---- |
| public class MyRoutes extends RouteBuilder { |
| @Override |
| public void configure() throws Exception { |
| from("direct:executeBean") |
| .to("bean:myBean?method=greet"); |
| } |
| } |
| ---- |
| |
| There is more information about CDI instrumentation in the https://quarkus.io/guides/opentelemetry#cdi[Quarkus OpenTelemetry guide]. |
| |
| |
| [id="extensions-opentelemetry-additional-camel-quarkus-configuration"] |
| == Additional Camel Quarkus configuration |
| |
| [width="100%",cols="80,5,15",options="header"] |
| |=== |
| | Configuration property | Type | Default |
| |
| |
| | [[quarkus.camel.opentelemetry.encoding]]`link:#quarkus.camel.opentelemetry.encoding[quarkus.camel.opentelemetry.encoding]` |
| |
| Sets whether header names need to be encoded. Can be useful in situations where OpenTelemetry propagators potentially set header name values in formats that are not compatible with the target system. E.g for JMS where the specification mandates header names are valid Java identifiers. |
| | `boolean` |
| | `false` |
| |
| | [[quarkus.camel.opentelemetry.exclude-patterns]]`link:#quarkus.camel.opentelemetry.exclude-patterns[quarkus.camel.opentelemetry.exclude-patterns]` |
| |
| Sets whether to disable tracing for endpoint URIs or Processor ids that match the given comma separated patterns. The pattern can take the following forms: |
| |
| |
| |
| 1. An exact match on the endpoint URI. E.g platform-http:/some/path |
| |
| |
| |
| 2. A wildcard match. E.g platform-http:++*++ |
| |
| |
| |
| 3. A regular expression matching the endpoint URI. E.g platform-http:/prefix/.++*++ |
| | `string` |
| | |
| |
| | [[quarkus.camel.opentelemetry.trace-processors]]`link:#quarkus.camel.opentelemetry.trace-processors[quarkus.camel.opentelemetry.trace-processors]` |
| |
| Sets whether to create new OpenTelemetry spans for each Camel Processor. Use the excludePatterns property to filter out Processors. |
| | `boolean` |
| | `false` |
| |=== |
| |
| [.configuration-legend] |
| {doc-link-icon-lock}[title=Fixed at build time] Configuration property fixed at build time. All other configuration properties are overridable at runtime. |
| |