Skip to content

Commit e71ef2d

Browse files
authored
Add public metrics documentation about IEC vs SI
Add public metrics documentation about IEC vs SI
1 parent 4ab8f05 commit e71ef2d

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

articles/azure-monitor/essentials/metrics-troubleshoot.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,40 @@ Azure metrics charts use dashed line style to indicate that there is a missing v
7070
> [!NOTE]
7171
> If you still prefer a line chart for your metric, moving mouse over the chart may help to assess the time granularity by highlighting the data point at the location of the mouse pointer.
7272
73+
## Prefixes of metrics
74+
75+
By default azure monitor metrics uses SI based prefixes. Metrics will only be using IEC prefixes if the resource provider has chosen an appropriate unit for a metric.
76+
For ex: The resource provider Network interface(resource name: rarana-vm816) has no metric unit defined for "Packets Sent". The prefix used for the metric value here is k representing kilo (1000), a SI prefix.
77+
![Screenshot that shows metric value with prefix kilo.](./media/metrics-troubleshoot/prefixSI.png)
78+
79+
And the resource provider Storage account(resource name: ibabichvm) has metric unit defined for "Blob Capacity" as bytes. Hence, the prefix used is mebi (1024^2), an IEC prefix.
80+
![Screenshot that shows metric value with prefix mebi.](./media/metrics-troubleshoot/prefixIEC.png)
81+
82+
SI uses decimal
83+
| Value | abbreviation | SI |
84+
|-----------|--------------|---------------------|
85+
| 1000 | k | kilo |
86+
| 1000^2 | M | mega |
87+
| 1000^3 | G | giga |
88+
| 1000^4 | T | tera |
89+
| 1000^5 | P | peta |
90+
| 1000^6 | E | exa |
91+
| 1000^7 | Z | zetta |
92+
| 1000^8 | Y | yotta |
93+
94+
IEC uses binary
95+
|Value| abbreviation| IEC | Legacy ||
96+
|-----|-------------|-----|----|----|
97+
|1024 | Ki| kibi| K | kilo|
98+
|1024^2| Mi| mebi| M | mega|
99+
|1024^3| Gi| gibi| G | giga|
100+
|1024^4| Ti| tebi| T | tera|
101+
|1024^5| Pi| pebi| - ||
102+
|1024^6| Ei| exbi| - ||
103+
|1024^7| Zi| zebi| - ||
104+
|1024^8| Yi| yobi| - ||
105+
106+
73107
## Chart shows unexpected drop in values
74108

75109
In many cases, the perceived drop in the metric values is a misunderstanding of the data shown on the chart. You can be misled by a drop in sums or counts when the chart shows the most-recent minutes because the last metric data points haven’t been received or processed by Azure yet. Depending on the service, the latency of processing metrics can be within a couple minutes range. For charts showing a recent time range with a 1- or 5- minute granularity, a drop of the value over the last few minutes becomes more noticeable:

0 commit comments

Comments
 (0)