-
Notifications
You must be signed in to change notification settings - Fork 4k
Export detailed metrics via OpenTelemetry #7429
Description
Is your feature request related to a problem?
grpc-java exports detailed metrics via OpenCensus (code in /census). There's a guide for how to access those metrics here: https://opencensus.io/guides/grpc/java/.
OpenTelemetry is the official successor to OpenCensus. But grpc-java does not expose metrics in an OpenTelemetry-compatible way.
Describe the solution you'd like
It would be nice if the detailed metrics currently exposed via OpenCensus were exposed in an OpenTelemetry-compatible way.
Describe alternatives you've considered
Setting up an OpenCensus-based metrics pipeline just for grpc-java -- certainly possible, but runs counter to the idea of unifying metrics and tracing under the OpenTelemetry umbrella.
Additional context
Given that OpenTelemetry is the official successor to OpenCensus, I tried to figure out if OpenTelemetry is OpenCensus-compatible, but couldn't find relevant documentation. It is possible that this is the case and that OpenTelemetry support is a no-op as a result.