'How can I export opentelemetry data into a file without a backend collector for testing
I have a c# application using OpenTelemetry.
There are different exporters for different backend collectors (like Jaeger)
But in my dev environment, there is no such backend service set up.
Although I can use console exporter, but it will be mixed with my other messages.
I also tried Otlp Exporter
.AddOtlpExporter(options => options.Endpoint = new Uri(@"C:\temp\a.txt"))
but returns the following error
System.NotSupportedException: 'Endpoint URI scheme (file) is not supported. Currently only "http" and "https" are supported.'
It seems that a file schema is not supported at the moment.
Is there any way I can simply output it to a file for easy testing and debugging?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
