Reputation: 1226
We just implemented Azure Application Insights service for our application. The service logs all of our remote dependencies but Redis calls, which we use for Session
and .Net OutputCache
. Redis wrapper is StackExchange.Redis.StrongName
.
Has anyone faced the issue?
Upvotes: 13
Views: 5993
Reputation: 2456
Redis client is communicating via RESP protocol over TCP connection (port 6379), which is not supported by Application Insights Dependency Collector that we provide. Implementing a custom dependency collection module for Redis should be possible (please see our GH repository for examples) or you can just call TrackDependency API manually.
Upvotes: 9