Correlate service calls through ContextPropagationToken
See original GitHub issueWe need to explore the API required to trace service call by propagating the ContextPropagationToken
. The goal is to be able to trace an entire call chain, regardless of implementation.
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (8 by maintainers)
Top Results From Across the Web
Class ContextPropagationToken | gRPC C#
Token for propagating context of server side handlers to child calls. In situations when a backend is making calls to another backend, it...
Read more >Logging gRPC on .NET Using Serilog | by Tuna
This tutorial will help you to understand basic concept of correlating activities across multiple services. Correlating activities is one of the ...
Read more >c# - Calling gRPC services through a Web API in .NET 6
I'm in trouble using Web Api's and gRPC's. In this moment I want to have my controllers from an Web Api getting the...
Read more >Handling gRPC exception correctly server side
In this article, we will see together how to use gRPC Interceptors to handle errors in the most efficient way (it is also...
Read more >Logging gRPC requests using Serilog - Gui Ferreira
I can use Serilog to log the requests; I know all the requests made to my services; I know how long each request...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@JamesNK can you help me understand why this is not needed? At Namely, we have grpc services written in
go
,python
&c#
- we currently propagate deadline + cancellation between all 3 (we haven’t migrated offGrpc.Core
). Are we mistaken that this actually works from thec#
andpython
services togo
? If it does currently work, why do you think it isn’t valuable to have this propagation work withgrpc-dotnet
(or are those 2 supported, but not the tracing)? We wrote client + server interceptors to support the zipkin traces we currently use - but if we could use built-in support for propagating tracing, that would be ideal.I don’t think this is needed. I don’t think correlating calls between an app that is using both Grpc.Core and grpc-dotnet is that valuable, and in .NET Core we have
Activity
to propagate telemetry.Can reopen if a use case for ContextPropagationToken is identified.