forked from DataDog/dd-trace-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,008 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed | ||
// under the Apache License Version 2.0. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2016 Datadog, Inc. | ||
|
||
package redis_test | ||
|
||
import ( | ||
"context" | ||
"time" | ||
|
||
redistrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/go-redis/redis.v9" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/ext" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" | ||
|
||
"github.com/redis/go-redis/v9" | ||
) | ||
|
||
// To start tracing Redis, simply create a new client using the library and continue | ||
// using as you normally would. | ||
func Example() { | ||
ctx := context.Background() | ||
// create a new Client | ||
opts := &redis.Options{Addr: "127.0.0.1", Password: "", DB: 0} | ||
c := redistrace.NewClient(opts) | ||
|
||
// any action emits a span | ||
c.Set(ctx, "test_key", "test_value", 0) | ||
|
||
// optionally, create a new root span | ||
root, ctx := tracer.StartSpanFromContext(context.Background(), "parent.request", | ||
tracer.SpanType(ext.SpanTypeRedis), | ||
tracer.ServiceName("web"), | ||
tracer.ResourceName("/home"), | ||
) | ||
|
||
// commit further commands, which will inherit from the parent in the context. | ||
c.Set(ctx, "food", "cheese", 0) | ||
root.Finish() | ||
} | ||
|
||
// You can also trace Redis Pipelines. Simply use as usual and the traces will be | ||
// automatically picked up by the underlying implementation. | ||
func Example_pipeliner() { | ||
ctx := context.Background() | ||
// create a client | ||
opts := &redis.Options{Addr: "127.0.0.1", Password: "", DB: 0} | ||
c := redistrace.NewClient(opts, redistrace.WithServiceName("my-redis-service")) | ||
|
||
// open the pipeline | ||
pipe := c.Pipeline() | ||
|
||
// submit some commands | ||
pipe.Incr(ctx, "pipeline_counter") | ||
pipe.Expire(ctx, "pipeline_counter", time.Hour) | ||
|
||
// execute with trace | ||
pipe.Exec(ctx) | ||
} | ||
|
||
// You can create a traced ClusterClient using WrapClient | ||
func Example_wrapClient() { | ||
c := redis.NewClusterClient(&redis.ClusterOptions{}) | ||
redistrace.WrapClient(c) | ||
|
||
//Do something, passing in any relevant context | ||
c.Incr(context.TODO(), "my_counter") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed | ||
// under the Apache License Version 2.0. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2016 Datadog, Inc. | ||
|
||
package redis | ||
|
||
import ( | ||
"math" | ||
|
||
"gopkg.in/DataDog/dd-trace-go.v1/internal" | ||
"gopkg.in/DataDog/dd-trace-go.v1/internal/namingschema" | ||
) | ||
|
||
const defaultServiceName = "redis.client" | ||
|
||
type clientConfig struct { | ||
serviceName string | ||
spanName string | ||
analyticsRate float64 | ||
skipRaw bool | ||
errCheck func(err error) bool | ||
} | ||
|
||
// ClientOption represents an option that can be used to create or wrap a client. | ||
type ClientOption func(*clientConfig) | ||
|
||
func defaults(cfg *clientConfig) { | ||
cfg.serviceName = namingschema.ServiceNameOverrideV0(defaultServiceName, defaultServiceName) | ||
cfg.spanName = namingschema.OpName(namingschema.RedisOutbound) | ||
// cfg.analyticsRate = globalconfig.AnalyticsRate() | ||
if internal.BoolEnv("DD_TRACE_REDIS_ANALYTICS_ENABLED", false) { | ||
cfg.analyticsRate = 1.0 | ||
} else { | ||
cfg.analyticsRate = math.NaN() | ||
} | ||
cfg.errCheck = func(error) bool { return true } | ||
} | ||
|
||
// WithSkipRawCommand reports whether to skip setting the "redis.raw_command" tag | ||
// on instrumenation spans. This may be useful if the Datadog Agent is not | ||
// set up to obfuscate this value and it could contain sensitive information. | ||
func WithSkipRawCommand(skip bool) ClientOption { | ||
return func(cfg *clientConfig) { | ||
cfg.skipRaw = skip | ||
} | ||
} | ||
|
||
// WithServiceName sets the given service name for the client. | ||
func WithServiceName(name string) ClientOption { | ||
return func(cfg *clientConfig) { | ||
cfg.serviceName = name | ||
} | ||
} | ||
|
||
// WithAnalytics enables Trace Analytics for all started spans. | ||
func WithAnalytics(on bool) ClientOption { | ||
return func(cfg *clientConfig) { | ||
if on { | ||
cfg.analyticsRate = 1.0 | ||
} else { | ||
cfg.analyticsRate = math.NaN() | ||
} | ||
} | ||
} | ||
|
||
// WithAnalyticsRate sets the sampling rate for Trace Analytics events | ||
// correlated to started spans. | ||
func WithAnalyticsRate(rate float64) ClientOption { | ||
return func(cfg *clientConfig) { | ||
if rate >= 0.0 && rate <= 1.0 { | ||
cfg.analyticsRate = rate | ||
} else { | ||
cfg.analyticsRate = math.NaN() | ||
} | ||
} | ||
} | ||
|
||
// WithErrorCheck specifies a function fn which determines whether the passed | ||
// error should be marked as an error. | ||
func WithErrorCheck(fn func(err error) bool) ClientOption { | ||
return func(cfg *clientConfig) { | ||
cfg.errCheck = fn | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed | ||
// under the Apache License Version 2.0. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2016 Datadog, Inc. | ||
|
||
// Package redis provides tracing functions for tracing the go-redis/redis package (https://github.com/redis/go-redis). | ||
// This package supports versions up to go-redis 9.5.1. | ||
package redis | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"math" | ||
"net" | ||
"strconv" | ||
"strings" | ||
|
||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/ext" | ||
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" | ||
"gopkg.in/DataDog/dd-trace-go.v1/internal/telemetry" | ||
|
||
"github.com/redis/go-redis/v9" | ||
) | ||
|
||
const componentName = "go-redis/redis.v9" | ||
|
||
func init() { | ||
telemetry.LoadIntegration(componentName) | ||
tracer.MarkIntegrationImported("github.com/redis/go-redis/v9") | ||
} | ||
|
||
type datadogHook struct { | ||
*params | ||
} | ||
|
||
// params holds the tracer and a set of parameters which are recorded with every trace. | ||
type params struct { | ||
config *clientConfig | ||
additionalTags []ddtrace.StartSpanOption | ||
} | ||
|
||
// NewClient returns a new Client that is traced with the default tracer under | ||
// the service name "redis". | ||
func NewClient(opt *redis.Options, opts ...ClientOption) redis.UniversalClient { | ||
client := redis.NewClient(opt) | ||
WrapClient(client, opts...) | ||
return client | ||
} | ||
|
||
// WrapClient adds a hook to the given client that traces with the default tracer under | ||
// the service name "redis". | ||
func WrapClient(client redis.UniversalClient, opts ...ClientOption) { | ||
cfg := new(clientConfig) | ||
defaults(cfg) | ||
for _, fn := range opts { | ||
fn(cfg) | ||
} | ||
|
||
hookParams := ¶ms{ | ||
additionalTags: additionalTagOptions(client), | ||
config: cfg, | ||
} | ||
client.AddHook(&datadogHook{params: hookParams}) | ||
} | ||
|
||
type clientOptions interface { | ||
Options() *redis.Options | ||
} | ||
|
||
type clusterOptions interface { | ||
Options() *redis.ClusterOptions | ||
} | ||
|
||
func additionalTagOptions(client redis.UniversalClient) []ddtrace.StartSpanOption { | ||
additionalTags := []ddtrace.StartSpanOption{} | ||
if clientOptions, ok := client.(clientOptions); ok { | ||
opt := clientOptions.Options() | ||
if opt.Addr == "FailoverClient" { | ||
additionalTags = []ddtrace.StartSpanOption{ | ||
tracer.Tag("out.db", strconv.Itoa(opt.DB)), | ||
tracer.Tag(ext.RedisDatabaseIndex, opt.DB), | ||
} | ||
} else { | ||
host, port, err := net.SplitHostPort(opt.Addr) | ||
if err != nil { | ||
host = opt.Addr | ||
port = "6379" | ||
} | ||
additionalTags = []ddtrace.StartSpanOption{ | ||
tracer.Tag(ext.TargetHost, host), | ||
tracer.Tag(ext.TargetPort, port), | ||
tracer.Tag("out.db", strconv.Itoa(opt.DB)), | ||
tracer.Tag(ext.RedisDatabaseIndex, opt.DB), | ||
} | ||
} | ||
} else if clientOptions, ok := client.(clusterOptions); ok { | ||
addrs := []string{} | ||
for _, addr := range clientOptions.Options().Addrs { | ||
addrs = append(addrs, addr) | ||
} | ||
additionalTags = []ddtrace.StartSpanOption{ | ||
tracer.Tag("addrs", strings.Join(addrs, ", ")), | ||
} | ||
} | ||
return additionalTags | ||
} | ||
|
||
func (ddh *datadogHook) DialHook(next redis.DialHook) redis.DialHook { | ||
return next | ||
} | ||
|
||
func (ddh *datadogHook) ProcessHook(next redis.ProcessHook) redis.ProcessHook { | ||
return func(ctx context.Context, cmd redis.Cmder) error { | ||
var err error | ||
ctx, err = ddh.beforeProcess(ctx, cmd) | ||
if err != nil { | ||
return err | ||
} | ||
next(ctx, cmd) | ||
return ddh.afterProcess(ctx, cmd) | ||
} | ||
} | ||
|
||
func (ddh *datadogHook) ProcessPipelineHook(next redis.ProcessPipelineHook) redis.ProcessPipelineHook { | ||
return func(ctx context.Context, cmds []redis.Cmder) error { | ||
var err error | ||
ctx, err = ddh.beforeProcessPipeline(ctx, cmds) | ||
if err != nil { | ||
return err | ||
} | ||
next(ctx, cmds) | ||
return ddh.afterProcessPipeline(ctx, cmds) | ||
} | ||
} | ||
|
||
func (ddh *datadogHook) beforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) { | ||
raw := strings.TrimSpace(cmd.String()) | ||
first := strings.SplitN(raw, " ", 2)[0] | ||
length := strings.Count(raw, " ") + 1 | ||
p := ddh.params | ||
opts := make([]ddtrace.StartSpanOption, 0, 4+1+len(ddh.additionalTags)+1) // 4 options below + redis.raw_command + ddh.additionalTags + analyticsRate | ||
opts = append(opts, | ||
tracer.SpanType(ext.SpanTypeRedis), | ||
tracer.ServiceName(p.config.serviceName), | ||
tracer.ResourceName(first), | ||
tracer.Tag("redis.args_length", strconv.Itoa(length)), | ||
tracer.Tag(ext.Component, componentName), | ||
tracer.Tag(ext.SpanKind, ext.SpanKindClient), | ||
tracer.Tag(ext.DBSystem, ext.DBSystemRedis), | ||
) | ||
if !p.config.skipRaw { | ||
opts = append(opts, tracer.Tag("redis.raw_command", raw)) | ||
} | ||
opts = append(opts, ddh.additionalTags...) | ||
if !math.IsNaN(p.config.analyticsRate) { | ||
opts = append(opts, tracer.Tag(ext.EventSampleRate, p.config.analyticsRate)) | ||
} | ||
_, ctx = tracer.StartSpanFromContext(ctx, p.config.spanName, opts...) | ||
return ctx, nil | ||
} | ||
|
||
func (ddh *datadogHook) afterProcess(ctx context.Context, cmd redis.Cmder) error { | ||
var span tracer.Span | ||
span, _ = tracer.SpanFromContext(ctx) | ||
var finishOpts []ddtrace.FinishOption | ||
errRedis := cmd.Err() | ||
if errRedis != redis.Nil && ddh.config.errCheck(errRedis) { | ||
finishOpts = append(finishOpts, tracer.WithError(errRedis)) | ||
} | ||
span.Finish(finishOpts...) | ||
return nil | ||
} | ||
|
||
func (ddh *datadogHook) beforeProcessPipeline(ctx context.Context, cmds []redis.Cmder) (context.Context, error) { | ||
raw := strings.TrimSpace(commandsToString(cmds)) | ||
first := strings.SplitN(raw, " ", 2)[0] | ||
length := strings.Count(raw, " ") + 1 | ||
p := ddh.params | ||
opts := make([]ddtrace.StartSpanOption, 0, 5+1+len(ddh.additionalTags)+1) // 5 options below + redis.raw_command + ddh.additionalTags + analyticsRate | ||
opts = append(opts, | ||
tracer.SpanType(ext.SpanTypeRedis), | ||
tracer.ServiceName(p.config.serviceName), | ||
tracer.ResourceName(first), | ||
tracer.Tag("redis.args_length", strconv.Itoa(length)), | ||
tracer.Tag("redis.pipeline_length", strconv.Itoa(len(cmds))), | ||
tracer.Tag(ext.Component, componentName), | ||
tracer.Tag(ext.SpanKind, ext.SpanKindClient), | ||
tracer.Tag(ext.DBSystem, ext.DBSystemRedis), | ||
) | ||
if !p.config.skipRaw { | ||
opts = append(opts, tracer.Tag("redis.raw_command", raw)) | ||
} | ||
opts = append(opts, ddh.additionalTags...) | ||
if !math.IsNaN(p.config.analyticsRate) { | ||
opts = append(opts, tracer.Tag(ext.EventSampleRate, p.config.analyticsRate)) | ||
} | ||
_, ctx = tracer.StartSpanFromContext(ctx, p.config.spanName, opts...) | ||
return ctx, nil | ||
} | ||
|
||
func (ddh *datadogHook) afterProcessPipeline(ctx context.Context, cmds []redis.Cmder) error { | ||
var span tracer.Span | ||
span, _ = tracer.SpanFromContext(ctx) | ||
var finishOpts []ddtrace.FinishOption | ||
for _, cmd := range cmds { | ||
errCmd := cmd.Err() | ||
if errCmd != redis.Nil && ddh.config.errCheck(errCmd) { | ||
finishOpts = append(finishOpts, tracer.WithError(errCmd)) | ||
} | ||
} | ||
span.Finish(finishOpts...) | ||
return nil | ||
} | ||
|
||
// commandsToString returns a string representation of a slice of redis Commands, separated by newlines. | ||
func commandsToString(cmds []redis.Cmder) string { | ||
var b bytes.Buffer | ||
for _, cmd := range cmds { | ||
b.WriteString(cmd.String()) | ||
b.WriteString("\n") | ||
} | ||
return b.String() | ||
} |
Oops, something went wrong.