2020-03-24 14:15:01 +01:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"go.opencensus.io/plugin/ocgrpc"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/stats"
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
"github.com/caos/zitadel/internal/api/http"
|
2020-03-24 14:15:01 +01:00
|
|
|
"github.com/caos/zitadel/internal/tracing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GRPCMethod string
|
|
|
|
|
|
|
|
func TracingStatsServer(ignoredMethods ...GRPCMethod) grpc.ServerOption {
|
2020-07-08 13:56:37 +02:00
|
|
|
return grpc.StatsHandler(
|
|
|
|
&tracingServerHandler{
|
|
|
|
ignoredMethods,
|
|
|
|
ocgrpc.ServerHandler{
|
|
|
|
StartOptions: trace.StartOptions{
|
|
|
|
Sampler: tracing.Sampler(),
|
|
|
|
SpanKind: trace.SpanKindServer,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DefaultTracingStatsServer() grpc.ServerOption {
|
|
|
|
return TracingStatsServer(http.Healthz, http.Readiness, http.Validation)
|
2020-03-24 14:15:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type tracingServerHandler struct {
|
|
|
|
IgnoredMethods []GRPCMethod
|
|
|
|
ocgrpc.ServerHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *tracingServerHandler) TagRPC(ctx context.Context, tagInfo *stats.RPCTagInfo) context.Context {
|
|
|
|
for _, method := range s.IgnoredMethods {
|
|
|
|
if strings.HasSuffix(tagInfo.FullMethodName, string(method)) {
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s.ServerHandler.TagRPC(ctx, tagInfo)
|
|
|
|
}
|