redis/extra/redisotel
Vladyslav Vildanov cc9bcb0c0f
Updated package version (#3158)
2024-10-15 16:32:53 +03:00
..
README.md docs: Update redisotel example for v9 (#2425) 2023-02-07 08:40:00 +02:00
config.go add server address and port attributes to redis otel trace instrumentation (#2826) 2024-03-27 08:56:11 +02:00
go.mod Updated package version (#3158) 2024-10-15 16:32:53 +03:00
go.sum add server address and port attributes to redis otel trace instrumentation (#2826) 2024-03-27 08:56:11 +02:00
metrics.go useTime duration calculation (#2651) 2023-09-20 14:08:08 +03:00
redisotel_test.go add server address and port attributes to redis otel trace instrumentation (#2826) 2024-03-27 08:56:11 +02:00
tracing.go Remove skipping span creation by checking parent spans (#2980) 2024-05-10 09:52:32 +03: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{...})

// 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.