@@ -92,27 +92,30 @@ The schema for the **'anomaly_stats'** object is as follows:
9292| **‘anomaly_metrics’**:
9393| [
9494| {
95- | …,
96- | **‘_id**: number, // a global index to track each (app, rank, func), for internal use
97- | **'new_data'**: object //Statistics of anomaly metrics aggregated over multiple IO steps since the last pserver->viz send
95+ | **'app'**: *Application*,
96+ | **'rank'**: *Program rank*,
97+ | **'fid'**: *function ID*,
98+ | **'fname'**: *funciton name*,
99+ | **‘_id'**: *a global index to track each (app, rank, func), for internal use*,
100+ | **'new_data'**: *Statistics of anomaly metrics aggregated over multiple IO steps since the last pserver->viz send*
98101| {
99- | **'first_io_step'**: number // first io step in sum
100- | **'last_io_step'**: number // last io step in sum
101- | **‘max_timestamp’**: number // max timestamp of last IO step of this period
102- | **‘min_timestamp’**: number // min timestamp of first IO step of this period
103- | **'severity'**: RunStats
104- | **'score'**: RunStats
105- | **'count'**: RunStats
102+ | **'first_io_step'**: * first io step in sum*
103+ | **'last_io_step'**: * last io step in sum*
104+ | **‘max_timestamp’**: * max timestamp of last IO step of this period*
105+ | **‘min_timestamp’**: * min timestamp of first IO step of this period*
106+ | **'severity'**: * RunStats assigned severity*
107+ | **'score'**: * RunStats assigned score*
108+ | **'count'**: * RunStats count*
106109| }
107- | **'all_data'**: object // Statistics of anomaly metrics aggregated since the beginning of the run
110+ | **'all_data'**: * Statistics of anomaly metrics aggregated since the beginning of the run*
108111| {
109- | **'first_io_step'**: number // first io step in sum
110- | **'last_io_step'**: number // last io step in sum
111- | **‘max_timestamp’**: number, // max timestamp of last IO step since start of run
112- | **‘min_timestamp’**: number, // min timestamp of first IO step since start of run
113- | **'severity'**: RunStats
114- | **'score'**: RunStats
115- | **'count'**: RunStats
112+ | **'first_io_step'**: * first io step in sum*
113+ | **'last_io_step'**: * last io step in sum*
114+ | **‘max_timestamp’**: * max timestamp of last IO step since start of run*
115+ | **‘min_timestamp’**: * min timestamp of first IO step since start of run*
116+ | **'severity'**: * RunStats assigned severity*
117+ | **'score'**: * RunStats score*
118+ | **'count'**: * RunStats count*
116119| }
117120| }
118121| ], *end of* **anomaly_metrics**
0 commit comments