Issue with grpc based exporters #2478
-
Hi, I just started exploring manual instrumentation for my java application. When I tried to create a Tracer using below code, it fails as one of the grpc dependency is not found:
The below exception is thrown:
Shouldn't grpc-okhttp, grpc-netty, or grpc-netty-shaded be one of the dependencies of the exporter(jaeger/otlp) project? When I added this dependency explicitly and I get a different error most likely due to version compatibility. What version of grpc-okhttp should be added to resolve this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @shivchelwa . We specifically don't include one of the grpc channel providers because people may want to bring their own. Our examples use |
Beta Was this translation helpful? Give feedback.
Hi @shivchelwa . We specifically don't include one of the grpc channel providers because people may want to bring their own. Our examples use
grpc-netty-shaded
, so we know that works, at least with compatible versions.