Skip to content

Commit 15a6aa7

Browse files
committed
fixes
1 parent b137a4a commit 15a6aa7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
22
ms.service: azure-monitor
33
ms.topic: include
4-
ms.date: 08/04/2023
4+
ms.date: 04/01/2023
55
ms.author: edbaynash
66
author: EdB-MSFT
77
---
88

99
## Case sensitivity
10-
Azure managed Prometheus is a case insensitive system. If one time series differs from another only by a difference in the case of a string - metric name, label name, label value etc, it is treated as the same time series. This behavior is different from native open source Prometheus which is a case sensitive system.
10+
Azure managed Prometheus is a case insensitive system. If one time series differs from another only by a difference in the case of a string - metric name, label name, label value, etc. - it's treated as the same time series. This behavior is different from native open source Prometheus, which is a case sensitive system.
1111

12-
In Azure managed Prometheus the follow time series are considered the same:
12+
In Azure managed Prometheus the following time series are considered the same:
1313

14-
`diskSize(cluster=eastus, node=node1, filesystem=usr_mnt)`
15-
`diskSize(cluster=eastus, node=node1, filesystem=usr_MNT)`
14+
`diskSize(cluster="eastus", node="node1", filesystem="usr_mnt")`
15+
`diskSize(cluster="eastus", node="node1", filesystem="usr_MNT")`
1616

17-
The above examples are a single time series in time series database.
18-
- Any samples ingested against them are be stored as if they're scraped/ingested against a single time series.
17+
The above examples are a single time series in a time series database.
18+
- Any samples ingested against them are stored as if they're scraped/ingested against a single time series.
1919
- If the examples above are ingested with the same timestamp, one of them is randomly dropped.
2020
- The casing that's stored in the time series database and returned in query, is unpredictable. Different casing may be returned at different times for the same time series.
21-
- Any metric name or label name/value matcher present in the query, is retrieved from time series database by making a case-insensitive comparison. If there is a case sensitive matcher in a query, it's automatically treated as a case-insensitive matcher when making string comparisons.
21+
- Any metric name or label name/value matcher present in the query is retrieved from time series database by making a case-insensitive comparison. If there's a case sensitive matcher in a query, it's automatically treated as a case-insensitive matcher when making string comparisons.
2222

23-
It is best practice to insure that a time series is produced or scraped using a single consistent case.
23+
It is best practice to ensure that a time series is produced or scraped using a single consistent case.
2424

25-
In OSS Prometheus the above time series are treated as two different time series. Any samples scraped/ingested against them are stored separately.
25+
In OSS Prometheus, the above time series are treated as two different time series. Any samples scraped/ingested against them are stored separately.

0 commit comments

Comments
 (0)