Skip to content

Commit 45f1d65

Browse files
committed
rename file
1 parent ffea5f9 commit 45f1d65

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

articles/network-watcher/.openpublishing.redirection.network-watcher.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/network-watcher/network-watcher-read-nsg-flow-logs.md",
5+
"redirect_url": "/azure/network-watcher/flow-logs-read",
6+
"redirect_document_id": true
7+
},
38
{
49
"source_path_from_root": "/articles/network-watcher/network-watcher-connectivity-cli.md",
510
"redirect_url": "/azure/network-watcher/connection-troubleshoot-cli",

articles/network-watcher/network-watcher-read-nsg-flow-logs.md renamed to articles/network-watcher/flow-logs-read.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
22
title: Read flow logs
3-
description: Learn how to use Azure PowerShell to parse flow logs that are created hourly and updated every few minutes in Azure Network Watcher.
3+
description: Learn how to use a PowerShell script to parse flow logs that are created hourly and updated every few minutes in Azure Network Watcher.
44
author: halkazwini
55
ms.author: halkazwini
66
ms.service: network-watcher
77
ms.topic: how-to
88
ms.date: 04/17/2024
99
ms.custom: devx-track-azurepowershell
10+
11+
#CustomerIntent: As an Azure administrator, I want to read my flow logs using a PowerShell script so I can see the latest data.
1012
---
1113

1214
# Read flow logs
@@ -23,7 +25,7 @@ In this article, you learn how to read portions of Azure Network Watcher flow lo
2325

2426
- Necessary RBAC permissions for the subscriptions of flow logs and storage account. For more information, see [Network Watcher RBAC permissions](required-rbac-permissions.md).
2527

26-
## Retrieve the block list
28+
## Retrieve the blocklist
2729

2830
# [**NSG flow logs**](#tab/nsg)
2931

@@ -148,7 +150,7 @@ $blockList = Get-VNetFlowLogBlockList -CloudBlockBlob $CloudBlockBlob
148150

149151
---
150152

151-
The `$blockList` variable returns a list of the blocks in the blob. Each block blob contains at least two blocks. The first block has a length of 12 bytes, this block contains the opening brackets of the JSON log. The other block is the closing brackets and has a length of 2 bytes. The following example log has seven individual entries in it. All new entries in the log are added to the end right before the final block.
153+
The `$blockList` variable returns a list of the blocks in the blob. Each block blob contains at least two blocks. The first block has a length of 12 bytes and contains the opening brackets of the JSON log. The other block is the closing brackets and has a length of 2 bytes. The following example log has seven individual entries in it. All new entries in the log are added to the end right before the final block.
152154

153155
```
154156
Name Length Committed
@@ -335,7 +337,6 @@ A","1497646742,10.0.0.4,168.62.32.14,44942,443,T,O,A","1497646742,10.0.0.4,52.24
335337

336338
---
337339

338-
339340
## Related content
340341

341342
- [Traffic analytics overview](./traffic-analytics.md)

articles/network-watcher/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
- name: Migrate NSG flow logs
201201
href: nsg-flow-logs-migrate.md
202202
- name: Read NSG flow logs
203-
href: network-watcher-read-nsg-flow-logs.md
203+
href: flow-logs-read.md
204204
- name: Analyze NSG flow logs
205205
items:
206206
- name: Use Power BI

0 commit comments

Comments
 (0)