Skip to content

opentracing-contrib/goredis

Repository files navigation

goredis

A middleware for goredis to use OpenTracing

import (
  "net/http"

  "github.com/go-redis/redis"

  apmgoredis "github.com/opentracing-contrib/goredis"
)

var redisClient *redis.Client // initialized at program startup

func handleRequest(w http.ResponseWriter, req *http.Request) {
  // Wrap and bind redisClient to the request context. If the HTTP
  // server is instrumented with Elastic APM (e.g. with apmhttp),
  // Redis commands will be reported as spans within the request's
  // transaction.
  client := apmgoredis.Wrap(redisClient).WithContext(req.Context())
  ...
}

Example: goredis-example

GoRedis Example 1

GoRedis Example 2

About

a middleware for go-redis/redis to use opentracing

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages