redis/extra/rediscensus/rediscensus.go

51 lines
1.3 KiB
Go
Raw Normal View History

2020-10-21 15:19:27 +03:00
package rediscensus
import (
"context"
2021-09-08 16:00:52 +03:00
"go.opencensus.io/trace"
2022-06-04 17:39:21 +03:00
"github.com/go-redis/redis/extra/rediscmd/v9"
"github.com/go-redis/redis/v9"
2020-10-21 15:19:27 +03:00
)
type TracingHook struct{}
2021-04-16 15:00:10 +03:00
var _ redis.Hook = (*TracingHook)(nil)
func NewTracingHook() *TracingHook {
return new(TracingHook)
}
2020-10-21 15:19:27 +03:00
func (TracingHook) BeforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) {
ctx, span := trace.StartSpan(ctx, cmd.FullName())
span.AddAttributes(trace.StringAttribute("db.system", "redis"),
trace.StringAttribute("redis.cmd", rediscmd.CmdString(cmd)))
return ctx, nil
}
func (TracingHook) AfterProcess(ctx context.Context, cmd redis.Cmder) error {
span := trace.FromContext(ctx)
if err := cmd.Err(); err != nil {
recordErrorOnOCSpan(ctx, span, err)
}
span.End()
return nil
}
func (TracingHook) BeforeProcessPipeline(ctx context.Context, cmds []redis.Cmder) (context.Context, error) {
return ctx, nil
}
func (TracingHook) AfterProcessPipeline(ctx context.Context, cmds []redis.Cmder) error {
return nil
}
func recordErrorOnOCSpan(ctx context.Context, span *trace.Span, err error) {
if err != redis.Nil {
span.AddAttributes(trace.BoolAttribute("error", true))
span.Annotate([]trace.Attribute{trace.StringAttribute("Error", "redis error")}, err.Error())
}
}