mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
6b3f5b984c
* refactor: switch from opencensus to opentelemetry * tempo works as designed nooooot * fix: log traceids * with grafana agent * fix: http tracing * fix: cleanup files * chore: remove todo * fix: bad test * fix: ignore methods in grpc interceptors * fix: remove test log * clean up * typo * fix(config): configure tracing endpoint * fix(span): add error id to span * feat: metrics package * feat: metrics package * fix: counter * fix: metric * try metrics * fix: coutner metrics * fix: active sessin counter * fix: active sessin counter * fix: change current Sequence table * fix: change current Sequence table * fix: current sequences * fix: spooler div metrics * fix: console view * fix: merge master * fix: Last spool run on search result instead of eventtimestamp * fix: go mod * Update console/src/assets/i18n/de.json Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: pr review * fix: map * update oidc pkg * fix: handlers * fix: value observer * fix: remove fmt * fix: handlers * fix: tests * fix: handler minimum cycle duration 1s * fix(spooler): handler channel buffer * fix interceptors Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
87 lines
2.9 KiB
Go
87 lines
2.9 KiB
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/status"
|
|
|
|
_ "github.com/caos/zitadel/internal/statik"
|
|
"github.com/caos/zitadel/internal/telemetry/metrics"
|
|
)
|
|
|
|
const (
|
|
GrpcMethod = "grpc_method"
|
|
ReturnCode = "return_code"
|
|
GrpcRequestCounter = "grpc.server.request_counter"
|
|
GrpcRequestCounterDescription = "Grpc request counter"
|
|
TotalGrpcRequestCounter = "grpc.server.total_request_counter"
|
|
TotalGrpcRequestCounterDescription = "Total grpc request counter"
|
|
GrpcStatusCodeCounter = "grpc.server.grpc_status_code"
|
|
GrpcStatusCodeCounterDescription = "Grpc status code counter"
|
|
)
|
|
|
|
func MetricsHandler(metricTypes []metrics.MetricType, ignoredMethodSuffixes ...string) grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
return RegisterMetrics(ctx, req, info, handler, metricTypes, ignoredMethodSuffixes...)
|
|
}
|
|
}
|
|
|
|
func RegisterMetrics(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler, metricTypes []metrics.MetricType, ignoredMethodSuffixes ...string) (_ interface{}, err error) {
|
|
if len(metricTypes) == 0 {
|
|
return handler(ctx, req)
|
|
}
|
|
|
|
for _, ignore := range ignoredMethodSuffixes {
|
|
if strings.HasSuffix(info.FullMethod, ignore) {
|
|
return handler(ctx, req)
|
|
}
|
|
}
|
|
|
|
resp, err := handler(ctx, req)
|
|
if containsMetricsMethod(metrics.MetricTypeRequestCount, metricTypes) {
|
|
RegisterGrpcRequestCounter(ctx, info)
|
|
}
|
|
if containsMetricsMethod(metrics.MetricTypeTotalCount, metricTypes) {
|
|
RegisterGrpcTotalRequestCounter(ctx)
|
|
}
|
|
if containsMetricsMethod(metrics.MetricTypeStatusCode, metricTypes) {
|
|
RegisterGrpcRequestCodeCounter(ctx, info, err)
|
|
}
|
|
return resp, err
|
|
}
|
|
|
|
func RegisterGrpcRequestCounter(ctx context.Context, info *grpc.UnaryServerInfo) {
|
|
var labels = map[string]interface{}{
|
|
GrpcMethod: info.FullMethod,
|
|
}
|
|
metrics.RegisterCounter(GrpcRequestCounter, GrpcRequestCounterDescription)
|
|
metrics.AddCount(ctx, GrpcRequestCounter, 1, labels)
|
|
}
|
|
|
|
func RegisterGrpcTotalRequestCounter(ctx context.Context) {
|
|
metrics.RegisterCounter(TotalGrpcRequestCounter, TotalGrpcRequestCounterDescription)
|
|
metrics.AddCount(ctx, TotalGrpcRequestCounter, 1, nil)
|
|
}
|
|
|
|
func RegisterGrpcRequestCodeCounter(ctx context.Context, info *grpc.UnaryServerInfo, err error) {
|
|
statusCode := status.Code(err)
|
|
var labels = map[string]interface{}{
|
|
GrpcMethod: info.FullMethod,
|
|
ReturnCode: runtime.HTTPStatusFromCode(statusCode),
|
|
}
|
|
metrics.RegisterCounter(GrpcStatusCodeCounter, GrpcStatusCodeCounterDescription)
|
|
metrics.AddCount(ctx, GrpcStatusCodeCounter, 1, labels)
|
|
}
|
|
|
|
func containsMetricsMethod(metricType metrics.MetricType, metricTypes []metrics.MetricType) bool {
|
|
for _, m := range metricTypes {
|
|
if m == metricType {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|