mirror of https://github.com/go-redis/redis.git
e2fabdf157
* chore(deps): Updating otel/metric and fixing breaking changes Signed-off-by: Vincent Boutour <bob@vibioh.fr> * ci: Removing go1.18 and updating example/otel to latest version Latest otel version use atomic.Pointer which is a go1.19 feature, so we have to drop support for the go 1.18 Signed-off-by: Vincent Boutour <bob@vibioh.fr> --------- Signed-off-by: Vincent Boutour <bob@vibioh.fr> |
||
---|---|---|
.. | ||
README.md | ||
config.go | ||
go.mod | ||
go.sum | ||
metrics.go | ||
redisotel_test.go | ||
tracing.go |
README.md
OpenTelemetry instrumentation for go-redis
Installation
go get github.com/redis/go-redis/extra/redisotel/v9
Usage
Tracing is enabled by adding a hook:
import (
"github.com/redis/go-redis/v9"
"github.com/redis/go-redis/extra/redisotel/v9"
)
rdb := rdb.NewClient(&rdb.Options{...})
// Enable tracing instrumentation.
if err := redisotel.InstrumentTracing(rdb); err != nil {
panic(err)
}
// Enable metrics instrumentation.
if err := redisotel.InstrumentMetrics(rdb); err != nil {
panic(err)
}
See example and Monitoring Go Redis Performance and Errors for details.