1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-26 21:05:00 +02:00

docs: Add otlploghttp package in exporters README.md (#5274)

* Update README.md

Add logs package in README.md

* Update exporters/README.md

Co-authored-by: Damien Mathieu <42@dmathieu.com>

* Update exporters/README.md

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>

---------

Co-authored-by: Damien Mathieu <42@dmathieu.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
arukiidou 2024-05-01 01:00:57 +09:00 committed by GitHub
parent d1d390e739
commit 1980e0e356
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,16 +7,18 @@ This package contains exporters for this purpose.
The following exporter packages are provided with the following OpenTelemetry signal support.
| Exporter Package | Metrics | Traces |
|:-----------------------------------------------------------------------------------------------------:|:-------:|:------:|
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc](./otlp/otlpmetric/otlpmetricgrpc) | ✓ | |
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp](./otlp/otlpmetric/otlpmetrichttp) | ✓ | |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](./otlp/otlptrace/otlptracegrpc) | | ✓ |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](./otlp/otlptrace/otlptracehttp) | | ✓ |
| [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) | | ✓ |
| Exporter Package | Logs | Metrics | Traces |
|:-----------------------------------------------------------------------------------------------------:|:----:|:-------:|:------:|
| [go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp](./otlp/otlplog/otlploghttp) | ✓ | | |
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc](./otlp/otlpmetric/otlpmetricgrpc) | | ✓ | |
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp](./otlp/otlpmetric/otlpmetrichttp) | | ✓ | |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](./otlp/otlptrace/otlptracegrpc) | | | ✓ |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](./otlp/otlptrace/otlptracehttp) | | | ✓ |
| [go.opentelemetry.io/otel/exporters/prometheus](./prometheus) | | ✓ | |
| [go.opentelemetry.io/otel/exporters/stdout/stdoutlog](./stdout/stdoutlog) | ✓ | | |
| [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-party exporters compatible with this project.