Skip to content

Commit 7840d3e

Browse files
authored
Merge pull request #98837 from rafalfitt/patch-1
sort added
2 parents 2b2acf6 + 5726deb commit 7840d3e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

articles/azure-monitor/logs/analyze-usage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ If you find that you have excessive billable data for a particular data type, th
171171
```kusto
172172
SecurityEvent
173173
| summarize AggregatedValue = count() by EventID
174+
| order by AggregatedValue desc nulls last
174175
```
175176

176177
**Log Management** solution
@@ -179,6 +180,7 @@ SecurityEvent
179180
Usage
180181
| where Solution == "LogManagement" and iff(isnotnull(toint(IsBillable)), IsBillable == true, IsBillable == "true") == true
181182
| summarize AggregatedValue = count() by DataType
183+
| order by AggregatedValue desc nulls last
182184
```
183185

184186
**Perf** data type

0 commit comments

Comments
 (0)