1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-30 21:20:04 +02:00
opentelemetry-go/exporters
Tyler Yahn 0510d11b8d
Use slices.SortFunc in OTLP trace exporter instead of sort.Slice (#4989)
Co-authored-by: Sam Xie <sam@samxie.me>
2024-02-29 08:08:43 +01:00
..
otlp Use slices.SortFunc in OTLP trace exporter instead of sort.Slice (#4989) 2024-02-29 08:08:43 +01:00
prometheus Use slices.Sort in Prometheus exporter instead of sort.Slice (#4988) 2024-02-29 07:13:41 +01:00
stdout [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
zipkin [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
README.md otlp: Refine documentation (#4695) 2023-11-08 17:18:12 +01:00

OpenTelemetry Exporters

Once the OpenTelemetry SDK has created and processed telemetry, it needs to be exported. This package contains exporters for this purpose.

Exporter Packages

The following exporter packages are provided with the following OpenTelemetry signal support.

Exporter Package Metrics Traces
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
go.opentelemetry.io/otel/exporters/prometheus
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric
go.opentelemetry.io/otel/exporters/stdout/stdouttrace
go.opentelemetry.io/otel/exporters/zipkin

See the OpenTelemetry registry for 3rd-party exporters compatible with this project.