Skip to content

Commit f0fc3ca

Browse files
Merge pull request #222355 from KrishnaG-MSFT/patch-249
(AzureCXP) MicrosoftDocs/azure-docs#103049
2 parents 731d043 + 8738d59 commit f0fc3ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-monitor/containers/container-insights-log-query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ To view Prometheus metrics scraped by Azure Monitor and filtered by namespace, s
286286

287287
```
288288
InsightsMetrics
289-
| where Namespace == "prometheus"
289+
| where Namespace contains "prometheus"
290290
| extend tags=parse_json(Tags)
291291
| summarize count() by Name
292292
```
@@ -295,7 +295,7 @@ Prometheus data can also be directly queried by name.
295295

296296
```
297297
InsightsMetrics
298-
| where Namespace == "prometheus"
298+
| where Namespace contains "prometheus"
299299
| where Name contains "some_prometheus_metric"
300300
```
301301

0 commit comments

Comments
 (0)