Share via

Want to know the connected clients for "Azure Cache for Redis" resource

Abhishek Vastar (Accenture International Limited) 40 Reputation points Microsoft External Staff
2026-02-18T06:03:14.43+00:00

Hello Team,
I want to identify which applications or services are currently connected to this Azure Cache for Redis instance, including active client connections, for analysis and troubleshooting purposes.

Azure Cache for Redis
Azure Cache for Redis

An Azure service that provides access to a secure, dedicated Redis cache, managed by Microsoft.

{count} votes

Answer accepted by question author
  1. Ankit Yadav 12,205 Reputation points Microsoft External Staff Moderator
    2026-02-18T10:40:41.6366667+00:00

    Hello @Abhishek Vastar (Accenture International Limited)

    1. You can view the active number of connected clients to your Redis Cache from :-
      Azure portal -> Your Cache -> Monitoring -> Metrics -> ConnectedClients
      User's image source: https://learn.microsoft.com/en-us/azure/azure-monitor/reference/supported-metrics/microsoft-cache-redis-metrics
    2. If you are looking for the IP address (source IP) which are connecting to the Redis cache, you can enable connection auditing for your cache and review the output from there. In case if you are sending the logs to a log analytics workspace, you can use a KQL query to filter out the details of the client IPs.
      Sample KQL query that can be used :-
         ACRConnectedClientList
         | project TimeGenerated, ClientIp
      
      [Note: You may notice some internal Microsoft IP addresses, which are the private IPs used by Microsoft for Redis management and essential operations.]

    References:

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.