Skip to content

Commit 6cd15a2

Browse files
Incorporate feedback.
1 parent b310e49 commit 6cd15a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/network-watcher/traffic-analytics-schema-update.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Sample queries with new fields in the Traffic Analytics schema. Use
44
services: network-watcher
55
documentationcenter: na
66
author: Harsha-CS
7-
manager: agummadi
7+
manager: vinigam
88
editor:
99

1010
ms.service: network-watcher
@@ -26,7 +26,7 @@ The [Traffic Analytics log schema](./traffic-analytics-schema.md) includes the f
2626

2727
The new fields provide information about source and destination IPs, and they simplify queries.
2828

29-
In the next few months, the following older fields will be deprecated:
29+
The following older fields will be deprecated in future:
3030

3131
- `VMIP_s`
3232
- `Subscription_g`
@@ -42,7 +42,7 @@ The following three examples show how to replace the old fields with the new one
4242

4343
## Example 1: VMIP_s, Subscription_g, Region_s, Subnet_s, VM_s, NIC_s, and PublicIPs_s fields
4444

45-
We don't have to infer source and destination cases from the `FlowDirection_s` field for AzurePublic and ExternalPublic flows. It can also be inappropriate to use the `FlowDirection_s` field for a network virtual appliance.
45+
The schema doesn't have to infer source and destination cases from the `FlowDirection_s` field for AzurePublic and ExternalPublic flows. It can also be inappropriate to use the `FlowDirection_s` field for a network virtual appliance.
4646

4747
Previous Kusto query:
4848

@@ -95,7 +95,7 @@ The old field used the following format:
9595
<Index value 0)>|<NSG_ RuleName>|<Flow Direction>|<Flow Status>|<FlowCount ProcessedByRule>
9696
```
9797

98-
We no longer aggregate data across a network security group (NSG). In the updated schema, `NSGList_s` contains only one NSG. Also, `NSGRules` contains only one rule. We removed the complicated formatting here and in other fields as shown in the following example.
98+
The schema no longer aggregates data across a network security group (NSG). In the updated schema, `NSGList_s` contains only one NSG. Also, `NSGRules` contains only one rule. The complicated formatting has been removed here and in other fields, as shown in the following example.
9999

100100
Previous Kusto query:
101101

@@ -126,7 +126,7 @@ FlowCountProcessedByRule = AllowedInFlows_d + DeniedInFlows_d + AllowedOutFlows_
126126

127127
## Example 3: FlowCount_d field
128128

129-
Because we don't club data across the NSG, the `FlowCount_d` is simply:
129+
Because the schema doesn't club data across the NSG, the `FlowCount_d` is simply:
130130

131131
`AllowedInFlows_d` + `DeniedInFlows_d` + `AllowedOutFlows_d` + `DeniedOutFlows_d`
132132

@@ -139,7 +139,7 @@ To illustrate these conditions:
139139
- If the flow was inbound, one of the `InFlows_d` suffixed fields is populated.
140140
- If the flow was outbound, one of the `OutFlows_d` suffixed fields is populated.
141141

142-
Depending on the conditions, we know which one of the four fields is populated.
142+
Depending on the conditions, it's clear which of the four fields is populated.
143143

144144
## Next steps
145145

0 commit comments

Comments
 (0)