Skip to content

Commit b5ae66c

Browse files
authored
Addied missing "=" in "IsBillable = false "
The "eqauls" operation was using just one =.
1 parent 67cfcf7 commit b5ae66c

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
@@ -220,7 +220,7 @@ let freeTables = dynamic([
220220
Usage
221221
| where DataType !in (freeTables)
222222
| where TimeGenerated > ago(30d)
223-
| where IsBillable = false
223+
| where IsBillable == false
224224
| summarize MonthlyPotentialUnderbilledGB=sum(Quantity)/1000 by DataType
225225
```
226226

0 commit comments

Comments
 (0)