New Relic

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

Monitor and observe your SDK with New Relic.

Java SDK

Prerequisites

Include the New Relic middleware in the Java SDK

After adding commercetools-monitoring-newrelic as a dependency in your application, add the New Relic middleware to your SDK using the .withTelemetryMiddleware() method.
ApiHttpClient apiHttpClient = ApiRootBuilder
  .of()
  .defaultClient(ServiceRegion.GCP_EUROPE_WEST1.getApiUrl())
  .withTelemetryMiddleware(new NewRelicTelemetryMiddleware())
  .buildClient();
NewRelicTelemetryMiddleware reads NewRelicContext from the request, restores the transaction context, and logs request-response details to New Relic as external calls.
To create a trace per web request, such as in a Spring boot application, create a client with the New Relic transaction. You can achieve this by using the SDK's ContextClient.
ContextApiHttpClient contextClient = ContextApiHttpClient.of(
  apiHttpClient,
  NewRelicContext.of(NewRelic.getAgent().getTransaction()),
  false // don't close the ApiHttpClient
);
ProjectApiRoot apiRoot = ProjectApiRoot.fromClient(projectKey, contextClient);
The ContextClient adds the NewRelicContext object to every API request to ensure that even asynchronous calls in different threads are instrumented.
To adhere to best practices, reuse the API Client across the application lifetime. You should also ensure the ContextClient is configured to leave the inner client open, even if the ContextClient itself is closed.
The commercetools-monitoring-newrelic module includes a telemetry middleware and a serializer that adds the following metrics:
Metric nameDescriptionUnit
Custom/Commercetools/Client/Request/TotalNumber of requests made by the SDK.Count
Custom/Commercetools/Client/Request/ErrorNumber of requests made by the SDK with an HTTP error response (status code between 400 and 599).Count
Custom/Commercetools/Client/DurationDuration of the request to commercetools Composable Commerce.Milliseconds
Custom/Commercetools/Json/SerializationDuration of the JSON serialization of the response from Composable Commerce.Milliseconds
Custom/Commercetools/Json/DeserializationDuration of the JSON deserialization of the request to Composable Commerce.Milliseconds

The metrics are created as metric timeslice data and therefore requires the New Relic Application Performance Monitoring in your application.

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.

Include the monitoring package in the TypeScript SDK

The following code example demonstrates how to set up your SDK client for using New Relic monitoring.

// Import the @commercetools/ts-sdk-apm package
import { createTelemetryMiddleware } from '@commercetools/ts-sdk-apm'
import { ClientBuilder } from '@commercetools/ts-client'

// Configure the telemetry options
const telemetryOptions = {
  apm: () => require('newrelic'),
  userAgent: 'typescript-sdk-middleware-newrelic',
  createTelemetryMiddleware,
  customMetrics: {
    newrelic: true,
  },
}

// Create the client with the withTelemetryMiddleware() middleware
const client = new ClientBuilder()
  .withClientCredentialsFlow(...)
  .withHttpMiddleware(...)
  .withTelemetryMiddleware(telemetryOptions) // telemetry middleware
  ...
  .build()

Add the New Relic agent configuration

You should require the configuration file during application launch either by adding it at the first line of the application entry module/file or as a command-line argument. Both approaches produce the same result.

Require the New Relic Agent configuration filetypescript
// app.js
require('./path/to/newrelic.js') // require the nodejs New relic agent configuration here
import express from 'express'
...
const app = express()

app.listen('8000', function() {
  console.log(`server listening on port ${8000}`)
})
Command for requiring the New Agent configuration filejson
{
  "script": {
    "start": "node -r ./path/to/newrelic.js app.js"
  }
}
For more examples about integrating NewRelic with the TypeScript SDK, see the NewRelic example application. In the same folder, there are some examples about how to set up custom metrics like the ones mentioned here:
Metric nameDescriptionUnit
Custom/Commercetools/Client/Request/TotalNumber of requests made to Composable Commerce APIs, representing the volume of interactions from your application.Count
Custom/Commercetools/Client/Request/SuccessNumber of requests made by the SDK with an HTTP success response (status code between 200 and 399).Count
Custom/Commercetools/Client/Request/ErrorNumber of requests made by the SDK with an HTTP error response (status code between 400 and 599).Count

This example includes the metric to count all the successful client responses:

Create custom metrics to see successful client responsestypescript
newrelic.recordMetric(`Service/Response/Success/${statusCode}`, statusCode);

Alternatively, you can include this metric to count all the client requests:

Create custom metrics to see all client requeststypescript
newrelic.recordMetric(`Commercetools/Client/Request/Total`, count();

PHP SDK

Prerequisites

Include the monitoring package in the PHP SDK

.NET SDK

Include the monitoring package in the .NET SDK

The New Relic agent supports the monitoring of async methods. New Relic can trace API calls without extra configuration using auto instrumentation.

Use the New Relic dashboard

You can now send requests in your application to commercetools Composable Commerce through your SDK and monitor the reported data dashboard, telemetry, and performance statistics in New Relic.