-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README to the exporter package (#3142)
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 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/jaeger](./jaeger) | | ✓ | | ||
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric](./otlp/otlpmetric) | ✓ | | | ||
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace](./otlp/otlptrace) | | ✓ | | ||
| [go.opentelemetry.io/otel/exporters/prometheus](./prometheus) | ✓ | | | ||
| [go.opentelemetry.io/otel/exporters/stdout/stdoutmetric](./stdout/stdoutmetric) | ✓ | | | ||
| [go.opentelemetry.io/otel/exporters/stdout/stdouttrace](./stdout/stdouttrace) | | ✓ | | ||
| [go.opentelemetry.io/otel/exporters/zipkin](./zipkin) | | ✓ | | ||
|
||
See the [OpenTelemetry registry] for 3rd-part exporters compatible with this project. | ||
|
||
[OpenTelemetry registry]: https://opentelemetry.io/registry/?language=go&component=exporter |