OpenTelemetry Metrics
Since Camel 4.17
Only producer is supported
The OpenTelemetry Metrics component allows the collection of various metrics directly from Camel routes. Supported metric types are counter, summary, and timer.
To get started, Maven users need to add the following dependency to their pom.xml for this component:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-opentelemetry-metrics</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency> Configuring Options
Camel components are configured on two separate levels:
-
component level
-
endpoint level
Configuring Component Options
At the component level, you set general and shared configurations that are, then, inherited by the endpoints. It is the highest configuration level.
For example, a component may have security settings, credentials for authentication, urls for network connection and so forth.
Some components only have a few options, and others may have many. Because components typically have pre-configured defaults that are commonly used, then you may often only need to configure a few options on a component; or none at all.
You can configure components using:
-
the Component DSL.
-
in a configuration file (
application.properties,*.yamlfiles, etc). -
directly in the Java code.
Configuring Endpoint Options
You usually spend more time setting up endpoints because they have many options. These options help you customize what you want the endpoint to do. The options are also categorized into whether the endpoint is used as a consumer (from), as a producer (to), or both.
Configuring endpoints is most often done directly in the endpoint URI as path and query parameters. You can also use the Endpoint DSL and DataFormat DSL as a type safe way of configuring endpoints and data formats in Java.
A good practice when configuring options is to use Property Placeholders.
Property placeholders provide a few benefits:
-
They help prevent using hardcoded urls, port numbers, sensitive information, and other settings.
-
They allow externalizing the configuration from the code.
-
They help the code to become more flexible and reusable.
The following two sections list all the options, firstly for the component followed by the endpoint.
Component Options
The OpenTelemetry Metrics component supports 3 options, which are listed below.
| Name | Description | Default | Type |
|---|---|---|---|
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | boolean | |
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. | true | boolean | |
To use a custom configured Meter. | Meter |
Endpoint Options
The OpenTelemetry Metrics endpoint is configured using URI syntax:
opentelemetry-metrics:metricType:metricName
With the following path and query parameters:
Query Parameters (8 parameters)
| Name | Description | Default | Type |
|---|---|---|---|
Action expression when using timer type. Enum values:
| String | ||
metric attributes. This is a multi-value option with prefix: attributes. | Map | ||
Decrement value expression when using counter type. | String | ||
Increment value expression when using counter type. | String | ||
Description of metrics. | String | ||
The time unit when using the timer type. Enum values:
| MILLISECONDS | TimeUnit | |
Value expression when using histogram type. | String | ||
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | boolean |
Message Headers
The OpenTelemetry Metrics component supports 7 message header(s), which is/are listed below:
| Name | Description | Default | Type |
|---|---|---|---|
CamelMetricsTimerAction (producer) Constant: | Override timer action in URI. Enum values:
| OpenTelemetryTimerAction | |
CamelMetricsHistogramValue (producer) Constant: | Override histogram value in URI. | long | |
CamelMetricsCounterDecrement (producer) Constant: | Override decrement value in URI. | Double | |
CamelMetricsCounterIncrement (producer) Constant: | Override increment value in URI. | Double | |
| Constant: | Override name value in URI. | String | |
CamelMetricsDescription (producer) Constant: | Override description value in URI. | String | |
CamelMetricsAttributes (producer) Constant: | To augment meter attributes defined as URI parameters. | Attributes |
Usage
Opetntelemetry Meter
OpenTelemetry meter configuration involves setting up a MeterProvider that is responsible for creating Meter instances. These Meters are then used to create instruments like counters, gauges or histograms.
How it works
OpenTelemetry metrics are collected by instrumented applications that record measurements using instruments like counters and gauges. These measurements are then processed by an OpenTelemetry SDK, which aggregates and batches them before exporting them, either directly or through the OpenTelemetry Collector. See SdkMeterProvider documentation for details on how to configure this.
Usage of producers
Each meter has a type and name. Supported types are counter, distribution summary, and timer. If no type is provided, then a counter, is used by default.
The meter name is a string that is evaluated as a Simple expression and can also be overridden using the CamelMetricsName header allowing the selection of the meter that depends on the exchange data.
The optional attributes URI parameter is a comma-separated string consisting of key=value expressions. Both key and value are strings that are evaluated as Simple expressions.
For example, the URI parameter attributes.X=${header.Y} would assign the current value of header Y to the key X.
Headers
The meter name defined in the URI can be overridden by populating a header with name CamelMetricsName. The meter attributes defined as URI parameters can be augmented by populating a header with name CamelMetricsAttributes.
For example
from("direct:in")
.setHeader(OpenTelemetryConstants.HEADER_METRIC_NAME, constant("new.name"))
.setHeader(OpenTelemetryConstants.HEADER_METRIC_ATTRIBUTES, constant(Attributes.of(AttributeKey.stringKey("dynamic-key"), "dynamic-value")))
.to("opentelemetry-metrics:counter:name.not.used?attributes.key=value")
.to("direct:out"); will update a counter with name new.name (instead of name.not.used) using the attribute dynamic-key with value dynamic-value in addition to the attribute key with value value.
All Metrics specific headers are removed from the message once the OpenTelemetry endpoint finishes processing the exchange. While processing the exchange the OpenTelemetry endpoint will catch all exceptions and write log entry using level warn.
Counter
opentelemetry-metrics:counter:name[?options]
Options
| Name | Default | Description |
|---|---|---|
increment | - | Long value to add to the counter |
decrement | - | Long value to subtract from the counter |
If neither increment or decrement is defined then value of the counter will be incremented by one. If increment and decrement are both defined only the increment operation is called.
// update counter 'simple.counter' by 7
from("direct:in")
.to("opentelemetry-metrics:counter:simple.counter?increment=7")
.to("direct:out"); // increment counter 'simple.counter' by 1
from("direct:in")
.to("opentelemetry-metrics:counter:simple.counter")
.to("direct:out"); Both increment and decrement values are evaluated as Simple expressions with a Long result. For instance, if header X contains a value that evaluates to 3, the counter with name simple.counter is decremented by 3:
// decrement counter 'simple.counter' by 3
from("direct:in")
.to("opentelemetry-metrics:counter:simple.counter?decrement=${header.X}")
.to("direct:out"); Headers
Message headers can be used to override increment and decrement values specified in the OpenTelemetry endpoint URI.
| Name | Description | Expected type |
|---|---|---|
CamelMetricsCounterIncrement | Override increment value in URI | Long |
CamelMetricsCounterDecrement | Override decrement value in URI | Long |
// update counter 'simple.counter' by 417
from("direct:in")
.setHeader(OpenTelemetryConstants.HEADER_COUNTER_INCREMENT, constant(417))
.to("opentelemetry-metrics:counter:simple.counter?increment=7")
.to("direct:out"); // updates counter using simple language to evaluate 'body.length'
from("direct:in")
.setHeader(OpenTelemetryConstants.HEADER_COUNTER_INCREMENT, simple("${body.length}"))
.to("opentelemetry-metrics:counter:body.len")
.to("direct:out"); Distribution Summary
opentelemetry-metrics:summary:metricname[?options]
Options
| Name | Default | Description |
|---|---|---|
value | - | Value to use in histogram |
If value is not set then nothing is added to histogram and warning is logged.
// adds value 9923 to 'simple.histogram'
from("direct:in")
.to("opentelemetry-metrics:summary:simple.histogram?value=9923")
.to("direct:out"); // nothing is added to 'simple.histogram', and a warning is logged
from("direct:in")
.to("opentelemetry-metrics:summary:simple.histogram")
.to("direct:out"); The histogram value is evaluated as a Simple expressions with a Long result. For example, if header X contains a value that evaluates to 3, and this value is registered with the simple.histogram:
from("direct:in")
.to("opentelemetry-metrics:summary:simple.histogram?value=${header.X}")
.to("direct:out"); Headers
A specific Message header can be used to override the value specified in the OpenTelemetry endpoint URI.
| Name | Description | Expected type |
|---|---|---|
CamelMetricsHistogramValue | Override histogram value in URI | Long |
// adds value 992.0 to 'simple.histogram'
from("direct:in")
.setHeader(OpenTelemetryConstants.HEADER_HISTOGRAM_VALUE, constant(992))
.to("opentelemetry-metrics:summary:simple.histogram?value=700")
.to("direct:out") Timer
opentelemetry-metrics:timer:metricname[?options]
Options
| Name | Default | Description |
|---|---|---|
action | - | start or stop |
If no action or an invalid value is provided then a warning is logged without any timer update.
// measure time spent in route "direct:calculate"
from("direct:in")
.to("opentelemetry-metrics:timer:simple.timer?action=start")
.to("direct:calculate")
.to("opentelemetry-metrics:timer:simple.timer?action=stop"); The timer action is evaluated as a Simple expression returning a result of type OpenTelemetryTimerAction. TimerTask objects are stored as Exchange properties between different Metrics component calls.
Headers
A specific Message header can be used to override action value specified in the OpenTelemetry endpoint URI.
| Name | Description | Expected type |
|---|---|---|
CamelMetricsTimerAction | Override timer action in URI |
|
// sets timer action using header
from("direct:in")
.setHeader(OpenTelemetryConstants.HEADER_TIMER_ACTION, OpenTelemetryTimerAction.start)
.to("opentelemetry-metrics:timer:simple.timer")
.to("direct:out"); OpenTelemetry Event Notification
There are event notifiers available for OpenTelemetry to capture Camel route and exchange events. The Route Event Notifier counts the number of added and running routes, while the Exchange Event Notifier times exchanges from their creation to their completion.
Camel Route Event Notifier
A Route event notifier can be added to the CamelContext as follows:
camelContext.getManagementStrategy().addEventNotifier(new OpenTelemetryRouteEventNotifier()); Camel specific metrics that are available:
| Default Name | Type | Description |
|---|---|---|
camel.routes.added | LongUpDownCounter | Number of routes in total |
camel.routes.reloaded | LongCounter | Number of routes that have been reloaded |
camel.routes.running | LongUpDownCounter | Number of routes currently running |
The following options are supported:
| Name | Default | Description |
|---|---|---|
namingStrategy | OpenTelemetryRouteEventNotifierNamingStrategy.DEFAULT | The strategy to use for overriding default metric names. |
Camel Exchange Event Notifier
An Exchange event notifier can be added to the CamelContext as follows:
camelContext.getManagementStrategy().addEventNotifier(new OpenTelemetryExchangeEventNotifier()); Camel specific metrics that are available via the OpenTelemetryExchangeEventNotifier:
| Default Name | Type | Description |
|---|---|---|
camel.exchange.sent | LongHistogram | Time taken to send a message to the endpoint; Default time unit is milliseconds |
camel.exchange.elapsed | LongHistogram | Time taken to complete exchange; Default time unit is milliseconds |
camel.exchanges.last.time | ObservableLongGauge | Last exchange processed time since the Unix epoch; ; Default time unit is milliseconds |
camel.exchanges.inflight | ObservableLongGauge | Number of in flight messages per route |
The following options are supported:
| Name | Default | Description |
|---|---|---|
ignoreExchanges | false | A predicate allowing certain exchanges to be ignored from metrics capture. |
namingStrategy | OpenTelemetryExchangeEventNotifierNamingStrategy.DEFAULT | The strategy to use for overriding default metric names. |
timeUnit | TimeUnit.MILLISECONDS | The time unit to use for exchange 'sent' and 'elapsed' metrics. |
lastExchangeTimeUnit | TimeUnit.MILLISECONDS | The time unit to use for 'last time' metric. |
baseEndpointURI | true | Whether to use static or dynamic values for Endpoint Name attributes in captured metrics. By default, static values are used. When using dynamic attributes a dynamic to (toD) can compute many different endpoint URIs leading to high cardinality in metrics. |
OpenTelemetry Route Policy
Route policy metrics can be enabled by adding the OpenTelemetryRoutePolicyFactory to the CamelContext:
context.addRoutePolicyFactory(new OpenTelemetryRoutePolicyFactory()); | You can define a dedicated |
Camel specific metrics that are available via the OpenTelemetryRoutePolicy:
| Default Name | Type | Description |
|---|---|---|
camel.route.policy | LongHistogram | Time taken to complete processing of exchanges for a route |
camel.exchanges.succeeded | LongCounter | Number of successfully completed exchanges |
camel.exchanges.failed | LongCounter | Number of failed exchanges |
camel.exchanges.total | LongCounter | Total number of exchanges processed |
camel.exchanges.external.redeliveries | LongCounter | Number of externally initiated redeliveries |
camel.exchanges.failures.handled | LongCounter | Number of failures handled |
camel.route.policy.tasks.active | ObservableLongUpDownCounter | Number of tasks currently active |
camel.route.policy.tasks.duration | ObservableLongUpDownCounter | Total duration of all active tasks |
The following options are supported:
| Name | Default | Description |
|---|---|---|
namingStrategy | OpenTelemetryRoutePolicyNamingStrategy.DEFAULT | The strategy to use for overriding default metric names. |
policyConfiguration | - | Enables individual metrics to be enabled or disabled. |
timeUnit | TimeUnit.MILLISECONDS | The time unit for measuring the route policy timer. |
longTaskTimeUnit | TimeUnit.MILLISECONDS | The time unit for the 'long task' timer that measures total duration of all active tasks. |
OpenTelemetry Message History Factory
OpenTelemetryMessageHistoryFactory allows the capture of Message History performance statistics while routing messages. It works by using an OpenTelemetry Timer to record the time taken to process each node in all routes.
The OpenTelemetryMessageHistoryFactory can be added to the CamelContext:
context.setMessageHistoryFactory(new OpenTelemetryMessageHistoryFactory()); OpenTelemetryMessageHistory provides the following Camel specific metric:
| Default Name | Type | Description |
|---|---|---|
camel.message.history | LongHistogram | Time taken for a node to process the message |
The following options are supported on the OpenTelemetryMessageHistoryFactory:
| Name | Default | Description |
|---|---|---|
namingStrategy | OpenTelemetryHistoryNamingStrategy.DEFAULT | The strategy to use for overriding the default metric name. |
nodePattern | A pattern to filter which nodes to capture metrics for. By default, all nodes are included | |
timeUnit | TimeUnit.MILLISECONDS | The time unit for recording the processing time. |
OpenTelemetry Configuration
Java Agent
Your application will require a Java agent in order to get the metrics generated by the Camel application.
Download the latest version.
This package includes the instrumentation agent as well as instrumentation for all supported libraries and all available data exporters. The package provides a completely automatic, out-of-the-box experience. Enable the instrumentation agent using the -javaagent flag to the JVM.
java -javaagent:path/to/opentelemetry-javaagent.jar \
-Dotel. ... \
-jar myapp.jar By default, the OpenTelemetry Java agent uses OTLP exporter configured to send data to OpenTelemetry collector at http://localhost:4318.
Configuration parameters are passed as Java system properties (-D flags) or as environment variables. See the configuration documentation for the full list of configuration items. For example:
java -javaagent:path/to/opentelemetry-javaagent.jar \
-Dotel.service.name=your-service-name \
-Dotel.metrics.exporter=otlp \
-jar myapp.jar Using Camel OpenTelemetry Metrics with Spring Boot
When you use camel-opentelemetry-metrics-starter with Spring Boot, then Spring Boot autoconfiguration will automatically enable metrics capture if a io.opentelemetry.api.metrics.Meter is available.
See the following table for options to specify what metrics to capture, or to turn it off.
Spring Boot Auto-Configuration
When using opentelemetry-metrics with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-opentelemetry-metrics-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency> The component supports 11 options, which are listed below.