Integration based on grpc-java implementation
To use plain interceptor add the following dependency to your build.gradle
implementation("ru.m2:sentry-grpc-interceptor:1.0.7")
Then you could use one of the standard sentry configuration way
Interceptor just implements io.grpc.ServerInterceptor
interface, so you could add it with io.grpc.ServerBuilder
for example
ServerBuilder builder = ...
builder.intercept(new SentryServerInterceptor()).build()
To use with Spring Boot add following dependency to your build.gradle
implementation("ru.m2:sentry-grpc-spring-boot-starter:1.0.7")
Then you could use one of the standard sentry configuration way
And then - relax
Starter based on grpc-spring-boot-starter