You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Average resolution time hides long-tail outliers. This script calculates mean and standard deviation of resolution minutes and tags incidents whose z score exceeds a threshold, helping teams investigate anomalies.
5
+
6
+
## Where to use
7
+
Run as a Background Script or convert into a Scheduled Job for periodic tagging.
8
+
9
+
## How it works
10
+
- Uses `GlideAggregate` to compute count, mean, and approximate variance
11
+
- Calculates z score per resolved incident
12
+
- Sets a flag field or work note on outliers above a configurable z threshold
13
+
14
+
## Configure
15
+
-`DAYS`: look-back window
16
+
-`Z_THRESHOLD`: default 2.5
17
+
-`FLAG_FIELD`: field to set, for example a custom boolean `u_outlier`
0 commit comments