Configure the Splunk Distribution of OTel JS for Splunk Observability Cloud π
You can configure the Splunk Distribution of OpenTelemetry JS to suit your instrumentation needs. In most cases, modifying the basic configuration is enough to get started.
The following sections describe all available settings for configuring OpenTelemetry for Node.js, including options for activating new features that are unique to the Splunk Distribution of OpenTelemetry JS.
Configuration methods π
To configure the Splunk Distribution of OpenTelemetry JS, you can use a combination of environment variables and arguments passed to the start()
function:
Environment variables
For example:
export OTEL_SERVICE_NAME='test-service'
Arguments passed to the
start()
functionFor example:
start({ serviceName: 'my-node-service', });
Configuration for each of the supported data type, such as metrics or tracing, is set using additional properties on the configuration object:
start({
// general options like `serviceName` and `endpoint`
metrics: {
// configuration passed to metrics signal
},
profiling: {
// configuration passed to profiling signal
},
tracing: {
// configuration passed to tracing signal
},
});
You can also activate the collection of a specific data type by passing a boolean value instead of an object. For example:
start({
// general options like `serviceName` and `endpoint`
metrics: true, // turn metrics on with default options
profiling: true, // turn profiling on with default options
});
Note
Function arguments take precedence over the corresponding environment variables.
General settings π
The following settings are specific to the Splunk Distribution of OpenTelemetry JS:
Instrumentations configuration π
The following settings control which instrumentations are activated:
For example, to turn off all default instrumentations and only turn on the bunyan
instrumentation, set the following environment variables:
export OTEL_INSTRUMENTATION_COMMON_DEFAULT_ENABLED=false
export OTEL_INSTRUMENTATION_BUNYAN_ENABLED=true
The previous settings only apply to instrumentations loaded by the Splunk Distribution of OpenTelemetry JS by default. When using the programmatic API to supply a list of user-specified instrumentations, they have no effect.
Trace configuration π
The following settings control tracing limits and attributes:
Environment variable |
Argument to start() |
Description |
---|---|---|
OTEL_TRACE_ENABLED |
Not applicable |
Activates tracer creation and autoinstrumentation. Default value is |
OTEL_SERVICE_NAME |
|
Name of the service or application youβre instrumenting. Takes precedence over the service name defined in the |
OTEL_RESOURCE_ATTRIBUTES |
Not applicable |
Comma-separated list of resource attributes added to every reported span. For example, |
OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT |
Not applicable |
Maximum number of attributes per span. Default value is unlimited. |
OTEL_SPAN_EVENT_COUNT_LIMIT |
Not applicable |
Maximum number of events per span. Default value is unlimited. |
OTEL_SPAN_LINK_COUNT_LIMIT |
Not applicable |
Maximum number of links per span. Default value is |
OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT |
Not applicable |
Maximum length of strings for attribute values. Values larger than the limit are truncated. Default value is |
Samplers configuration π
The following settings control trace sampling:
Environment variable |
Description |
---|---|
OTEL_TRACES_SAMPLER |
Sampler to use. The default value is |
OTEL_TRACES_SAMPLER_ARG |
Semicolon-separated list of rules for the |
Exporters configuration π
The following settings control trace exporters and their endpoints:
Jaeger exporter π
To use the Jaeger exporter, add the @opentelemetry/exporter-jaeger
package as in the following example:
const { start } = require('@splunk/otel');
const { JaegerExporter } = require('@opentelemetry/exporter-jaeger');
start({
serviceName: 'my-node-service',
tracing: {
spanExporterFactory: (options) => {
return new JaegerExporter({
serviceName: options.serviceName,
// Additional config
})
}
},
});
Note
To send data directly to Splunk Observability Cloud, see Send data directly to Splunk Observability Cloud.
Propagators configuration π
The following settings control trace propagation:
For backward compatibility with the SignalFx Tracing Library for Node.js, use the b3multi trace propagator:
export OTEL_PROPAGATORS=b3multi
$env:OTEL_PROPAGATORS=b3multi
Node.js settings for AlwaysOn Profiling π
The following settings control the AlwaysOn Profiling feature for the Node.js agent:
To configure AlwaysOn Profiling programmatically, pass the arguments to the start
function, as in the following example:
start({
serviceName: '<service-name>',
profiling: true,
tracing: {
// configuration passed to tracing signal
},
});
Note
For more information on AlwaysOn Profiling, see Introduction to AlwaysOn Profiling for Splunk APM.
Metrics configuration π
The following settings activate runtime metrics collection:
Note
To pass settings as arguments, use the start()
function.
Configuring an existing metrics client to send custom metrics π
You can use an existing SignalFx client for sending custom metrics instead of creating and configuring a new one.
To configure an existing client, pass the following data to the start()
function:
signalfx
: A JavaScript object with optionalclient
anddimensions
fields. Thedimensions
object adds a predefined dimension for each data point. The format fordimensions
is{key: value, ...}
.
The following is a list of dimensions added by default:
service
: SeeserviceName
in Trace configuration.metric_source
:splunk-otel-js
node_version
:process.versions.node
, for example16.10.0
Server trace information π
To connect Real User Monitoring (RUM) requests from mobile and web applications with server trace data, activate Splunk trace response headers by setting the following environment variable:
export SPLUNK_TRACE_RESPONSE_HEADER_ENABLED=true
$env:SPLUNK_TRACE_RESPONSE_HEADER_ENABLED=true
When you set this environment variable, your application instrumentation adds the following response headers to HTTP responses.
Access-Control-Expose-Headers: Server-Timing
Server-Timing: traceparent;desc="00-<serverTraceId>-<serverSpanId>-01"
The Server-Timing
header contains the traceId
and spanId
in traceparent
format. For more information, see the Server-Timing and traceparent documentation on the W3C website.