Replies: 2 comments 2 replies
-
Most likely this would require either a new instrumentation or modifications to the existing grpc instrumentation. I don't know enough about the nice-grpc internals to estimate how much work that might be. |
Beta Was this translation helpful? Give feedback.
0 replies
-
It seems nice-grpc uses Therefore I would assume that |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We utilize nice-grpc npm package, and are using ClientFactory to create grpc clients that we are using in our application. we wanted to get auto instrumentation for grpc client to be able trace our grpc client calls to the backend grpc server. I tried to use the opentelemetry-instrumentation-grpc, however I understand that it would not work as patching is applied via different set of function/classes which are specific to grpc-js. Nice-grpc also uses some of components from grpc-js, but different set of client and factory methods/classes.
Any guidance on how to get auto instrumentation to work for grpc clients created via nice-grpc package? Anyone else implemented this as custom instrumentation and willing to share?
Beta Was this translation helpful? Give feedback.
All reactions