jaegertracing / jaeger-client-csharp

🛑 This library is DEPRECATED!
https://jaegertracing.io/
Apache License 2.0
302 stars 67 forks source link

Add *.proto files to the repo #192

Closed rparvizian-rbx closed 4 years ago

rparvizian-rbx commented 4 years ago

Could you please add the .proto files for the jaeger tracer to the repo. I'm trying to create a proxy, but I need the .proto files that the jaeger tracer uses.

yurishkuro commented 4 years ago

proto files are in https://github.com/jaegertracing/jaeger-idl repo

Falco20019 commented 4 years ago

@rparvizian-rbx To not having to compile them yourself (in case you do the proxy in C#), just use the NuGet package Jaeger.Communication.Grpc. This is generated from the protos and only includes gRPC and the generated protobuf files. No more logic. If you need another language, take the protos from where @yurishkuro has pointed you. Generating C# yourself is no fun due to the gogoproto dependencies.