Network Watcher - Enable

JB 20 Reputation points

We continue to receive the recommendation to enable Network Watcher, but Network Watcher is showing that it is enabled.

What are we missing?

  1. JB 20 Reputation points

    Thank you for your response. This is how we're currently set in Network Watcher.

    πŸ‘ User's image

  2. Venkatesan S 9,305 Reputation points β€’ Microsoft External Staff β€’ Moderator

    Hi JB,

    Thanks for sharing the screenshot.

    Azure Advisor scans all regions containing networking resources (VNets, NICs, NSGs, Load Balancers, etc.) and flags any without a corresponding Network Watcher instance like NetworkWatcher_<region>. Your screenshot shows coverage for East US/East US 2, but overlooked resources elsewhere (common in multi-region setups) trigger the alert. Advisor ignores the Network Watcher blade and focuses on resource locations.

    Run it in Azure Resource Graph Explorer (portal search):

    Resources
    | where type in (
    "microsoft.network/virtualnetworks",
    "microsoft.network/networkinterfaces",
    "microsoft.network/networksecuritygroups",
    "microsoft.network/loadbalancers",
    "microsoft.network/applicationgateways"
    )
    | summarize count() by location
    
    • Match results against az network watcher list output.
    • Enable NW in any gaps: az network watcher configure --locations "<region>" --enabled true.

    Kindly let us know if the above helps or you need further assistance on this issue.

    Please β€œup-vote” wherever the information provided helps you, this can be beneficial to other community members.

  3. Venkatesan S 9,305 Reputation points β€’ Microsoft External Staff β€’ Moderator

    Hi JB,

    We haven’t heard back from you regarding our last response and wanted to check if you had the opportunity to review our previous post.

    Please β€œup-vote” if the information helped you. This will help us and others in the community as well.


Sign in to comment

Answer accepted by question author

Venkatesan S 9,305 Reputation points β€’ Microsoft External Staff β€’ Moderator

Hi JB,

Thanks for reaching out in Microsoft Q&A forum,

We continue to receive the recommendation to enable Network Watcher, but Network Watcher is showing that it is enabled. What are we missing?

Network Watcher recommendations often persist if the service is enabled at the subscription level but not provisioned in specific Azure regions where your resources reside.

Check the status:

In the Azure Portal, navigate to Network Watcher > Regions. Confirm "Enabled" status for all regions containing your VNets, VMs, or gateways disabled regions trigger alerts.

List via CLI:

az network watcher list --query "[?provisioningState=='Succeeded'].{Region:location}"

Enable in Required Regions:
For each region (e.g., "East US"):

az network watcher configure --resource-group NetworkWatcherRG --locations "East US" --enabled true

This creates the NetworkWatcherRG group and instance if needed.​

Azure Advisor scans all regions containing networking resources (VNets, NICs, NSGs, Load Balancers, etc.) and flags any without a corresponding Network Watcher instance like NetworkWatcher_<region>. Your screenshot shows coverage for East US/East US 2, but overlooked resources elsewhere (common in multi-region setups) trigger the alert. Advisor ignores the Network Watcher blade and focuses on resource locations.

Run it in Azure Resource Graph Explorer (portal search):

Kusto

Resources
| where type in (
"microsoft.network/virtualnetworks",
"microsoft.network/networkinterfaces",
"microsoft.network/networksecuritygroups",
"microsoft.network/loadbalancers",
"microsoft.network/applicationgateways"
)
| summarize count() by location
  • Match results against az network watcher list output.
  • Enable NW in any gaps: az network watcher configure --locations "<region>" --enabled true.

Official Docs:

Kindly let us know if the above helps or you need further assistance on this issue.

Please do not forget to πŸ‘ 210246-screenshot-2021-12-10-121802.png
and β€œup-vote” wherever the information provided helps you, this can be beneficial to other community members.

0 comments No comments

Sign in to comment

0 additional answers

Sign in to answer

Your answer