OpenTelemetry

Elevate, May 20-22-2025, Miami Beach, Florida

Monitor and observe your SDK with OpenTelemetry.

Java SDK

Prerequisites

Include OpenTelemetry monitoring in the Java SDK

The OpenTelemetry agent supports the CompletableFutures and HTTP clients used by the Java SDK, so you can trace every API call with OpenTelemetry without extra configuration in the SDK Client.
The commercetools-monitoring-opentelemetry module includes a telemetry middleware and a serializer that adds the following metrics:
Metric nameDescriptionUnitAttributes
commercetools.client.total_requestsNumber of requests made by the SDK.Counthttp.response.status_code
http.request.method
server.address
server.port
commercetools.client.error_requestsNumber of requests made by the SDK with an HTTP error response (status code between 400 and 599).Counthttp.response.status_code
http.request.method
server.address
server.port
commercetools.client.durationDuration of the request to commercetools Composable Commerce.Millisecondshttp.response.status_code
http.request.method
server.address
server.port
commercetools.json.serializationDuration of the JSON serialization of the response from Composable Commerce.Millisecondsresponse.body.type
commercetools.json.deserializationDuration of the JSON deserialization of the request to Composable Commerce.Millisecondsrequest.body.type
Create a Java SDK client with telemetry middlewarejava
ApiRootBuilder
  .of()
  .defaultClient(credentials())
  .withSerializer(
    new OpenTelemetryResponseSerializer(
      ResponseSerializer.of(),
      GlobalOpenTelemetry.get()
    )
  )
  .withTelemetryMiddleware(
    new OpenTelemetryMiddleware(GlobalOpenTelemetry.get())
  )
  .build(projectKey);

The corresponding metric is displayed as follows in Prometheus:

Prometheus metrics

TypeScript SDK

Prerequisites

The TypeScript SDK uses the @commercetools/ts-sdk-apm package and the withTelemetryMiddleware() middleware builder method to integrate with New Relic and OpenTelemetry. This setup allows for the collection and uploading of metrics and trace data to New Relic, enhancing monitoring capabilities.

PHP SDK

Prerequisites

Include OpenTelemetry monitoring in the PHP SDK

The PHP SDK is fully compatible with OpenTelemetry for tracing async methods and HTTP client communications without additional configuration.

The Symfony demo app shows how to add OpenTelemetry as a collector in the PHP SDK by using Docker and then view the results in the New Relic UI.

.NET SDK

Prerequisites

Include OpenTelemetry monitoring in the .NET SDK

The .NET SDK is fully compatible with OpenTelemetry for tracing async methods and HTTP client communications without additional configuration.

The example Me Endpoint Checkout App is preconfigured to export traces and metrics to the command-line. By using the application config file, you can export them to an OpenTelemetry Protocol (OTLP) endpoint.

Use the OpenTelemetry collector

Traces in the Jaegar UI Trace tags in Jaegar

Export to third-party observability tools

New Relic

To export to New Relic, do the following:

  1. Add your New Relic license key to the .env file.
  2. Uncomment the New Relic command in the docker-compose.yml file.

Dynatrace

To export to Dynatrace, do the following:

  1. Add your Dynatrace OTLP endpoint and API token to the .env file.
  2. Uncomment the Dynatrace command in the docker-compose.yml file.

Datadog

To export to Datadog, do the following:

  1. Add DATADOG_API_KEY to the .env file.
  2. Update the DATADOG_SITE variable if you are not using the EU1 Datadog site.
  3. Uncomment the Datadog command in the docker-compose.yml file.