View Source otel_span_processor behaviour (opentelemetry v1.5.0)
Summary
Functions
Starts a span processor.
Types
-type processor_config() :: term().
Callbacks
-callback force_flush(processor_config()) -> ok | {error, term()}.
-callback on_end(opentelemetry:span(), processor_config()) -> true | dropped | {error, invalid_span} | {error, no_export_buffer}.
-callback on_start(otel_ctx:t(), opentelemetry:span(), processor_config()) -> opentelemetry:span().
-callback processor_init(pid(), processor_config()) -> processor_config().
Functions
-spec start_link(module(), Config) -> {ok, pid(), Config} | {error, term()} when Config :: processor_config().
Starts a span processor.
Module
must implement the otel_span_processor
behaviour. This function calls Module:start_link/1
with Config
as the argument.