Skip to content

Commit 4295575

Browse files
authored
Merge pull request #54123 from staleycyn/patch-3
Content drift changes for the design network monitoring module
2 parents a87cb7f + 41c790d commit 4295575

4 files changed

Lines changed: 19 additions & 15 deletions

File tree

learn-pr/wwl-azure/design-implement-network-monitoring/includes/2-monitor-networks-using-azure-monitor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The next diagram offers a high-level view of Azure Monitor. At the center of the
3030

3131
1. **The data platform** stores the collected data. Azure Monitor's core data platform has stores for metrics, logs, traces, and changes. Metrics are numerical values that describe an aspect of a system at a particular point in time. Logs are recorded system events.
3232

33-
1. **Insights** are large, scalable, curated visualizations. Insights are available for applications, containers, networks, and virtual machines.
33+
1. **Insights** provides visualizations for applications, containers, networks, and virtual machines.
3434

3535
1. **Visualizations** such as charts and tables are effective tools for summarizing monitoring data and presenting it to different audiences. Visualizations can include: dashboards, workbooks, Power BI, and Grafana. Grafana is an open platform that excels in operational dashboards.
3636

@@ -41,4 +41,4 @@ The next diagram offers a high-level view of Azure Monitor. At the center of the
4141
1. **Integrate** allows other systems or custom solutions to use your monitoring data. Integrate can include: Event Hubs, Azure storage, Logic Apps, Azure Functions, and APIs.
4242

4343
> [!TIP]
44-
> Learn more about Azure Monitor in the [Introduction to Azure Monitor](/training/modules/intro-to-azure-monitor/) training module.
44+
> Learn more about Azure Monitor in the [Introduction to Azure Monitor](/training/modules/intro-to-azure-monitor/) training module.

learn-pr/wwl-azure/design-implement-network-monitoring/includes/4-monitor-networks-using-azure-network-watcher.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Azure Network Watcher
44

5-
[Azure Network Watcher](/azure/network-watcher/network-watcher-overview) is a regional service that enables you to monitor and diagnose network conditions. Network diagnostic and visualization tools help you understand, diagnose, and gain insights to your network in Azure. Network Watcher is designed to monitor and repair the network health of IaaS products which includes virtual machines, virtual networks, Application Gateways, and Load Balancers.
5+
[Azure Network Watcher](/azure/network-watcher/network-watcher-overview) is a regional service that enables you to monitor and diagnose network conditions. Network diagnostic and visualization tools help you understand, diagnose, and gain insights to your network in Azure. Network Watcher is designed to monitor and repair the network health of IaaS products that includes virtual machines, virtual networks, Application Gateways, and Load Balancers.
66

77
## Azure Network Watcher (video)
88

@@ -17,7 +17,8 @@
1717

1818
### Monitoring tools
1919

20-
- **Network Topology** generates a visualization of the entire network for understanding network configuration.
20+
- **Network topology** gives you an interactive map of your network across subscriptions, resource groups, and locations. You can click on resources to view traffic and connectivity details and use diagnostic tools within the map.
21+
2122
- **Connection monitor** provides end-to-end connection monitoring for Azure and hybrid endpoints.
2223

2324
### Diagnostic tools
@@ -32,13 +33,20 @@
3233

3334
- **Packet Capture** lets you remotely create packet capture sessions to record all network traffic to and from a virtual machine (VM) or a virtual machine scale set.
3435

36+
- **NSG diagnostics** detects traffic filtering issues at a virtual machine, virtual machine scale set, or application gateway level. Checks if a packet is allowed or denied to or from an IP address, IP prefix, or service tag. Identifies which security rule allowed or denied the traffic.
37+
3538
- **VPN troubleshoot** enables you to troubleshoot virtual network gateways and their connections.
3639

3740
### Traffic tools
3841

39-
- **Flow logs** allows you to log information about your Azure IP traffic and stores the data in Azure storage. You can log IP traffic flowing through a network security group or Azure virtual network.
42+
- **Flow logs** allows you to log information about your Azure IP traffic.
43+
44+
- **VNet flow logs (recommended)**: Enable logging at the virtual network level. Capture all supported workloads in the VNet without needing multi-level configuration. Also, record Azure Virtual Network Manager security admin rule decisions and traffic encryption status.
45+
46+
- **NSG flow logs**: Retiring September 30, 2027. No new NSG flow logs can be created after June 30, 2025. Existing deployments should [migrate to VNet flow logs](/azure/network-watcher/nsg-flow-logs-migrate).
47+
4048

4149
- **Traffic analytics** provides rich visualizations of flow logs data.
4250

4351
> [!TIP]
44-
> Learn more about Azure Network Watcher in the [Introduction to Network Watcher](/training/modules/intro-to-azure-network-watcher/) training module.
52+
> Learn more about Azure Network Watcher in the [Introduction to Network Watcher](/training/modules/intro-to-azure-network-watcher/) training module.

learn-pr/wwl-azure/design-implement-network-monitoring/includes/5-summary-resources.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,14 @@ In this module, you learned about Azure Monitor and Network Watcher.
1212

1313
Copilot can assist you in configuring Azure infrastructure solutions. Copilot can compare, recommend, explain, and research products and services where you need more information. Open a Microsoft Edge browser and choose Copilot (top right) or navigate to copilot.microsoft.com. Take a few minutes to try these prompts and extend your learning with Copilot.
1414

15-
- What is Azure Monitor and what features are included? Provide usage examples.
16-
- What is Network Monitor and what features are included? Provide usage examples.
15+
- What is Azure Network Watcher and what features are included? Provide usage examples.
16+
- What traffic analysis tools does Azure Network Watcher include? Provide usage examples.
1717

1818
## Learn more with self-paced training
1919

20-
- [Introduction to Azure Monitor](/training/modules/intro-to-azure-monitor/).Learn how to use Azure Monitor to provide insights into your Azure resource performance and operations.
21-
2220
- [Design and implement network monitoring](/training/modules/analyze-infrastructure-with-azure-monitor-logs/). Use Azure Monitor logs to extract valuable information about your infrastructure from log data.
2321

2422
- [Introduction to Network Watcher](/training/modules/intro-to-azure-network-watcher/). This module explains what Network Watcher does, how it works, and when you should choose to use Network Watcher as a solution to meet your organization's needs.
2523

26-
- [Monitor and troubleshoot your end-to-end Azure network infrastructure by using network monitoring tools](/training/modules/design-implement-network-monitoring/). You learn to design and implement network monitoring solutions such as Azure Monitor and Network Watcher.
27-
2824
- [Configure monitoring for virtual networks](/training/modules/configure-monitoring-virtual-networks/). Understand how to use Azure Network Watcher Connection Monitor, flow logs, NSG diagnostics, and packet capture.
2925

learn-pr/wwl-azure/design-implement-network-monitoring/index.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Design and Implement Network Monitoring
77
description: "You learn to design and implement network monitoring solutions such as Azure Monitor and Network watcher."
8-
ms.date: 01/26/2026
8+
ms.date: 03/23/2026
99
author: wwlpublish
1010
ms.author: cynthist
1111
ms.topic: module
1212
ms.collection: N/A
1313
ms.custom:
1414
- N/A
1515
ms.service: azure-network-watcher
16-
ai-usage: human-only
16+
ai-usage: ai-assisted
1717
title: Design and implement network monitoring
1818
summary: You learn to design and implement network monitoring solutions such as Azure Monitor and Network watcher.
1919
abstract: |
@@ -25,7 +25,7 @@ abstract: |
2525
2626
- Configure and use Traffic Analytics
2727
28-
- Configure NSG flow logs
28+
- Configure VNet flow logs
2929
3030
- Enable and configure diagnostic logging
3131

0 commit comments

Comments
 (0)