Replies: 1 comment 9 replies
-
The opentelemetry-exporter-logging-otlp exporters will log the metrics, traces, and log records in a standard JSON encoding of the OTLP format. From here, you can configure your logging system to append them to files or however else you want to store them locally. You can also write custom Or you can export to a local collector via OTLP, and use one of the many exporters bundled with the collector like the fileexporter. Generally, there are more exporters implemented in the collector than directly in language SDKs since writing an exporter for the collector allows you to build it once instead of building it 10+ times for all the different OpenTelemetry language implementations. |
Beta Was this translation helpful? Give feedback.
-
Might be a dumb question but is it absolutely required to set up an HTTP/gRPC server to recieve metrics, logs and traces? Is there a way to save them locally? I am quite new so tell me if I am thinking in the wrong direction.
Beta Was this translation helpful? Give feedback.
All reactions