Monitor and observe your SDK with New Relic.
Java SDK
Prerequisites
- Version 13.1 (or later) of the Java SDK
- New Relic Java agent configured
Include the New Relic middleware in the Java SDK
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.ContextClient
.ContextApiHttpClient contextClient = ContextApiHttpClient.of(
apiHttpClient,
NewRelicContext.of(NewRelic.getAgent().getTransaction()),
false // don't close the ApiHttpClient
);
ProjectApiRoot apiRoot = ProjectApiRoot.fromClient(projectKey, contextClient);
ContextClient
adds the NewRelicContext
object to every API request to ensure that even asynchronous calls in different threads are instrumented.ContextClient
is configured to leave the inner client open, even if the ContextClient
itself is closed.commercetools-monitoring-newrelic
module includes a telemetry middleware and a serializer that adds the following metrics:Metric name | Description | Unit |
---|---|---|
Custom/Commercetools/Client/Request/Total | Number of requests made by the SDK. | Count |
Custom/Commercetools/Client/Request/Error | Number of requests made by the SDK with an HTTP error response (status code between 400 and 599 ). | Count |
Custom/Commercetools/Client/Duration | Duration of the request to commercetools Composable Commerce. | Milliseconds |
Custom/Commercetools/Json/Serialization | Duration of the JSON serialization of the response from Composable Commerce. | Milliseconds |
Custom/Commercetools/Json/Deserialization | Duration 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
- Version 3.0.0 (or later) of the @commercetools/ts-client
- Version 1.0.0 (or later) of the @commercetools/ts-sdk-apm
- Version 10.0.0 (or later) of New Relic's Node.js agent
- New Relic Node.js agent configured
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
newrelic.js
in your project root and then copy this code into it. You must modify app_name
and license_key
to match your New Relic profile.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.
// 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}`)
})
{
"script": {
"start": "node -r ./path/to/newrelic.js app.js"
}
}
Metric name | Description | Unit |
---|---|---|
Custom/Commercetools/Client/Request/Total | Number of requests made to Composable Commerce APIs, representing the volume of interactions from your application. | Count |
Custom/Commercetools/Client/Request/Success | Number of requests made by the SDK with an HTTP success response (status code between 200 and 399 ). | Count |
Custom/Commercetools/Client/Request/Error | Number 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:
newrelic.recordMetric(`Service/Response/Success/${statusCode}`, statusCode);
Alternatively, you can include this metric to count all the client requests:
newrelic.recordMetric(`Commercetools/Client/Request/Total`, count();
Custom/Commercetools/Client/Request/Success
and Custom/Commercetools/Client/Request/Error
custom metrics, see here. And for more information about Custom/Commercetools/Client/Request/Total
, see this file.PHP SDK
Prerequisites
- PHP 8.1 (or later)
- New Relic Agent & Daemon configured
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.