How can I enable tracing for retries in Python? The retry-stats gRFC, A46,
says:
> The gRPC tracing module should create a tracing span for each call from
the perspective of the application, and create a child span for each
individual call attempt, including transparent retry attempts.
grpcio_plugin = grpc_observability.OpenTelemetryPlugin()
grpcio_plugin.register_global()
```
This didn't seem to result in any new traces. I see that there's also an `OpenTelemetryObservability`
class, which has a function called `create_client_call_tracer`, but it doesn't appear to be re-exported by `grpc_observability/__init__.py`, which makes me think it might not be intended for public consumption; and it also isn't used in the
observability example code.
How can tracing for retries be collected and exported?
Thanks,
Kyle Strand