(most relevant are probably the last 4 lines:
opentelemetry/proto/trace/v1/trace.proto: File not found.
api_v3/query_service.proto:19:1: Import "opentelemetry/proto/trace/v1/trace.proto" was not found or had errors.
api_v3/query_service.proto:40:12: "opentelemetry.proto.trace.v1.ResourceSpans" is not defined.
make: *\ [Makefile: 100: proto] Error 1
Nonetheless I copied the resulting files in jaeger-idl/proto-gen-python into my Python project directory and imported the query-files with import query_pb2, query_pb2_grpc - to then run into ModuleNotFoundError: No module named 'gogoproto'
So - is this a bug or am I holding it wrong?
And on a side note - does anyone know a working example querying Jaeger via Python? Preferred via gRPC?
Describe the bug Cloning the repo and running
make proto
in the main directory leads to the following output:(most relevant are probably the last 4 lines: opentelemetry/proto/trace/v1/trace.proto: File not found. api_v3/query_service.proto:19:1: Import "opentelemetry/proto/trace/v1/trace.proto" was not found or had errors. api_v3/query_service.proto:40:12: "opentelemetry.proto.trace.v1.ResourceSpans" is not defined. make: *\ [Makefile: 100: proto] Error 1
Nonetheless I copied the resulting files in
jaeger-idl/proto-gen-python
into my Python project directory and imported the query-files withimport query_pb2, query_pb2_grpc
- to then run intoModuleNotFoundError: No module named 'gogoproto'
So - is this a bug or am I holding it wrong? And on a side note - does anyone know a working example querying Jaeger via Python? Preferred via gRPC?