Dash0 Acquires Lumigo to Expand Agentic Observability Across AWS and Serverless

Last updated: March 10, 2026

Inspect Span Details

Dash0 provides quick access to relevant information based on context. The Span Sidebar on the right-hand side opens automatically when a record in the Span Table or Trace View is selected.

It contains information distributed across several tabs. The Overview tab is active by default and contains the most relevant information for quick access and navigation.

Overview Tab

The Overview tab provides a high-level summary of the selected span, including:

  • Trace visualization — A miniature waterfall view showing where the selected span fits within the full trace timeline. Click Visualize the full trace to open the complete trace in the Trace View.

    Homepage

  • Span Duration — The absolute duration of the span alongside a percentile distribution chart (median, p75, p90, p99), comparing it to spans with the same operation name over the selected time range. The Triage button is available to quickly investigate anomalies, via Triage.

    Homepage

Understanding Percentiles

Percentiles describe the distribution of span durations across all matching spans in the selected time range. For example:

  • p99 means 99% of spans completed faster than this value — making it a useful indicator of worst-case latency that real users may experience.
  • Median (p50) reflects the typical case.
  • p75 and p90 help you understand how performance degrades for slower requests.

Investigating a gap between the median and p99 is a good starting point for finding outliers or performance regressions.

  • Attributes — A filterable list of key-value pairs attached to the span. Tabs allow you to filter by attribute namespace (e.g. http.*, dash0.*). Clicking the external link icon next to an attribute name opens a filtered view for that attribute across all spans.

    Homepage

  • Resource summary — A condensed view of the resource that produced the span, including request volume, error percentage, and average duration sparklines. The service name, namespace, and runtime details (language and version) are shown here.

    Homepage

Resource Attributes & Resource Centricity

Not all resource attributes on your spans, logs, and metrics come from your application — Dash0 automatically enriches telemetry at ingestion time using resource equality rules. This is central to how Dash0 works: every signal type — traces, logs, metrics, services, and web events — shares the same resource model and the same filtering and view mechanics. Understanding how resources are coalesced gives you a unified mental model across the entire platform. To get the most out of resource equality, ensure that you have consistent attribute usage across all your telemetry sources so that Dash0 can merge them into a single coalesced resource.

Attributes Tab

The Attributes tab lists all key-value pairs attached to the span. Each entry shows the attribute name and its value. The tab header displays the total attribute count as a badge.

Attributes are grouped by namespace. You can use the filter buttons at the top to narrow the list to specific namespaces such as http.*, dash0.*, or process.*. A search box is also available to find attributes by name.

Common attributes include:

  • http.response.status_code — The HTTP status code returned by the operation (e.g. 200 OK). Per OpenTelemetry semantic conventions, 5xx responses always indicate a span error, but 4xx responses are only errors on the client side.
  • server.address — The hostname or IP address of the server being called. This is commonly populated by instrumentation for outbound HTTP and RPC calls.
  • rpc.grpc.status_code, rpc.method, rpc.service, rpc.system — For gRPC spans, these describe the remote procedure call details. See the OpenTelemetry RPC semantic conventions.
  • net.peer.name, net.peer.port — The hostname and port of the downstream service.
  • dash0.span.type, dash0.operation.name, dash0.operation.type — Dash0-specific metadata describing the span classification.
  • app.* — Application-level attributes such as app.order.id for business context.

Resource Tab

The Resource tab shows the full set of attributes describing the entity that produced the span. This includes host, process, and SDK metadata.

Homepage

Note

Not all resource attributes originate from your instrumentation. Dash0 enriches incoming spans with additional resource metadata at ingestion time — for example, infrastructure-level attributes derived from the environment in which your service is running.

Resource attributes are grouped and filterable by namespace (e.g. process.*, dash0.*). Common entries include:

  • Serviceservice.name and service.namespace identify the instrumented service (e.g. frontend in the opentelemetry-demo namespace).
  • Runtimeprocess.runtime.name and process.runtime.version indicate the execution environment (e.g. nodejs 18.20.8).
  • Hosthost.name, host.arch, os.type, and os.version describe the underlying host.
  • Processprocess.command, process.executable.path, process.pid, and process.owner describe the running process.
  • SDKtelemetry.sdk.name, telemetry.sdk.language, and telemetry.sdk.version identify the OpenTelemetry SDK used for instrumentation.
  • Dash0 resource metadatadash0.resource.id, dash0.resource.name, dash0.resource.type, and dash0.auth.token are added by Dash0 for resource tracking.

A summary card at the top of the tab shows the host name, request total, error percentage, and average duration for the resource over the selected time window.

Events & Logs Tab

The Events & Logs tab shows log records and span events associated with the selected span. The tab header badge indicates how many entries are available.

Homepage

The Links tab lists span links — references to other spans that are causally or contextually related but not part of the same parent-child trace hierarchy.

Span links are an OpenTelemetry concept used to connect spans across separate traces; see the OpenTelemetry specification for details.

Each link shows the linked span's operation name and its role (e.g., SERVER). Links have zero or more custom attributes attached, which are shown beneath each entry.

This is useful when a span was triggered by or is related to a span in a separate trace, such as when a background job is initiated from a web request.

Source Tab

For any span, the raw OpenTelemetry payload can be viewed in YAML or JSON format directly within the sidebar.

The Source tab shows the full resourceSpans structure as sent to Dash0, including all scope spans, their attributes, and dropped attribute counts.