2021-04-18 14:49:28 +03:00
|
|
|
# OpenTelemetry instrumentation for go-redis
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```bash
|
|
|
|
go get github.com/go-redis/redis/extra/redisotel/v8
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Tracing is enabled by adding a hook:
|
|
|
|
|
|
|
|
```go
|
|
|
|
import (
|
2022-12-12 15:55:49 +03:00
|
|
|
"git.internal/re/redis/v8"
|
2021-04-18 14:49:28 +03:00
|
|
|
"github.com/go-redis/redis/extra/redisotel"
|
|
|
|
)
|
|
|
|
|
|
|
|
rdb := rdb.NewClient(&rdb.Options{...})
|
|
|
|
|
|
|
|
rdb.AddHook(redisotel.NewTracingHook())
|
|
|
|
```
|
|
|
|
|
|
|
|
See [example](example) and [documentation](https://redis.uptrace.dev/tracing/) for more details.
|