Expert guidance for configuring and deploying the OpenTelemetry Collector. Use when setting up a Collector pipeline, configuring receivers, exporters, or processors, deploying a Collector to Kubernetes or Docker, or forwarding telemetry to Dash0. Triggers on requests involving collector, pipeline, OTLP receiver, exporter, or Dash0 collector setup.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Instrument Scala applications to generate traces, logs, and metrics for deep insights into behavior and performance.
Scala runs on the JVM, so it uses the same OpenTelemetry Java agent as Java applications. Download the agent JAR:
wget https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jarNote: The javaagent.jar contains both the agent and instrumentation libraries, enabling automatic instrumentation without modifying source code.
For sbt projects, add a task to download the agent:
// build.sbt
lazy val downloadAgent = taskKey[File]("Download the OpenTelemetry Java agent")
downloadAgent := {
val agentFile = target.value / "opentelemetry-javaagent.jar"
if (!agentFile.exists()) {
val url = new java.net.URL(
"https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar"
)
IO.transfer(url.openStream(), agentFile)
}
agentFile
}Add the OpenTelemetry API dependency for custom spans:
// build.sbt
libraryDependencies += "io.opentelemetry" % "opentelemetry-api" % "1.47.0"All environment variables that control the SDK behavior:
| Variable | Required | Default | Description |
|---|---|---|---|
OTEL_SERVICE_NAME | Yes | unknown_service:java | Identifies your service in telemetry data |
OTEL_TRACES_EXPORTER | No | otlp | Traces exporter (default is already otlp) |
OTEL_METRICS_EXPORTER | No | otlp | Metrics exporter (default is already otlp) |
OTEL_LOGS_EXPORTER | No | otlp | Logs exporter (default is already otlp) |
OTEL_EXPORTER_OTLP_ENDPOINT | Yes | http://localhost:4318 | OTLP collector endpoint |
OTEL_EXPORTER_OTLP_HEADERS | No | - | Headers for authentication (e.g., Authorization=Bearer TOKEN) |
OTEL_EXPORTER_OTLP_PROTOCOL | No | http/protobuf | Protocol: grpc, http/protobuf, or http/json |
OTEL_RESOURCE_ATTRIBUTES | No | - | Additional resource attributes (e.g., deployment.environment=production) |
Note: The Java agent defaults all exporters to otlp and the protocol to http/protobuf.
https://<region>.your-platform.comorder-api, checkout-service)The SDK is activated by attaching the Java agent to the JVM.
Via sbt javaOptions:
// build.sbt
run / javaOptions += s"-javaagent:${target.value}/opentelemetry-javaagent.jar"
run / fork := trueSetting fork := true is required — sbt runs tasks in-process by default, and the javaagent must attach at JVM startup.
Via JAVA_TOOL_OPTIONS environment variable:
export JAVA_TOOL_OPTIONS="-javaagent:path/to/opentelemetry-javaagent.jar"Note: The JAVA_TOOL_OPTIONS approach applies the agent to every JVM process started in that shell session, including sbt itself and any compilation forked by sbt.
It should be used only when you are sure all the JVM processes that will be affected need to be instrumented.
Via -javaagent JVM parameter (fat JAR or assembly):
java -javaagent:path/to/opentelemetry-javaagent.jar -jar myapp-assembly.jarexport OTEL_SERVICE_NAME="my-service"The Java agent defaults all exporters to otlp, so no additional configuration is needed to start exporting telemetry.
To explicitly set exporters:
# Already the default, but can be set explicitly
export OTEL_TRACES_EXPORTER="otlp"
export OTEL_METRICS_EXPORTER="otlp"
export OTEL_LOGS_EXPORTER="otlp"export OTEL_EXPORTER_OTLP_ENDPOINT="https://<OTLP_ENDPOINT>"
export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer YOUR_AUTH_TOKEN"export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer YOUR_AUTH_TOKEN,Dash0-Dataset=my-dataset"# Service identification
export OTEL_SERVICE_NAME="my-service"
# Configure endpoint
export OTEL_EXPORTER_OTLP_ENDPOINT="https://<OTLP_ENDPOINT>"
export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer YOUR_AUTH_TOKEN"
# Run with sbt (requires fork := true and javaOptions configured)
sbt run# Service identification
export OTEL_SERVICE_NAME="my-service"
# Configure endpoint
export OTEL_EXPORTER_OTLP_ENDPOINT="https://<OTLP_ENDPOINT>"
export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer YOUR_AUTH_TOKEN"
# Activate SDK for all JVM processes
export JAVA_TOOL_OPTIONS="-javaagent:path/to/opentelemetry-javaagent.jar"
java -jar myapp-assembly.jarjava \
-javaagent:path/to/opentelemetry-javaagent.jar \
-Dotel.service.name=my-service \
-Dotel.exporter.otlp.endpoint=https://<OTLP_ENDPOINT> \
-Dotel.exporter.otlp.headers="Authorization=Bearer YOUR_AUTH_TOKEN" \
-jar myapp-assembly.jarFor development without a collector, use the console exporter to see telemetry in your terminal:
export OTEL_SERVICE_NAME="my-service"
export OTEL_TRACES_EXPORTER="console"
export OTEL_METRICS_EXPORTER="console"
export OTEL_LOGS_EXPORTER="console"
sbt runThis prints spans, metrics, and logs directly to stdout—useful for verifying instrumentation works before configuring a remote backend.
If you set OTEL_EXPORTER_OTLP_ENDPOINT but have no collector running, you will see connection errors.
This is expected behavior.
Options:
console exporter during development (recommended for quick testing)Set service.name, service.version, and deployment.environment.name for every deployment.
See resource attributes for the full list of required and recommended attributes.
See Kubernetes deployment for pod metadata injection, resource attributes, and Dash0 Kubernetes Operator guidance.
The auto-instrumentation agent automatically instruments Scala libraries that are built on Java frameworks.
| Category | Libraries |
|---|---|
| HTTP frameworks | Akka HTTP, Play Framework, http4s (Blaze/Ember backends), Finatra |
| HTTP clients | Akka HTTP client, sttp (backed by OkHttp, Apache HttpClient, or Java HttpClient), http4s client |
| Database | Slick (via JDBC), Doobie (via JDBC), Quill (via JDBC), ScalikeJDBC |
| Redis | Lettuce, Jedis (via Java instrumentation) |
| Messaging | Kafka (via Java client), Alpakka Kafka, RabbitMQ (via Java client), ZIO Kafka |
| gRPC | ScalaPB (via grpc-java), Akka gRPC |
| Logging | Logback, Log4j2, SLF4J (all via Java instrumentation) |
| AWS | AWS SDK v1, AWS SDK v2 (via Java instrumentation) |
The agent instruments at the JVM bytecode level. Any Scala library that delegates to an instrumented Java library (e.g., JDBC, Netty, gRPC-Java) is automatically covered.
Refer to the OpenTelemetry registry for the complete list.
Add business context to auto-instrumented traces. The OpenTelemetry Java API is used directly from Scala.
import io.opentelemetry.api.GlobalOpenTelemetry
import io.opentelemetry.api.trace.{Span, StatusCode}
private def stackTraceAsString(t: Throwable): String = {
val sw = new java.io.StringWriter()
t.printStackTrace(new java.io.PrintWriter(sw))
sw.toString
}
object OrderService {
private val tracer = GlobalOpenTelemetry.getTracer("my-service")
def processOrder(order: Order): Order = {
val span = tracer.spanBuilder("order.process").startSpan()
val scope = span.makeCurrent()
try {
span.setAttribute("order.id", order.id)
span.setAttribute("order.total", order.total)
saveOrder(order)
} catch {
case e: Exception =>
span.setStatus(StatusCode.ERROR, e.getMessage)
// Record exception as a log record — see spans.md#recording-exceptions
val ctx = span.getSpanContext
logger.atError()
.addKeyValue("trace_id", ctx.getTraceId)
.addKeyValue("span_id", ctx.getSpanId)
.addKeyValue("exception.type", e.getClass.getName)
.addKeyValue("exception.message", e.getMessage)
.addKeyValue("exception.stacktrace", stackTraceAsString(e))
.log("order.process.failed")
throw e
} finally {
scope.close()
span.end()
}
}
}scala.util.Using (Scala 2.13+)scala.util.Using manages scope closure automatically.
Wrap the scope in a Using.resource block to avoid forgetting scope.close():
import io.opentelemetry.api.GlobalOpenTelemetry
import io.opentelemetry.api.trace.{Span, StatusCode}
import scala.util.Using
object OrderService {
private val tracer = GlobalOpenTelemetry.getTracer("my-service")
def processOrder(order: Order): Order = {
val span = tracer.spanBuilder("order.process").startSpan()
try {
Using.resource(span.makeCurrent()) { _ =>
span.setAttribute("order.id", order.id)
span.setAttribute("order.total", order.total)
saveOrder(order)
}
} catch {
case e: Exception =>
span.setStatus(StatusCode.ERROR, e.getMessage)
// Record exception as a log record — see spans.md#recording-exceptions
val ctx = span.getSpanContext
logger.atError()
.addKeyValue("trace_id", ctx.getTraceId)
.addKeyValue("span_id", ctx.getSpanId)
.addKeyValue("exception.type", e.getClass.getName)
.addKeyValue("exception.message", e.getMessage)
.addKeyValue("exception.stacktrace", stackTraceAsString(e))
.log("order.process.failed")
throw e
} finally {
span.end()
}
}
}FutureWhen working with Future, the span must be ended after the Future completes, not when startSpan() returns.
Failing to do this produces zero-duration spans that end before the async work finishes.
import io.opentelemetry.api.GlobalOpenTelemetry
import io.opentelemetry.api.trace.{Span, StatusCode}
import io.opentelemetry.context.Context
import scala.concurrent.{ExecutionContext, Future}
object OrderService {
private val tracer = GlobalOpenTelemetry.getTracer("my-service")
def processOrderAsync(order: Order)(implicit ec: ExecutionContext): Future[Order] = {
val span = tracer.spanBuilder("order.process").startSpan()
val scope = span.makeCurrent()
// Capture the OTel context before entering the Future.
val otelContext = Context.current()
// Close the scope on the calling thread; the span stays open.
scope.close()
Future {
// Re-attach the context inside the Future's execution thread.
val innerScope = otelContext.makeCurrent()
try {
span.setAttribute("order.id", order.id)
span.setAttribute("order.total", order.total)
saveOrder(order)
} finally {
innerScope.close()
}
}.transform(
result => { span.end(); result },
error => {
span.setStatus(StatusCode.ERROR, error.getMessage)
// Record exception as a log record — see spans.md#recording-exceptions
val ctx = span.getSpanContext
logger.atError()
.addKeyValue("trace_id", ctx.getTraceId)
.addKeyValue("span_id", ctx.getSpanId)
.addKeyValue("exception.type", error.getClass.getName)
.addKeyValue("exception.message", error.getMessage)
.addKeyValue("exception.stacktrace", stackTraceAsString(error))
.log("order.process.failed")
span.end()
error
}
)
}
}Key points:
Context.current() before the Future block, then call otelContext.makeCurrent() inside it so that child spans created within the Future are linked to the correct parent.transform callback to ensure it covers the full async execution.Auto-instrumentation creates spans you do not control directly (e.g., the SERVER span for an HTTP request).
To enrich these spans with business context or set their status, retrieve the active span from the current context.
See adding attributes to auto-instrumented spans for when to use this pattern.
import io.opentelemetry.api.trace.Span
def createOrder(request: OrderRequest): Order = {
val span = Span.current()
span.setAttribute("order.id", request.orderId)
span.setAttribute("tenant.id", request.tenantId)
// ... handler logic
}Span.current() returns a non-recording span if no span is active.
Calling setAttribute or setStatus on a non-recording span is a no-op, so no null check is needed.
In Go-style context-passing code (e.g., when using Context explicitly), use Span.fromContext instead:
import io.opentelemetry.api.trace.Span
import io.opentelemetry.context.Context
val span = Span.fromContext(Context.current())See span status code for the full rules. This section shows how to apply them in Scala.
ERRORThe second argument to setStatus is the status message.
It must contain the error type and a short explanation — enough to understand the failure without opening the full trace.
// BAD: no status message
span.setStatus(StatusCode.ERROR)
// BAD: generic message with no diagnostic value
span.setStatus(StatusCode.ERROR, "something went wrong")
// GOOD: specific message with error type and context
span.setStatus(StatusCode.ERROR, s"${e.getClass.getSimpleName}: ${e.getMessage}")Do not include stack traces in the status message.
Record those in a log record with exception.stacktrace instead.
import java.io.{PrintWriter, StringWriter}
// BAD: stack trace in the status message
val sw = new StringWriter()
e.printStackTrace(new PrintWriter(sw))
span.setStatus(StatusCode.ERROR, sw.toString)
// GOOD: short message only
span.setStatus(StatusCode.ERROR, e.getMessage)OK only for confirmed successSet status to OK when application logic has explicitly verified the operation succeeded.
Leave status UNSET if the code simply did not encounter an error.
// GOOD: explicit confirmation from downstream
val response = httpClient.send(request, HttpResponse.BodyHandlers.ofString())
if (response.statusCode() == 200) {
span.setStatus(StatusCode.OK)
}
// BAD: setting OK speculatively
span.setStatus(StatusCode.OK)
someMethod() // might still fail after this pointConfigure your logging framework to serialize exceptions into a single structured field so that stack traces do not break the one-line-per-record contract. See logs for general guidance on structured logging and exception stack traces.
Scala applications typically use SLF4J-based loggers. The same Logback and Log4j2 configurations from the Java instrumentation guide apply.
The logstash-logback-encoder produces single-line JSON with stack traces serialized into a stack_trace field.
Add the dependency:
// build.sbt
libraryDependencies += "net.logstash.logback" % "logstash-logback-encoder" % "8.0" % Runtime<!-- src/main/resources/logback.xml -->
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="net.logstash.logback.encoder.LogstashEncoder" />
</appender>
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration>The encoder automatically captures exceptions passed to logger.error("message", exception) and serializes the full stack trace as an escaped string in the stack_trace JSON field.
scala-logging is a thin Scala wrapper around SLF4J. It uses the same underlying Logback or Log4j2 configuration, so the JSON formatting rules above apply.
import com.typesafe.scalalogging.LazyLogging
object OrderService extends LazyLogging {
def processOrder(order: Order): Unit = {
try {
saveOrder(order)
} catch {
case e: Exception =>
logger.error("order.failed", e)
}
}
}Pass the exception as the second argument to logger.error so that the JSON encoder captures it as a structured field.
Do not call e.getStackTrace or e.printStackTrace and log the result as a string — this produces multi-line output.
Scala applications use the same Java agent as Java.
The agent registers a JVM shutdown hook automatically.
When the JVM receives SIGTERM or sys.exit() is called, the hook flushes all pending spans, metrics, and log records before the process terminates.
No additional code is needed.
If you use a programmatic SDK setup (without the agent), register a shutdown hook manually:
sys.addShutdownHook {
tracerProvider.close()
meterProvider.close()
loggerProvider.close()
}close() calls shutdown() internally, which flushes pending batches and releases resources.
Verify the agent is loaded:
ps aux | grep opentelemetry-javaagentLook for opentelemetry-javaagent in the JVM arguments.
If it is missing, the agent is not attached to the JVM process.
Verify sbt is forking:
If using sbt, ensure run / fork := true is set.
Without forking, javaOptions are ignored and the agent is not attached.
Enable debug logging:
export OTEL_LOG_LEVEL="debug"Or via JVM system property:
java -Dotel.javaagent.debug=true -javaagent:path/to/opentelemetry-javaagent.jar -jar myapp-assembly.jarWARN io.opentelemetry.exporter.internal.http.HttpExporter - Failed to export spans.This means the SDK is working but cannot reach the collector:
OTEL_TRACES_EXPORTER=consoleOTEL_EXPORTER_OTLP_ENDPOINT is correctSymptom: Agent loads but specific libraries are not instrumented.
Fix: Verify the library version is supported by checking the OpenTelemetry registry. Some very old library versions may not be covered by the auto-instrumentation.
FutureSymptom: Spans appear in traces but have zero or near-zero duration, and all the actual work shows up outside the span.
Fix: The span is being ended on the calling thread before the Future completes.
End the span in a transform or onComplete callback — see tracing with Future.
Running multiple Java agents (e.g., APM agents) alongside the OpenTelemetry agent can cause conflicts. Remove other Java agents before attaching the OpenTelemetry agent.