redis/extra/redisotel
rfyiamcool 1c544e0ec8
feat: add max cmd bytes for otel hook
Signed-off-by: rfyiamcool <rfyiamcool@163.com>
2024-02-29 16:29:33 +08:00
..
README.md docs: Update redisotel example for v9 (#2425) 2023-02-07 08:40:00 +02:00
config.go feat: add max cmd bytes for otel hook 2024-02-29 16:29:33 +08:00
go.mod Bump go-redis version to 9.5.1 (#2917) 2024-02-20 17:44:29 +02:00
go.sum chore(deps): Update otel/metric to stable API (#2607) 2023-05-24 12:07:43 +03:00
metrics.go useTime duration calculation (#2651) 2023-09-20 14:08:08 +03:00
redisotel_test.go feat: add max cmd bytes for otel hook 2024-02-29 12:36:04 +08:00
tracing.go feat: add max cmd bytes for otel hook 2024-02-29 12:36:04 +08: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.