1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-02-11 13:38:37 +02:00
Severin Neumann 867900e519
Restructure Website documentation (#3585)
* Restructure Website documentation

Signed-off-by: svrnm <neumanns@cisco.com>

* Update website_docs/getting-started.md

* Update website_docs/exporters.md

Co-authored-by: Patrice Chalin <chalin@users.noreply.github.com>

---------

Signed-off-by: svrnm <neumanns@cisco.com>
Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com>
Co-authored-by: Patrice Chalin <chalin@users.noreply.github.com>
Co-authored-by: Damien Mathieu <damien.mathieu@elastic.co>
2023-02-21 13:07:45 -06:00

35 lines
1.0 KiB
Markdown

---
title: Exporters
aliases: [/docs/instrumentation/go/exporting_data]
weight: 4
---
In order to visualize and analyze your
[traces](/docs/concepts/signals/traces/#tracing-in-opentelemetry) and metrics, you
will need to export them to a backend.
## OTLP Exporter
OpenTelemetry Protocol (OTLP) export is available in the
`go.opentelemetry.io/otel/exporters/otlp/otlptrace` and
`go.opentelemetry.io/otel/exporters/otlp/otlpmetric` packages.
Please find more documentation on
[GitHub](https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/otlp)
## Jaeger Exporter
Jaeger export is available in the `go.opentelemetry.io/otel/exporters/jaeger`
package.
Please find more documentation on
[GitHub](https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/jaeger)
## Prometheus Exporter
Prometheus export is available in the
`go.opentelemetry.io/otel/exporters/prometheus` package.
Please find more documentation on
[GitHub](https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/prometheus)