Documentation ¶
Overview ¶
Package redigo provides functions to trace the gomodule/redigo package (https://github.com/gomodule/redigo).
Example ¶
To start tracing Redis commands, use the TracedDial function to create a connection, passing in a service name of choice.
package main import ( "context" "log" redigotrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gomodule/redigo" "gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" ) func main() { c, err := redigotrace.Dial("tcp", "127.0.0.1:6379") if err != nil { log.Fatal(err) } // Emit spans per command by using your Redis connection as usual c.Do("SET", "vehicle", "truck") // Use a context to pass information down the call chain root, ctx := tracer.StartSpanFromContext(context.Background(), "parent.request", tracer.ServiceName("web"), tracer.ResourceName("/home"), ) // When passed a context as the final argument, c.Do will emit a span inheriting from 'parent.request' c.Do("SET", "food", "cheese", ctx) root.Finish() }
Output:
Example (DialURL) ¶
Alternatively, provide a redis URL to the TracedDialURL function
package main import ( "log" redigotrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gomodule/redigo" ) func main() { c, err := redigotrace.DialURL("redis://127.0.0.1:6379") if err != nil { log.Fatal(err) } c.Do("SET", "vehicle", "truck") }
Output:
Example (Pool) ¶
When using a redigo Pool, set your Dial function to return a traced connection
package main import ( redigotrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gomodule/redigo" "github.com/gomodule/redigo/redis" ) func main() { pool := &redis.Pool{ Dial: func() (redis.Conn, error) { return redigotrace.Dial("tcp", "127.0.0.1:6379", redigotrace.WithServiceName("my-redis-backend"), ) }, } c := pool.Get() c.Do("SET", " whiskey", " glass") }
Output:
Example (TracedConn) ¶
package main import ( "context" "log" "time" redigotrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gomodule/redigo" "gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" "github.com/gomodule/redigo/redis" ) func main() { c, err := redigotrace.Dial("tcp", "127.0.0.1:6379", redigotrace.WithServiceName("my-redis-backend"), redis.DialKeepAlive(time.Minute), ) if err != nil { log.Fatal(err) } // Emit spans per command by using your Redis connection as usual c.Do("SET", "vehicle", "truck") // Use a context to pass information down the call chain root, ctx := tracer.StartSpanFromContext(context.Background(), "parent.request", tracer.ServiceName("web"), tracer.ResourceName("/home"), ) // When passed a context as the final argument, c.Do will emit a span inheriting from 'parent.request' c.Do("SET", "food", "cheese", ctx) root.Finish() }
Output:
Index ¶
- func Dial(network, address string, options ...interface{}) (redis.Conn, error)
- func DialContext(ctx context.Context, network, address string, options ...interface{}) (redis.Conn, error)
- func DialURL(rawurl string, options ...interface{}) (redis.Conn, error)
- type Conn
- type ConnWithContext
- type ConnWithTimeout
- type DialOption
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Dial ¶
Dial dials into the network address and returns a traced redis.Conn. The set of supported options must be either of type redis.DialOption or this package's DialOption.
func DialContext ¶ added in v1.44.0
func DialContext(ctx context.Context, network, address string, options ...interface{}) (redis.Conn, error)
DialContext dials into the network address using redis.DialContext and returns a traced redis.Conn. The set of supported options must be either of type redis.DialOption or this package's DialOption.
func DialURL ¶
DialURL connects to a Redis server at the given URL using the Redis URI scheme. URLs should follow the draft IANA specification for the scheme (https://www.iana.org/assignments/uri-schemes/prov/redis). The returned redis.Conn is traced.
Types ¶
type Conn ¶
Conn is an implementation of the redis.Conn interface that supports tracing
func (Conn) Do ¶
Do wraps redis.Conn.Do. It sends a command to the Redis server and returns the received reply. In the process it emits a span containing key information about the command sent. When passed a context.Context as the final argument, Do will ensure that any span created inherits from this context. The rest of the arguments are passed through to the Redis server unchanged.
type ConnWithContext ¶ added in v1.44.0
type ConnWithContext struct { redis.ConnWithContext // contains filtered or unexported fields }
ConnWithContext is an implementation of the redis.ConnWithContext interface that supports tracing
func (ConnWithContext) Do ¶ added in v1.44.0
func (tc ConnWithContext) Do(commandName string, args ...interface{}) (reply interface{}, err error)
Do wraps redis.Conn.Do. It sends a command to the Redis server and returns the received reply. In the process it emits a span containing key information about the command sent. Do will ensure that any span created inherits from the context passed as argument. The rest of the arguments are passed through to the Redis server unchanged.
func (ConnWithContext) DoContext ¶ added in v1.44.0
func (tc ConnWithContext) DoContext(ctx context.Context, commandName string, args ...interface{}) (reply interface{}, err error)
DoContext wraps redis.Conn.DoContext. It sends a command to the Redis server and returns the received reply. In the process it emits a span containing key information about the command sent. Do will ensure that any span created inherits from the context passed as argument. The rest of the arguments are passed through to the Redis server unchanged.
type ConnWithTimeout ¶ added in v1.24.0
type ConnWithTimeout struct { redis.ConnWithTimeout // contains filtered or unexported fields }
ConnWithTimeout is an implementation of the redis.ConnWithTimeout interface that supports tracing
func (ConnWithTimeout) Do ¶ added in v1.24.0
func (tc ConnWithTimeout) Do(commandName string, args ...interface{}) (reply interface{}, err error)
Do wraps redis.Conn.Do. It sends a command to the Redis server and returns the received reply. In the process it emits a span containing key information about the command sent. When passed a context.Context as the final argument, Do will ensure that any span created inherits from this context. The rest of the arguments are passed through to the Redis server unchanged.
func (ConnWithTimeout) DoWithTimeout ¶ added in v1.24.0
func (tc ConnWithTimeout) DoWithTimeout(readTimeout time.Duration, commandName string, args ...interface{}) (reply interface{}, err error)
DoWithTimeout wraps redis.Conn.DoWithTimeout. It sends a command to the Redis server and returns the received reply. In the process it emits a span containing key information about the command sent. When passed a context.Context as the final argument, Do will ensure that any span created inherits from this context. The rest of the arguments are passed through to the Redis server unchanged.
type DialOption ¶
type DialOption func(*dialConfig)
DialOption represents an option that can be passed to Dial.
func WithAnalytics ¶
func WithAnalytics(on bool) DialOption
WithAnalytics enables Trace Analytics for all started spans.
func WithAnalyticsRate ¶
func WithAnalyticsRate(rate float64) DialOption
WithAnalyticsRate sets the sampling rate for Trace Analytics events correlated to started spans.
func WithContextConnection ¶ added in v1.44.0
func WithContextConnection() DialOption
WithContextConnection wraps the connection with redis.ConnWithContext.
func WithDefaultConnection ¶ added in v1.44.0
func WithDefaultConnection() DialOption
WithDefaultConnection overrides the default connectionType to not be connectionTypeWithTimeout.
func WithServiceName ¶
func WithServiceName(name string) DialOption
WithServiceName sets the given service name for the dialled connection.
func WithTimeoutConnection ¶ added in v1.44.0
func WithTimeoutConnection() DialOption
WithTimeoutConnection wraps the connection with redis.ConnWithTimeout.