Kerem Demirer
Kerem Demirer

Reputation: 1226

Azure Application Insights does not log Redis calls

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?

enter image description here

Upvotes: 13

Views: 5993

Answers (1)

Alex Bulankou
Alex Bulankou

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

Related Questions