Application Performance Monitoring supports
OpenTelemetry and open-source tracing tools such as Jaeger and Zipkin.
Application Performance Monitoring (APM) can ingest
OpenTelemetry (OTLP) spans and metrics, as well as Zipkin and Jaeger
spans.
APM also supports context propagation between the APM agents and open-source
tracers.
For trace sampling decisions, which ensure that traces and spans are
sampled to keep the trace data small, but representative, APM complies with
any sampling decision made by the open-source tracers if the root span is
generated by the open-source tracer. If a trace involves the APM Browser
Agent, every trace which originates in the Browser Agent is sampled.
If you have an existing distributed tracing system setup and want to
switch to Application Performance Monitoring, you
must perform the following tasks to ensure that the data collected using
open-source tracers flows into Application Performance Monitoring:
Configure context propagation to get the trace
context information propagated in the appropriate format,
and add it to one or more HTTP request headers.
Configure the open-source tracers to report spans
in the accepted format to Application Performance Monitoring (OpenTelemetry Protocol
and JSON-encoded Zipkin v2 are supported).
Configure the open-source tracers to connect to and
send trace data to the APM collector URL.
The following sections explain how to configure open-source
data sources to send data to APM, configure context propagation if
applicable, and more:
Here's information on configuring the OpenTelemetry (OTEL) data sources (such
as instrumentation libraries and OpenTelemetry Collector) to upload monitoring data (metrics
and traces) to Application Performance Monitoring.
Use the OTEL-Compatible
Endpoint
To use OpenTelemetry to upload data to Application Performance Monitoring, specify the following as the OTEL data upload
endpoint:
Note
Depending on the data source type,
the OTEL data upload endpoint can be specified in a configuration file, environment
variable, code or even the user interface.
Set the APM data upload endpoint to upload traces to Application Performance Monitoring.
Traces can be authenticated with a public or private data
key.
For traces authenticated with public data key, add the
following:
Metrics are always authenticated with private data key.
The above APM data upload endpoints provide the OpenTelemetry standard
to report the data. These calls do not accept any query parameters. Data key are
supplied as a header like the following: “Authorization”: “dataKey
aaaabbbbccc”
Note
Some OpenTelemetry clients automatically add the /v1/traces
or /v1/metrics suffix while others don't. If the suffix is
not added, it must be specified as part of the URL in the configuration. APM
supports JSON and Protocol Buffers (protobuf) encoded data. They should be
explicitly specified in the Content-Type header, but this
is usually done automatically by the OTEL library/collector.
Here's information on the changes that must be made to the code of a Java
application that uses the Jaeger client for distributed tracing, and use it to upload traces
to Application Performance Monitoring.
To use the Jaeger tracer to upload traces from a Java application to Application Performance Monitoring, you must configure the
Jaeger Java client for Zipkin compatibility (report in Zipkin v2 format) and add the Application Performance Monitoring collector URL. To do so,
you must make the following changes to your service's code:
Along with the required Jaeger client dependencies, add the following
dependencies to the pom.xml
file.
Use the ZipkinV2Reporter to adapt a Zipkin 2 reporter
to the Jaeger reporter interface and convert Jaeger spans to the JSON-encoded Zipkin
v2 format. Ensure that you've specified the Application Performance Monitoring collector URL to upload spans to Application Performance Monitoring, and the name of your
service or
application.
Register B3TextMapCodec to use B3 propagation, which
is a specification for the b3 header. These headers are used for
trace context propagation across service
boundaries.
Note that if the Jaeger tracer is created using environment
configuration (Configuration.fromEnv()) , setting the
JAEGER_PROPAGATION environment variable to
b3c sets the Zipkin (B3) context propagation mode without
code changes.
Configure Zipkin Data
Sources 🔗
Here's information on the changes that must be made to the code of a Node.js
application that uses the Zipkin client for distributed tracing, and use it to upload traces
to Application Performance Monitoring.
To do so, make the following changes to the Zipkin tracer initialization code:
Ensure that you've made the necessary changes to report spans in the
JSON-encoded Zipkin v2 format.
For information about the Zipkin v2
format, see Zipkin 2.
Add the Application Performance Monitoring
collector URL, to upload spans to Application Performance Monitoring, and the name of your service or application.
Disable the Zipkin "span joining" feature, if it's enabled. OpenTracing
specification does not allow Span ID sharing between different spans within the same
trace and this feature must be disabled.
Node.js Example
Here's a sample of the Zipkin tracer initialization code, and the changes
detailed in the procedure are in bold:
const {
Tracer,
BatchRecorder,
jsonEncoder: {JSON_V2}} = require('zipkin');
const CLSContext = require('zipkin-context-cls');
const {HttpLogger} = require('zipkin-transport-http');
// Setup the tracer
const tracer = new Tracer({
ctxImpl: new CLSContext('zipkin'), // implicit in-process context
recorder: new BatchRecorder({
logger: new HttpLogger({
endpoint: '<Application Performance Monitoring collector URL>', //Span collection endpoint URL setting
jsonEncoder: JSON_V2 //Span format and encoding setting
})
}), // batched http recorder
localServiceName: '<service-name>', // name of the application/servicesupportsJoin: false //Span join disable setting
});
APM Collector URL Format 🔗
The Application Performance Monitoring collector URL is required when configuring open-source tracers to communicate with Application Performance Monitoring service. This topic provides details about the APM Collector URL format.
The Application Performance Monitoring collector URL has the following format:
In some cases, the Zipkin configured URL may need to be split into the base URL and the relative path. For instance, applications that use Spring Sleuth require the above URL to be set as like the following:
The observationType can be
public-span,
private-span or
metric.
The dataFormat parameter should be
otlp-metric or
otlp-span depending on the
data.
The dataFormatVersion parameter
should be 1.
APM and Open Source
Interoperability 🔗
Configure context propagation to get the trace context information propagated
in the appropriate format, and add it to one or more HTTP request headers. The trace context
enables the correlation of spans that come from different microservices, but belong to the
same transaction (trace) and are identified by a common Trace ID.
APM Agent/Tracer
The APM Java Agent/Tracer can be configured to work with other OpenTracing
tracers (such as Jaeger and Zipkin) in order to form a complete trace.
When a HTTP call occurs, the APM Java Agent/Tracer will attempt to add HTTP
headers to the call which can then be read on the other end to help connect spans
together.
You can change this format using the com.oracle.apm.agent.tracer.propagation.type property from the AgentConfig.properties file located under the oracle-apm-agent\config directory.
You can utilize the following propagation types by setting the property to
the name:
Zipkin: APM uses the Zipkin format (B3) to propagate trace
context so the Zipkin tracer does not require additional configuration.
Jaeger: You can either configure Jaeger to consume and propagate
trace context in the Zipkin format (B3), or configure the APM Java Agent to
use Jaeger propagation context by setting the
com.oracle.apm.tracer.propagation.type property.