Skip to content

Commit 1a956a0

Browse files
Merge pull request #208427 from cvillagomez/issues/97290-KQL-query-typo
Update analyze-usage.md
2 parents 864069a + 6304dbe commit 1a956a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ find where TimeGenerated > ago(24h) project _BilledSize, _IsBillable, Computer,
111111
**Count of billable events by computer**
112112

113113
```kusto
114-
find where TimeGenerated > ago(24h) project _IsBillable, Computer
114+
find where TimeGenerated > ago(24h) project _IsBillable, Computer, Type
115115
| where _IsBillable == true and Type != "Usage"
116116
| extend computerName = tolower(tostring(split(Computer, '.')[0]))
117117
| summarize eventCount = count() by computerName

0 commit comments

Comments
 (0)