StackExchange.Redis

编辑

快速入门

编辑

可以通过引用 Elastic.Apm.StackExchange.Redis 包并在 IConnectionMultiplexer 上调用 Elastic.Apm.StackExchange.Redis 中定义的 UseElasticApm() 扩展方法来启用 StackExchange.Redis 的检测。

// using Elastic.Apm.StackExchange.Redis;

var connection = await ConnectionMultiplexer.ConnectAsync("<redis connection>");
connection.UseElasticApm();

一个回调函数已注册到 IConnectionMultiplexer,为每个事务和跨度提供概要分析会话,从而捕获使用 IConnectionMultiplexer 发送的 Redis 命令。