View Source otel_span (opentelemetry_api v1.0.3)

Span behaviour.

Link to this section Summary

Link to this section Types

Specs

start_opts() ::
    #{attributes => opentelemetry:attributes_map(),
      links => [opentelemetry:link()],
      is_recording => boolean(),
      start_time => opentelemetry:timestamp(),
      kind => opentelemetry:span_kind()}.

Link to this section Functions

Link to this function

add_event(SpanCtx, Name, Attributes)

View Source

Specs

add_event(SpanCtx, Name, Attributes) -> boolean()
             when
                 Name :: opentelemetry:event_name(),
                 Attributes :: opentelemetry:attributes_map(),
                 SpanCtx :: opentelemetry:span_ctx().
Link to this function

add_events(SpanCtx, Events)

View Source

Specs

add_events(SpanCtx, Events) -> boolean()
              when Events :: [opentelemetry:event()], SpanCtx :: opentelemetry:span_ctx().

Specs

end_span(SpanCtx) -> SpanCtx when SpanCtx :: opentelemetry:span_ctx().
Link to this function

end_span(SpanCtx, Timestamp)

View Source

Specs

end_span(SpanCtx, Timestamp) -> SpanCtx
            when SpanCtx :: opentelemetry:span_ctx(), Timestamp :: integer() | undefined.

Specs

Specs

Specs

is_recording(SpanCtx) -> boolean() when SpanCtx :: opentelemetry:span_ctx().

Specs

is_valid(SpanCtx) -> boolean() when SpanCtx :: opentelemetry:span_ctx().

Specs

is_valid_name(any()) -> boolean().
Link to this function

process_attributes(Attributes)

View Source

Specs

process_attributes(any()) -> opentelemetry:attributes_map().
Link to this function

record_exception(SpanCtx, Class, Term, Stacktrace, Attributes)

View Source

Specs

record_exception(SpanCtx, Class, Term, Stacktrace, Attributes) -> boolean()
                    when
                        SpanCtx :: opentelemetry:span_ctx(),
                        Class :: atom(),
                        Term :: term(),
                        Stacktrace :: [any()],
                        Attributes :: opentelemetry:attributes_map().
Link to this function

record_exception(SpanCtx, Class, Term, Message, Stacktrace, Attributes)

View Source

Specs

record_exception(SpanCtx, Class, Term, Message, Stacktrace, Attributes) -> boolean()
                    when
                        SpanCtx :: opentelemetry:span_ctx(),
                        Class :: atom(),
                        Term :: term(),
                        Message :: unicode:unicode_binary(),
                        Stacktrace :: [any()],
                        Attributes :: opentelemetry:attributes_map().
Link to this function

set_attribute(SpanCtx, Key, Value)

View Source

Specs

set_attribute(SpanCtx, Key, Value) -> boolean()
                 when
                     Key :: opentelemetry:attribute_key(),
                     Value :: opentelemetry:attribute_value(),
                     SpanCtx :: opentelemetry:span_ctx().
Link to this function

set_attributes(SpanCtx, Attributes)

View Source

Specs

set_attributes(SpanCtx, Attributes) -> boolean()
                  when
                      Attributes :: opentelemetry:attributes_map(),
                      SpanCtx :: opentelemetry:span_ctx().
Link to this function

set_status(SpanCtx, Status)

View Source

Specs

set_status(SpanCtx, Status) -> boolean()
              when Status :: opentelemetry:status(), SpanCtx :: opentelemetry:span_ctx().
Link to this function

set_status(SpanCtx, Code, Message)

View Source

Specs

set_status(SpanCtx, Code, Message) -> boolean()
              when
                  Code :: opentelemetry:status_code(),
                  Message :: unicode:unicode_binary(),
                  SpanCtx :: opentelemetry:span_ctx().

Specs

Specs

Specs

tracestate(opentelemetry:span_ctx() | undefined) -> opentelemetry:tracestate().
Link to this function

update_name(SpanCtx, Name)

View Source

Specs

update_name(SpanCtx, Name) -> boolean()
               when Name :: opentelemetry:span_name(), SpanCtx :: opentelemetry:span_ctx().
Link to this function

validate_start_opts(Opts)

View Source

Specs

validate_start_opts(start_opts()) -> start_opts().