Does Nats (c#) support open telemetry? #720
-
I try to make trace with nats+jaeger , found some reps called not.go and not.java , nut cannot find c# realization. For example - for java - https://github.com/nats-io/not.java |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@LightVolk I'm not sure what you are asking and the url you posted is not working. |
Beta Was this translation helpful? Give feedback.
-
Unfortunately we do not have an Open Telemetry reference architecture for .NET today. However, I'd suggest propagating spans / traces across headers as described here: https://stackoverflow.com/a/74477063. At the time not.java and not.go was developed we were still developing headers, so we used the binary formatters. Since NATS supports headers today, I'd definitely suggest using headers as in the example above. An open source C# wrapper/reference architecture for open tracing would be a contribution we would welcome! |
Beta Was this translation helpful? Give feedback.
Unfortunately we do not have an Open Telemetry reference architecture for .NET today.
However, I'd suggest propagating spans / traces across headers as described here: https://stackoverflow.com/a/74477063.
At the time not.java and not.go was developed we were still developing headers, so we used the binary formatters. Since NATS supports headers today, I'd definitely suggest using headers as in the example above.
An open source C# wrapper/reference architecture for open tracing would be a contribution we would welcome!