We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d55118 commit 5314a57Copy full SHA for 5314a57
extra/redisotel/tracing.go
@@ -30,8 +30,6 @@ func InstrumentTracing(rdb redis.UniversalClient, opts ...TracingOption) error {
30
rdb.AddHook(newTracingHook(connString, opts...))
31
return nil
32
case *redis.ClusterClient:
33
- rdb.AddHook(newTracingHook("", opts...))
34
-
35
rdb.OnNewNode(func(rdb *redis.Client) {
36
opt := rdb.Options()
37
opts = addServerAttributes(opts, opt.Addr)
@@ -40,8 +38,6 @@ func InstrumentTracing(rdb redis.UniversalClient, opts ...TracingOption) error {
40
38
})
41
39
42
case *redis.Ring:
43
44
45
46
47
0 commit comments