DEX Score normalization for metric scores
Learn how normalization adjusts individual scores of each metric to a common scale, enabling comparison across different metrics.
In Digital Experience Score, the key metrics monitored from applications and devices are normalized by mapping the Good, Average, or Poor range of the actual metric value to the corresponding Good, Average, or Poor range definition on a scale of 100.
| To maximize the value |
Maximize the value when higher values are better, for example, metric for WiFi reception rate. The following formula is used to get the normalized score:
|
| To minimize the value |
Minimize the value when lower values are better, for example, metric for CPU usage. The following formula is used to get the normalized score:
|
- L1 = Low value of mapping range
- H1 = High value of mapping range
- M1 = Actual metric value
- L2 = Low value of metric value range
- H2 = High value of metric value range
- Example for an application metric normalization (maximize)
-
Consider the following values for the metric WiFi reception rate:
- Actual metric value (M1): 400 (falls in good range)
- Mapping range for good (L1 and H1): 75–100
- Metric value range for average (L2 and H2): 50–500
Normalized value (Maximize) =
75 + ((400 - 50) / (500 - 50) x (100 - 75))= 94 (rounded off). - Example for a device metric normalization (minimize)
-
Consider the following values for the metric CPU Usage:
- Actual metric value: 79 (falls in average range)
- Mapping range for good (L1 and H1): 65–74
- Metric value range for average (L2 and H2): 55–84
Normalized value (Minimize) =
74 - ((79 - 55) / (84 - 55) x (74 - 65))= 66 (rounded off).