redis/extra/redisotel
Vladimir Mihailenco 0023b80d82 chore: release v9.0.0 (release.sh) 2023-01-30 08:59:17 +02:00
..
README.md chore: update import path 2023-01-23 08:48:54 +02:00
config.go chore: add more metrics to redisotel 2022-11-17 16:24:16 +02:00
go.mod chore: release v9.0.0 (release.sh) 2023-01-30 08:59:17 +02:00
go.sum chore: release v9.0.0 (release.sh) 2023-01-30 08:59:17 +02:00
metrics.go chore: update import path 2023-01-23 08:48:54 +02:00
redisotel_test.go chore: update import path 2023-01-23 08:48:54 +02:00
tracing.go chore: update import path 2023-01-23 08:48:54 +02:00

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{...})

rdb.AddHook(redisotel.NewTracingHook())

See example and Monitoring Go Redis Performance and Errors for details.