View Source Sentry.Interfaces.Span (Sentry v10.9.0)

The struct for the span interface.

See https://develop.sentry.dev/sdk/data-model/event-payloads/span/.

Summary

Types

@type t() :: %Sentry.Interfaces.Span{
  data: %{optional(String.t()) => term()} | nil,
  description: String.t() | nil,
  op: String.t() | nil,
  origin: String.t() | nil,
  parent_span_id: <<_::128>> | nil,
  span_id: <<_::128>>,
  start_timestamp: String.t() | number(),
  status: String.t() | nil,
  tags: %{optional(String.t()) => term()} | nil,
  timestamp: String.t() | number(),
  trace_id: <<_::256>>
}