Skip to main content
OpenTelemetry provides a unified approach to collecting telemetry data from your Java applications. This page demonstrates how to configure OpenTelemetry in a Java app to send telemetry data to Axiom using the OpenTelemetry SDK.

Prerequisites

Create project

To create a Java project, run the Maven archetype command in the terminal:
This command creates a new project in a directory named MyProject with a standard directory structure.

Create core app

DiceRollerApp.java is the core of the sample app. It simulates rolling a dice and demonstrates the usage of OpenTelemetry for tracing. The app includes two methods: one for a simple dice roll and another that demonstrates the usage of span links to establish relationships between spans across different traces. Create the DiceRollerApp.java in the src/main/java/com/example directory with the following content:

Configure OpenTelemetry

OtelConfiguration.java sets up the OpenTelemetry SDK and configures the exporter to send data to Axiom. It initializes the tracer provider, sets up the Axiom exporter, and configures the resource attributes. Create the OtelConfiguration.java file in the src/main/java/com/example directory with the following content:
  • Replace API_TOKEN with the Axiom API token you have generated. For added security, store the API token in an environment variable.
  • Replace DATASET_NAME with the name of the Axiom dataset where you want to send data.

Configure project

The pom.xml file defines the project structure and dependencies for Maven. It includes the necessary OpenTelemetry libraries and configures the build process. Update the pom.xml file in the root of your project directory with the following content:

Run the instrumented app

To run your Java app with OpenTelemetry instrumentation, follow these steps:
  1. Clean the project and download dependencies:
  2. Compile the code:
  3. Package the app:
  4. Run the app:
The app executes the rollDice() and rollDiceWithLink() methods, generates telemetry data, and sends the data to Axiom.

Observe telemetry data in Axiom

As the app runs, it sends traces to Axiom. To view the traces:
  1. In Axiom, click the Stream tab.
  2. Click your dataset.
Axiom provides a dynamic dashboard for visualizing and analyzing your OpenTelemetry traces. This dashboard offers insights into the performance and behavior of your app. To view the dashboard:
  1. In Axiom, click the Dashboards tab.
  2. Look for the OpenTelemetry traces dashboard or create a new one.
  3. Customize the dashboard to show the event data and visualizations most relevant to the app.

Send data from an existing Java project

Manual instrumentation

Manual instrumentation gives fine-grained control over which parts of the app are traced and what information is included in the traces. It requires adding OpenTelemetry-specific code to the app.
1

Set up OpenTelemetry

Set up OpenTelemetry. Create a configuration class to initialize OpenTelemetry with necessary settings, exporters, and span processors.
2

Create spans

Spans represent units of work in the app. They have a start time and duration and can be nested.
Custom spans are manually managed to provide detailed insights into specific functions or methods within the app.
3

Annotate spans

Spans can be annotated with attributes and events to provide more context about the operation being performed.
4

Creating span links

Span links allow association of spans that aren’t in a parent-child relationship.

Automatic instrumentation

Automatic instrumentation simplifies adding telemetry to a Java app by automatically capturing data from supported libraries and frameworks.
1

Set up dependencies

Ensure all necessary OpenTelemetry libraries are included in your Maven pom.xml.
Dependencies include the OpenTelemetry SDK and instrumentation libraries that automatically capture data from common Java libraries.
2

Auto-instrument the app

Implement an initialization class to configure the OpenTelemetry SDK along with auto-instrumentation for frameworks used by the app.
Auto-instrumentation is initialized early in the app lifecycle to ensure all relevant activities are automatically captured.
3

Integrate and run

Reference

List of OpenTelemetry trace fields

List of imported libraries

The Java implementation of OpenTelemetry uses the following key libraries. io.opentelemetry:opentelemetry-api This package provides the core OpenTelemetry API for Java. It defines the interfaces and classes that developers use to instrument their apps manually. This includes the Tracer, Span, and Context classes, which are fundamental to creating and managing traces in your app. The API is designed to be stable and consistent, allowing developers to instrument their code without tying it to a specific implementation. io.opentelemetry:opentelemetry-sdk The opentelemetry-sdk package is the reference implementation of the OpenTelemetry API for Java. It provides the actual capability behind the API interfaces, including span creation, context propagation, and resource management. This SDK is highly configurable and extensible, allowing developers to customize how telemetry data is collected, processed, and exported. It’s the core component that brings OpenTelemetry to life in a Java app. io.opentelemetry:opentelemetry-exporter-otlp This package provides an exporter that sends telemetry data using the OpenTelemetry Protocol (OTLP). OTLP is the standard protocol for transmitting telemetry data in the OpenTelemetry ecosystem. This exporter allows Java applications to send their collected traces, metrics, and logs to any backend that supports OTLP, such as Axiom. The use of OTLP ensures broad compatibility and a standardized way of transmitting telemetry data across different systems and platforms. io.opentelemetry:opentelemetry-sdk-extension-autoconfigure This extension package provides auto-configuration capabilities for the OpenTelemetry SDK. It allows developers to configure the SDK using environment variables or system properties, making it easier to set up and deploy OpenTelemetry-instrumented applications in different environments. This is particularly useful for containerized applications or those running in cloud environments where configuration through environment variables is common. io.opentelemetry:opentelemetry-sdk-trace This package is part of the OpenTelemetry SDK and focuses specifically on tracing capability. It includes important classes like SdkTracerProvider and BatchSpanProcessor. The SdkTracerProvider is responsible for creating and managing tracers, while the BatchSpanProcessor efficiently processes and exports spans in batches, similar to its Node.js counterpart. This batching mechanism helps optimize the performance of trace data export in OpenTelemetry-instrumented Java applications. io.opentelemetry:opentelemetry-sdk-common This package provides common capability used across different parts of the OpenTelemetry SDK. It includes utilities for working with attributes, resources, and other shared concepts in OpenTelemetry. This package helps ensure consistency across the SDK and simplifies the implementation of cross-cutting concerns in telemetry data collection and processing.