You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/network-watcher/traffic-analytics-schema.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,14 @@ Traffic analytics is a cloud-based solution that provides visibility into user a
32
32
-`FlowStartTime` field indicates the first occurrence of such an aggregated flow (same four-tuple) in the flow log processing interval between `FlowIntervalStartTime` and `FlowIntervalEndTime`.
33
33
- For any resource in traffic analytics, the flows indicated in the Azure portal are total flows seen, but in Azure Monitor logs, user sees only the single, reduced record. To see all the flows, use the `blob_id` field, which can be referenced from storage. The total flow count for that record matches the individual flows seen in the blob.
34
34
35
+
The following query helps you look at all subnets interacting with non-Azure public IPs in the last 30 days.
36
+
37
+
```
38
+
NTANetAnalytics
39
+
| where SubType == "FlowLog" and FlowStartTime >= ago(30d) and FlowType == "ExternalPublic"
40
+
| project SrcSubnet, DestSubnet
41
+
```
42
+
35
43
# [**Network security group flow logs**](#tab/nsg)
36
44
37
45
- All flow logs at a network security group between `FlowIntervalStartTime_t` and `FlowIntervalEndTime_t` are captured at one-minute intervals as blobs in a storage account.
@@ -41,8 +49,6 @@ Traffic analytics is a cloud-based solution that provides visibility into user a
41
49
-`FlowStartTime_t` field indicates the first occurrence of such an aggregated flow (same four-tuple) in the flow log processing interval between `FlowIntervalStartTime_t` and `FlowIntervalEndTime_t`.
42
50
- For any resource in traffic analytics, the flows indicated in the Azure portal are total flows seen by the network security group, but in Azure Monitor logs, user sees only the single, reduced record. To see all the flows, use the `blob_id` field, which can be referenced from storage. The total flow count for that record matches the individual flows seen in the blob.
43
51
44
-
---
45
-
46
52
The following query helps you look at all subnets interacting with non-Azure public IPs in the last 30 days.
47
53
48
54
```
@@ -87,9 +93,10 @@ The previous query constructs a URL to access the blob directly. The URL with pl
0 commit comments