redis/extra/redisotel
Vladimir Mihailenco 217c470568 extra/redisotel: add readme and example 2021-04-18 14:49:28 +03:00
..
example extra/redisotel: add readme and example 2021-04-18 14:49:28 +03:00
README.md extra/redisotel: add readme and example 2021-04-18 14:49:28 +03:00
go.mod v8.8.2 2021-04-16 15:00:57 +03:00
go.sum Replace travis with workflows 2021-03-23 10:29:15 +02:00
redisotel.go Add constructors 2021-04-16 15:00:10 +03:00

README.md

OpenTelemetry instrumentation for go-redis

Installation

go get github.com/go-redis/redis/extra/redisotel/v8

Usage

Tracing is enabled by adding a hook:

import (
    "github.com/go-redis/redis/v8"
    "github.com/go-redis/redis/extra/redisotel"
)

rdb := rdb.NewClient(&rdb.Options{...})

rdb.AddHook(redisotel.NewTracingHook())

See example and documentation for more details.