redis/extra/redisotel
Tiago Peczenyj e8ad794e96
Format code and fix go vet (#2696)
* run go fix ./...

Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com>

* run make fmt

Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com>

* fix go vet ./... issues

* Update README.md

Reorder imports with the rules defined in the Makefile 

as if we run `make fmt`

* run gofumpt -w .

* update Makefile to use gofumpt instead gofmt

* increment makefile

* format test

* format tests

Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com>

---------

Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com>
Co-authored-by: ofekshenawa <104765379+ofekshenawa@users.noreply.github.com>
2023-09-20 14:03:44 +03:00
..
README.md docs: Update redisotel example for v9 (#2425) 2023-02-07 08:40:00 +02:00
config.go chore(deps): Update otel/metric to stable API (#2607) 2023-05-24 12:07:43 +03:00
go.mod Bump to 9.1.0 (#2676) 2023-08-16 18:30:40 +03:00
go.sum chore(deps): Update otel/metric to stable API (#2607) 2023-05-24 12:07:43 +03:00
metrics.go Format code and fix go vet (#2696) 2023-09-20 14:03:44 +03:00
redisotel_test.go chore: fix test 2023-01-30 10:19:36 +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{...})

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