Tech Leads: Repository archived due to inactivity in more than 6 months. Please remember to add a CODEOWNERS file to the root of the repository when unarchiving.
This repository implements gRPC inteceptors for logging exceptions to the Sentry.
var server = new Server()
{
Services =
{
TestService.BindService(new ServiceImp()).Intercept(new SentryInterceptor("DSN"))
},
Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) }
};
The library sets up continuation task for each call and in case that exception is thrown in the call, the continuation tasks loggs details about the call in form of breadcrumbs.
License can be found here