We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis instrumentation does not support RedisCluster (redis.asyncio.cluster.RedisCluster).
I tried to instrument RedisCluster using opentelemetry-instrumentation-redis as below, but the application did not export any traces related redis.
opentelemetry-instrumentation-redis
from opentelemetry.instrumentation.redis import RedisInstrumentor from redis.asyncio.cluster import RedisCluster as Redis RedisInstrumentor().instrument() client = await Redis(host=host, port=6379) client.get("my-key")
It would be very helpful if redis instrumentation supports RedisCluster.
The text was updated successfully, but these errors were encountered:
@sungwonh Would you like send a PR for this? The important part is to write wrapper functions for cluster similar to this.
Sorry, something went wrong.
@srikanthccv OK. I will send a PR for this.
sungwonh
Successfully merging a pull request may close this issue.
Redis instrumentation does not support RedisCluster (redis.asyncio.cluster.RedisCluster).
I tried to instrument RedisCluster using
opentelemetry-instrumentation-redis
as below, but the application did not export any traces related redis.It would be very helpful if redis instrumentation supports RedisCluster.
The text was updated successfully, but these errors were encountered: