2016-11-30 13:39:14 +03:00
|
|
|
package redis_test
|
|
|
|
|
|
|
|
import (
|
2019-05-31 16:36:57 +03:00
|
|
|
"context"
|
2016-11-30 13:39:14 +03:00
|
|
|
"fmt"
|
|
|
|
|
2019-08-08 14:29:44 +03:00
|
|
|
"github.com/go-redis/redis/v7"
|
2016-11-30 13:39:14 +03:00
|
|
|
)
|
|
|
|
|
2019-05-31 16:36:57 +03:00
|
|
|
type redisHook struct{}
|
|
|
|
|
|
|
|
var _ redis.Hook = redisHook{}
|
|
|
|
|
|
|
|
func (redisHook) BeforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) {
|
|
|
|
fmt.Printf("starting processing: <%s>\n", cmd)
|
|
|
|
return ctx, nil
|
|
|
|
}
|
|
|
|
|
2019-07-11 11:58:46 +03:00
|
|
|
func (redisHook) AfterProcess(ctx context.Context, cmd redis.Cmder) error {
|
2019-05-31 16:36:57 +03:00
|
|
|
fmt.Printf("finished processing: <%s>\n", cmd)
|
2019-07-11 11:58:46 +03:00
|
|
|
return nil
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (redisHook) BeforeProcessPipeline(ctx context.Context, cmds []redis.Cmder) (context.Context, error) {
|
|
|
|
fmt.Printf("pipeline starting processing: %v\n", cmds)
|
|
|
|
return ctx, nil
|
|
|
|
}
|
|
|
|
|
2019-07-11 11:58:46 +03:00
|
|
|
func (redisHook) AfterProcessPipeline(ctx context.Context, cmds []redis.Cmder) error {
|
2019-05-31 16:36:57 +03:00
|
|
|
fmt.Printf("pipeline finished processing: %v\n", cmds)
|
2019-07-11 11:58:46 +03:00
|
|
|
return nil
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
2016-11-30 13:39:14 +03:00
|
|
|
func Example_instrumentation() {
|
2019-05-31 16:36:57 +03:00
|
|
|
rdb := redis.NewClient(&redis.Options{
|
2018-01-20 13:26:33 +03:00
|
|
|
Addr: ":6379",
|
2016-11-30 13:39:14 +03:00
|
|
|
})
|
2019-05-31 16:36:57 +03:00
|
|
|
rdb.AddHook(redisHook{})
|
2016-11-30 13:39:14 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rdb.Ping(ctx)
|
2018-01-20 13:26:33 +03:00
|
|
|
// Output: starting processing: <ping: >
|
|
|
|
// finished processing: <ping: PONG>
|
2016-11-30 13:39:14 +03:00
|
|
|
}
|
|
|
|
|
2018-03-07 12:56:24 +03:00
|
|
|
func ExamplePipeline_instrumentation() {
|
2019-05-31 16:36:57 +03:00
|
|
|
rdb := redis.NewClient(&redis.Options{
|
2018-01-20 13:26:33 +03:00
|
|
|
Addr: ":6379",
|
|
|
|
})
|
2019-05-31 16:36:57 +03:00
|
|
|
rdb.AddHook(redisHook{})
|
2016-11-30 13:39:14 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rdb.Pipelined(ctx, func(pipe redis.Pipeliner) error {
|
|
|
|
pipe.Ping(ctx)
|
|
|
|
pipe.Ping(ctx)
|
2018-01-20 13:26:33 +03:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
// Output: pipeline starting processing: [ping: ping: ]
|
|
|
|
// pipeline finished processing: [ping: PONG ping: PONG]
|
2016-11-30 13:39:14 +03:00
|
|
|
}
|
2019-12-29 13:06:43 +03:00
|
|
|
|
|
|
|
func ExampleWatch_instrumentation() {
|
|
|
|
rdb := redis.NewClient(&redis.Options{
|
|
|
|
Addr: ":6379",
|
|
|
|
})
|
|
|
|
rdb.AddHook(redisHook{})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rdb.Watch(ctx, func(tx *redis.Tx) error {
|
|
|
|
tx.Ping(ctx)
|
|
|
|
tx.Ping(ctx)
|
2019-12-29 13:06:43 +03:00
|
|
|
return nil
|
|
|
|
}, "foo")
|
|
|
|
// Output:
|
|
|
|
// starting processing: <watch foo: >
|
|
|
|
// finished processing: <watch foo: OK>
|
|
|
|
// starting processing: <ping: >
|
|
|
|
// finished processing: <ping: PONG>
|
|
|
|
// starting processing: <ping: >
|
|
|
|
// finished processing: <ping: PONG>
|
|
|
|
// starting processing: <unwatch: >
|
|
|
|
// finished processing: <unwatch: OK>
|
|
|
|
}
|