Open juanzolotoochin opened 1 month ago
Hello!
Yes, this is a known limitation; http.status_code is a tag on trace metrics but grpc.status.code is not. The grpc spans populate the latter attribute and not the former. See: https://docs.datadoghq.com/tracing/metrics/metrics_namespace/#metric-suffix
A few quick workarounds while the team discusses this further:
I'm using
UnaryServerInterceptor
from"gopkg.in/DataDog/dd-trace-go.v1/contrib/google.golang.org/grpc"
.This generates a metric
trace.grpc.server.hits
which is the main metric I have for incoming traffic for my gRPC service.I'd expect this metric to be labeled with the gRPC status code so I can count hits by status code.
Other datadog integrations (such as python flask) already do this with http status code.