module/apmgoredisv8/hook.go (50 lines of code) (raw):
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package apmgoredisv8 // import "go.elastic.co/apm/module/apmgoredisv8/v2"
import (
"bytes"
"context"
"strings"
"github.com/go-redis/redis/v8"
"go.elastic.co/apm/v2"
)
// hook is an implementation of redis.Hook that reports cmds as spans to Elastic APM.
type hook struct{}
// NewHook returns a redis.Hook that reports cmds as spans to Elastic APM.
func NewHook() redis.Hook {
return &hook{}
}
// BeforeProcess initiates the span for the redis cmd
func (r *hook) BeforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) {
_, ctx = apm.StartSpanOptions(ctx, getCmdName(cmd), "db.redis", apm.SpanOptions{
ExitSpan: true,
})
return ctx, nil
}
// AfterProcess ends the initiated span from BeforeProcess
func (r *hook) AfterProcess(ctx context.Context, cmd redis.Cmder) error {
if span := apm.SpanFromContext(ctx); span != nil {
span.End()
}
return nil
}
// BeforeProcessPipeline initiates the span for the redis cmds
func (r *hook) BeforeProcessPipeline(ctx context.Context, cmds []redis.Cmder) (context.Context, error) {
// Join all cmd names with ", ".
var cmdNameBuf bytes.Buffer
for i, cmd := range cmds {
if i != 0 {
cmdNameBuf.WriteString(", ")
}
cmdNameBuf.WriteString(getCmdName(cmd))
}
_, ctx = apm.StartSpanOptions(ctx, cmdNameBuf.String(), "db.redis", apm.SpanOptions{
ExitSpan: true,
})
return ctx, nil
}
// AfterProcess ends the initiated span from BeforeProcessPipeline
func (r *hook) AfterProcessPipeline(ctx context.Context, cmds []redis.Cmder) error {
if span := apm.SpanFromContext(ctx); span != nil {
span.End()
}
return nil
}
func getCmdName(cmd redis.Cmder) string {
cmdName := strings.ToUpper(cmd.Name())
if cmdName == "" {
cmdName = "(empty command)"
}
return cmdName
}