How to implement a telemetry gateway? #5354
-
I have ASP.NET Core endpoint that receives log events from a mobile app (in custom format). From there, I would like to forward these events to an OTEL endpoint. Using I also tried to use gRPC's Is there a way to accomplish this task using opentelemetry-dotnet or do I need to generate my own |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
To send data to an otlp endpoint, you would need to use otlp log exporter. |
Beta Was this translation helpful? Give feedback.
You probably need to create own clients for the same (the proto files for OTLP are here, and can generate clients and use it to achieve the same.).