|
4 | 4 | // enum annotation (enum_name_fragment, key_name_fragment, name, short_name, description) |
5 | 5 | #define ENUM_KEY_LIST_STAT(X_) \ |
6 | 6 | X_(STAT, NONE, "None", "", "Null stat, typically used when querying static or consuming frame events") \ |
7 | | - X_(STAT, AVG, "Average", "avg", "Average or mean of frame samples over the sliding window") \ |
8 | | - X_(STAT, PERCENTILE_99, "99th Percentile", "99%", "Value below which 99% of the observations within the sliding window fall (worst 1% value)") \ |
9 | | - X_(STAT, PERCENTILE_95, "95th Percentile", "95%", "Value below which 95% of the observations within the sliding window fall (worst 5% value)") \ |
10 | | - X_(STAT, PERCENTILE_90, "90th Percentile", "90%", "Value below which 90% of the observations within the sliding window fall (worst 10% value)") \ |
11 | | - X_(STAT, MAX, "Maximum", "max", "Maximum value of frame samples within the sliding window") \ |
12 | | - X_(STAT, MIN, "Minimum", "min", "Minimum value of frame samples within the sliding window") \ |
13 | | - X_(STAT, MID_POINT, "Midpoint", "raw", "Point sample of the frame data nearest to the middle of the sliding window") \ |
14 | | - X_(STAT, MID_LERP, "Mid Lerp", "mlp", "Linear interpolation between the two points nearest to the middle of the sliding window") \ |
15 | | - X_(STAT, NEWEST_POINT, "Newest Point", "npt", "Value in the most recent frame in the sliding window") \ |
16 | | - X_(STAT, OLDEST_POINT, "Oldest Point", "opt", "Value in the least recent frame in the sliding window") \ |
17 | | - X_(STAT, COUNT, "Count", "cnt", "Count of frames in the sliding window matching a predicate (e.g. counting # of frames for which a field is boolean true)") \ |
| 7 | + X_(STAT, AVG, "Average", "avg", "Average or mean of observations over the sliding window") \ |
| 8 | + X_(STAT, PERCENTILE_99, "99th Percentile", "99%", "Value below which 99% of the observations within the sliding window fall") \ |
| 9 | + X_(STAT, PERCENTILE_95, "95th Percentile", "95%", "Value below which 95% of the observations within the sliding window fall") \ |
| 10 | + X_(STAT, PERCENTILE_90, "90th Percentile", "90%", "Value below which 90% of the observations within the sliding window fall") \ |
| 11 | + X_(STAT, PERCENTILE_01, "1st Percentile", "1%", "Value below which 1% of the observations within the sliding window fall") \ |
| 12 | + X_(STAT, PERCENTILE_05, "5th Percentile", "5%", "Value below which 5% of the observations within the sliding window fall") \ |
| 13 | + X_(STAT, PERCENTILE_10, "10th Percentile", "10%", "Value below which 10% of the observations within the sliding window fall") \ |
| 14 | + X_(STAT, MAX, "Maximum", "max", "Maximum value of observations within the sliding window") \ |
| 15 | + X_(STAT, MIN, "Minimum", "min", "Minimum value of observations within the sliding window") \ |
| 16 | + X_(STAT, MID_POINT, "Midpoint", "raw", "Point sample of the observation nearest to the middle of the sliding window") \ |
| 17 | + X_(STAT, MID_LERP, "Mid Lerp", "mlp", "Linear interpolation between the two observations nearest to the middle of the sliding window") \ |
| 18 | + X_(STAT, NEWEST_POINT, "Newest Point", "npt", "Value in the most recent observation in the sliding window") \ |
| 19 | + X_(STAT, OLDEST_POINT, "Oldest Point", "opt", "Value in the least recent observation in the sliding window") \ |
| 20 | + X_(STAT, COUNT, "Count", "cnt", "Count of observations in the sliding window matching a predicate (e.g. counting # of observations for which a field is boolean true)") |
18 | 21 | X_(STAT, NON_ZERO_AVG, "Non-zero Average", (const char*)u8"øavg", "Average or mean of frame samples over the sliding window, excluding all zero values") |
0 commit comments