mirror of https://github.com/go-redis/redis.git
27 lines
509 B
Markdown
27 lines
509 B
Markdown
# OpenTelemetry instrumentation for go-redis
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
go get github.com/redis/go-redis/extra/redisotel/v9
|
|
```
|
|
|
|
## Usage
|
|
|
|
Tracing is enabled by adding a hook:
|
|
|
|
```go
|
|
import (
|
|
"github.com/redis/go-redis/v9"
|
|
"github.com/redis/go-redis/extra/redisotel/v9"
|
|
)
|
|
|
|
rdb := rdb.NewClient(&rdb.Options{...})
|
|
|
|
rdb.AddHook(redisotel.NewTracingHook())
|
|
```
|
|
|
|
See [example](example) and
|
|
[Monitoring Go Redis Performance and Errors](https://redis.uptrace.dev/guide/go-redis-monitoring.html)
|
|
for details.
|