jaeger-all-in-one returns GRPC error NOT_FOUND for GetTrace #3809
-
I am using Jaeger-all-in-one deployed like this in docker-compose
I am using GRPC query
This code does not go into the "except" block and fetches result. However on trying to use response, the following error is seen.
However, the Jaeger UI and CURL command fetch expected results for the same trace id. What is in correct in the "GetTrace" call? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
gRPC GetTraceRequest expects |
Beta Was this translation helpful? Give feedback.
gRPC GetTraceRequest expects
trace_id
arg to be a binary representation of the trace ID (array of bytes). You're passingt = b'a58f82ec66388fde'
, which is just a string of ASCII characters as bytes, not the same thing. You need to decode the hex string into bytes first.