Azure Firewall active instances

Christian80 0 Reputation points
2025-03-24T09:50:13.0833333+00:00

Hello,

I've an Azure Fw Standard SKU, I know that can scale up to 20 instances. I would like to know if I can monitor the active instances

Thanks

Azure Firewall
Azure Firewall
An Azure network security service that is used to protect Azure Virtual Network resources.
779 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Alex Burlachenko 9,780 Reputation points
    2025-03-24T12:48:20.75+00:00

    Hi Christian,

    3 ways to you can easily monitor your Azure Firewall's active instances

    1 Quick Portal Check. Go to your Azure Firewall resource under Monitoring -> Metrics Select "Firewall Health Status" View "Instance Count"

    2 Using PowerShell

    # Connect to Azure first (if not already connected)
    Connect-AzAccount
    
    # Get firewall instance count
    $firewall = Get-AzFirewall -Name "Your-Firewall-Name" -ResourceGroupName "Your-RG"
    $metrics = Get-AzMetric -ResourceId $firewall.Id -MetricName "FirewallHealth" -TimeGrain 00:01:00
    
    # Display current instance count
    $latest = $metrics.Data | Sort-Object -Property Timestamp -Descending | Select-Object -First 1
    Write-Output "Active instances: $($latest.FirewallInstanceCount)"
    
    1. Azure CLI Option
    az monitor metrics list 
    

    Your Standard SKU auto-scales (2-20 instances). High counts usually mean heavy traffic. Data updates every 1-5 minutes.

    Best regards,

    Alex

    P.S. If my answer help to you, please Accept my answer


Your answer

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