Azure Application Insights does not register Redis calls

We have just implemented the Azure Application Insights service for our application. The service logs all our remote dependencies, but the Redis calls that we use for Session and .Net OutputCache . Redis Shell StackExchange.Redis.StrongName .

Has anyone encountered a problem?

enter image description here

+5
source share
1 answer

The Redis client communicates via RESP over a TCP connection (port 6379) , which is not supported by the Application Insights Dependency Collector that we provide. Implementing a custom dependency collection module for Redis should be possible ( see our GH repository for examples ), or you can just call the TrackDependency API .

+2
source

Source: https://habr.com/ru/post/1242557/


All Articles