abstract struct OpenTelemetry::API::AbstractSpanContext

Direct Known Subclasses

Defined in:

api/abstract_span_context.cr
api/span_context/abstract_config.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(trace_id, span_id, parent_id, trace_flags, trace_state, remote = false) #

def self.new(inherited_context : SpanContext) #

def self.new(configuration : Config) #

def self.new #

Class Method Detail

def self.build(inherited_context : SpanContext? = nil) #

Instance Method Detail

abstract def [](val) #

abstract def []=(val, val2) #

abstract def []?(val) #

abstract def is_remote #

The spec dictates that this name be available: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#isvalid


abstract def is_valid #

The spec dictates that this name be available: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#isvalid


abstract def parent_id : Slice(UInt8)? #

This is probably going to be a property


abstract def parent_id=(parent_id : Slice(UInt8)?) #

abstract def remote : Bool #

This is probably going to be a property


abstract def remote=(remote : Bool) #

abstract def remote? #

abstract def span_id : Slice(UInt8) #

This is probably going to be a property


abstract def span_id=(span_id : Slice(UInt8)) #

abstract def trace_flags : TraceFlags #

This is probably going to be a property


abstract def trace_flags=(trace_flags : TraceFlags) #

abstract def trace_id : Slice(UInt8) #

This is probably going to be a property


abstract def trace_id=(trace_id : Slice(UInt8)) #

abstract def trace_state : Hash(String, String) #

TODO We're currenty playing fast and loose with TraceState. TraceState, per the spec, should be immutable, however, so this will need to be revised. This is probably going to be a property


abstract def trace_state=(trace_state : Hash(String, String)) #

abstract def valid? #

Returns true is the trace id and span id are non-zero