View Source otel_exporter behaviour (opentelemetry v1.5.0)

Summary

Callbacks

-callback export(traces | logs | metrics, ets:tab(), otel_resource:t(), term()) ->
          ok | success | failed_not_retryable | failed_retryable.
-callback init(term()) -> {ok, term()} | ignore.
-callback shutdown(term()) -> ok.

Functions

Link to this function

export_logs(_, Batch, Resource)

View Source
Link to this function

export_logs(ExporterModule, Batch, Resource, Config)

View Source
Link to this function

export_metrics(_, MetricsTid, Resource)

View Source
Link to this function

export_metrics(ExporterModule, MetricsTid, Resource, Config)

View Source
Link to this function

export_traces(_, SpansTid, Resource)

View Source
Link to this function

export_traces(ExporterModule, SpansTid, Resource, Config)

View Source