---
id: network-watcher
title: Azure Network Watcher
sidebar_label: Azure Network Watcher
description: The Sumo Logic app for Azure Network Watcher leverages Network Security Group (NSG) flow logs to provide real-time visibility and analysis of your Azure Network.
slug: /help/docs/integrations/microsoft-azure/network-watcher/
canonical: https://www.sumologic.com/help/docs/integrations/microsoft-azure/network-watcher/
---
import useBaseUrl from '@docusaurus/useBaseUrl';
The Sumo Logic app for Azure Network Watcher leverages Network Security Group (NSG) flow logs to provide real-time visibility and analysis of your Azure Network. This App provides preconfigured Dashboards that allow you to monitor inbound traffic, outliers in traffic flow, and denied traffic flows.
:::info
On September 30, 2027, Azure Network Watcher will retire Network Security Group (NSG) flow logs. Starting June 30, 2025, you will no longer be able to create new NSG flow logs. To avoid service disruptions, [migrate your existing NSG flow logs configuration to Virtual Network Flow Logs](https://learn.microsoft.com/en-gb/azure/network-watcher/nsg-flow-logs-migrate). After migration, configure [collection for Virtual Network Flow logs](/docs/integrations/microsoft-azure/azure-virtual-network.md#setup) and install the new Sumo Logic app for [Azure Virtual Network](/docs/integrations/microsoft-azure/azure-virtual-network).
:::
## Log types
The Sumo Logic App for Azure Network Watcher uses Network Security Group (NSG) flow logs. NSG flow logs provide ingress and egress IP traffic flow with the following information:
* Inbound and Outbound flows per Rule
* NIC and traffic flow
* 5-tuple information with respect to flow (Source/Destination IP and Port, Protocol)
* Allowed/Denied traffic flow.
### Sample log messages
```json
{
"time":"2017-09-27 21:22:33.443+0000",
"sys_id":"4181995a-801f-4075-a56c-30b3671148bf",
"category":"NetworkSecurityGroupFlowEvent",
"resource_id":"/SUBSCRIPTIONS/C088DC46-D692-42AD-A4B6-9A542D28AD2A/RESOURCEGROUPS/AZURELABS/PROVIDERS/MICROSOFT.NETWORK/NETWORKSECURITYGROUPS/NSG-AZURELABS-03",
"event_name":"NetworkSecurityGroupFlowEvents",
"rule_name":"All_prod_tcp",
"mac":"000D3AF86058",
"src_ip":"51.148.136.204",
"dest_IP":"107.198.121.243",
"src_port":"47676",
"dest_port":"4367",
"protocol":"T",
"traffic_destination":"I",
"traffic_a/d":"D"
}
```
### Sample queries
```sumo title="Denied Traffic Flow by Source Location"
_sourceCategory="security/flowlogs"
| json field=_raw "rule_name"
| json field=_raw "resource_id"
| json field=_raw "event_name"
| json field=_raw "mac"
| json field=_raw "src_ip"
| json field=_raw "dest_IP"
| json field=_raw "dest_port"
| json field=_raw "protocol"
| json field=_raw "traffic_destination"
| json field=_raw "traffic_a/d" as traffic_a_d
| parse regex field=resource_id"(?[\w-_.]+)$"
| json field=_raw "src_port"
| where traffic_a_d = "D"
| lookup latitude, longitude, country_code, country_name, region, city, postal_code, area_code, metro_code from geo://default on ip = src_ip
| count by latitude, longitude, country_code, country_name, region, city, postal_code, area_code, metro_code
| sort _count
```
## Collecting logs for the Azure Network Watcher app
This document provides instructions for configuring the collection of NSG Flow Logs for the Azure Network Watcher App.
### Configuration requirements
Before you begin configuring NSG Flow Log collection, make sure the following environment prerequisites are met:
* Your Storage Account must be of type General-purpose v2 or Blob storage.
* Your Network Security Group and Storage Account should be in same resource location.
* You also need to have Microsoft Authorization/role Assignments/write permissions, so they should be a "User Access Administrator" or "Owner".
Resource group names should not contains underscores (`_`).
### Step 1: Configure Azure Storage Account
In this step you configure a storage account to which you will export monitoring data for your Azure service.
The storage account must be a General-purpose v2 (GPv2) storage account
If you have a storage account with a container that you want to use for this purpose, make a note of its resource group, storage account name and container name and proceed to [step 2](#step-2-configure-an-http-source).
To configure an Azure storage account, do the following:
1. Create a new storage account General-purpose v2 (GPv2) storage account. For instructions, see [Create a storage account](https://docs.microsoft.com/en-us/azure/storage/common/storage-quickstart-create-account?tabs=portal) in Azure help.
2. Create a container(Optional) all services in azure create containers automatically. This step is needed only when you are exporting custom logs in some container.
* In the Azure portal, navigate to the storage account you just created (in the previous step).
* Select **Blobs** under **Blob Service**.
* Select **+ Container**,
* Enter the Name
* Select **Private** for the Public Access Level.
* Click **OK**.
Make a note of the container name. You will need to supply it later.
And now proceed to [step 2](#step-2-configure-an-http-source). By default, the flow logs are in `insights-logs-networksecuritygroupflowevent` container.
If you have a storage account that you want to use for this purpose, make a note of its resource group, storage account name, then proceed to [step 2](#step-2-configure-an-http-source). If you want to collect only flow logs from the storage account then you can add the filter `/blobServices/default/containers/insights-logs-networksecuritygroupflowevent/`.
### Step 2: Configure an HTTP Source
This section demonstrates how to configure an HTTP source to receive logs from the Azure function.
To configure an HTTP source for Azure, do the following:
1. Select a hosted collector where you want to configure the HTTP source. If desired, create a new hosted collector, as described on [Configure a Hosted Collector](/docs/send-data/hosted-collectors/configure-hosted-collector).
2. Configure an HTTP source, as described on [HTTP Logs and Metrics Source](/docs/send-data/hosted-collectors/http-source/logs-metrics). Make a note of the URL for the source, you will need it in the next step.
3. In **Advanced Options for Logs**, under **Timestamp Format**, click **Specify a format** and enter the following:
* Specify Format as epoch
* Specify Timestamp locator as `\"time\": (.*),`
### Step 3: Configure Azure Resources using ARM template
To deploy the ARM template-based Blob Storage collection, refer to step 3 of [Collect Logs from Azure Blob Storage](/docs/send-data/collect-from-other-data-sources/azure-blob-storage/block-blob/collect-logs#step-3-configure-azure-resources-using-arm-template).
### Step 4: Enable NSG flow logs via the Azure Portal
In this step, you enable NSG flow logs with the Azure portal.
* Follow the steps detailed in the [Microsoft Azure Network Watcher documentation](https://docs.microsoft.com/en-us/azure/network-watcher/network-watcher-nsg-flow-logging-portal#enable-nsg-flow-log) to enable the flow logs to point to the storage account you configured in the [Configure Azure Storage Account](#step-1-configure-azure-storage-account) section.
### Troubleshooting
If logs do not start flowing into Sumo Logic after you perform the configuration above, see [Troubleshoot Azure Blob Storage Log Collection](/docs/send-data/collect-from-other-data-sources/azure-blob-storage/troubleshoot-log-collection).
## Installing the Azure Network Watcher app
Now that you have configured Azure Network Watcher, install the Sumo Logic app for Azure Network Watcher to take advantage of the preconfigured searches and dashboards to analyze your data.
import AppInstall2 from '../../reuse/apps/app-install-v2.md';
## Viewing Azure Network Watcher dashboards
import ViewDashboards from '../../reuse/apps/view-dashboards.md';
### Overview
The **Network Watcher - Overview** dashboard provides general information of the NSG flow logs, including panels that drill-down into queries with NIC, tuple, and traffic flow information. This dashboard gives a good starting point for detecting outlier in denied traffic and geographic hotspots for inbound traffic. In addition, this dashboard allows you to filter data by rule name, source/destination IP and port, and other metadata fields.
**Source Address Location of Inbound Traffic.** Displays geo-location of Inbound Traffic.
**Flow Traffic by Rule Name.** Shows breakdown of all traffic, by Security Rule name, set up at NSG level.
**Denied Traffic per Minute.** Shows trend in Denied Inbound traffic flow per minute.
**Breakdown of Traffic (Allowed or Denied).** Displays traffic breakdown by Allowed or Denied flow.
**Top 10 Destination Ports.** Shows top 10 destination ports in last 24 hours.
**Flow Traffic by Protocol.** Displays trend of traffic by protocol (TCP/UDP).
**Denied Traffic per Hour - Outlier.** Using Sumo Logic machine learning [Outlier](/docs/search/search-query-language/search-operators/outlier) operator, shows any unexpected sequence in denied traffic.
**Denied Traffic Comparison (Today Vs Yesterday) - Outlier.** Compares denied traffic of last 24 hours with previous 24 hours and shows any unexpected difference between two time periods.
### Denied Traffic Flow
The **Network Watcher - Denied Traffic Flow** dashboard drills down on denied traffic flow logs, shows geographic hotspots of denied traffic, top denied IPs and ports, and denied traffic trends by rule name.
**Denied Traffic Flow by Source Location.** Shows geographic hotspots of denied traffic flow.
**Top 10 Denied Source IP.** Displays a table of source IP addresses with denied traffic flow.
**Top 10 Denied Destination IP.** Displays a table of destination IP addresses with denied traffic flow.
**Denied Flow Traffic by Rule Name.** Shows trends in denied traffic flow with rule name over last 24 hours.
**Top 10 Denied Source IP, Port.** Displays a table of source IP addresses and ports with denied traffic flow.
**Top 10 Denied Destination IP, Port.** Displays a table of destination IP addresses and ports with denied traffic flow.
**Denied Traffic per Hour - Outlier.** Using Sumo Logic machine learning [Outlier](/docs/search/search-query-language/search-operators/outlier) operator, shows any unexpected sequence in denied traffic.
## Upgrade/Downgrade the Azure Network Watcher app (Optional)
import AppUpdate from '../../reuse/apps/app-update.md';
## Uninstalling the Azure Network Watcher app (Optional)
import AppUninstall from '../../reuse/apps/app-uninstall.md';