View Source OpenTelemetry.SemConv.Incubating.OpentracingAttributes (OpenTelemetry.SemConv v1.27.0)

OpenTelemetry Semantic Conventions for Opentracing attributes.

Summary

Types

Parent-child Reference type

Types

Link to this type

opentracing_ref_type_values()

View Source
@type opentracing_ref_type_values() :: %{
  child_of: :child_of,
  follows_from: :follows_from
}

Parent-child Reference type

Enum Values

  • :child_of e - The parent Span depends on the child Span in some capacity
  • :follows_from e - The parent Span doesn't depend in any way on the result of the child Span

Functions

@spec opentracing_ref_type() :: :"opentracing.ref_type"

Parent-child Reference type

Notes

The causal relationship between a child Span and a parent Span.

iex> OpenTelemetry.SemConv.Incubating.OpentracingAttributes.opentracing_ref_type()
:"opentracing.ref_type"

iex> OpenTelemetry.SemConv.Incubating.OpentracingAttributes.opentracing_ref_type_values().child_of
:child_of

iex> %{OpenTelemetry.SemConv.Incubating.OpentracingAttributes.opentracing_ref_type() => OpenTelemetry.SemConv.Incubating.OpentracingAttributes.opentracing_ref_type_values().child_of}
%{:"opentracing.ref_type" => :child_of}
Link to this function

opentracing_ref_type_values()

View Source
@spec opentracing_ref_type_values() :: opentracing_ref_type_values()