t/io_uring: only calculate per-file depth if we have files
[fio.git] / stat.h
CommitLineData
a64e88da
JA
1#ifndef FIO_STAT_H
2#define FIO_STAT_H
3
ec41265e 4#include "iolog.h"
a666cab8 5#include "lib/output_buffer.h"
2a2fdab1
L
6#include "diskutil.h"
7#include "json.h"
ec41265e 8
a64e88da 9struct group_run_stats {
6eaf09d6
SL
10 uint64_t max_run[DDIR_RWDIR_CNT], min_run[DDIR_RWDIR_CNT];
11 uint64_t max_bw[DDIR_RWDIR_CNT], min_bw[DDIR_RWDIR_CNT];
af7f87cb 12 uint64_t iobytes[DDIR_RWDIR_CNT];
6eaf09d6 13 uint64_t agg[DDIR_RWDIR_CNT];
a64e88da 14 uint32_t kb_base;
ad705bcb 15 uint32_t unit_base;
e883cb35 16 uint32_t sig_figs;
a64e88da 17 uint32_t groupid;
771e58be 18 uint32_t unified_rw_rep;
e5021b34 19} __attribute__((packed));
a64e88da
JA
20
21/*
22 * How many depth levels to log
23 */
24#define FIO_IO_U_MAP_NR 7
d6bb626e 25#define FIO_IO_U_LAT_N_NR 10
a64e88da
JA
26#define FIO_IO_U_LAT_U_NR 10
27#define FIO_IO_U_LAT_M_NR 12
28
37b08652
VF
29/*
30 * Constants for clat percentiles
31 */
32#define FIO_IO_U_PLAT_BITS 6
33#define FIO_IO_U_PLAT_VAL (1 << FIO_IO_U_PLAT_BITS)
34#define FIO_IO_U_PLAT_GROUP_NR 29
35#define FIO_IO_U_PLAT_NR (FIO_IO_U_PLAT_GROUP_NR * FIO_IO_U_PLAT_VAL)
36#define FIO_IO_U_LIST_MAX_LEN 20 /* The size of the default and user-specified
37 list of percentiles */
38
a64e88da 39/*
56440e63 40 * Aggregate latency samples for reporting percentile(s).
a64e88da
JA
41 *
42 * EXECUTIVE SUMMARY
43 *
44 * FIO_IO_U_PLAT_BITS determines the maximum statistical error on the
45 * value of resulting percentiles. The error will be approximately
46 * 1/2^(FIO_IO_U_PLAT_BITS+1) of the value.
47 *
48 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the maximum
49 * range being tracked for latency samples. The maximum value tracked
37b08652 50 * accurately will be 2^(GROUP_NR + PLAT_BITS - 1) nanoseconds.
a64e88da
JA
51 *
52 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the memory
53 * requirement of storing those aggregate counts. The memory used will
53c82bb8 54 * be (FIO_IO_U_PLAT_GROUP_NR * 2^FIO_IO_U_PLAT_BITS) * sizeof(uint64_t)
a64e88da
JA
55 * bytes.
56 *
57 * FIO_IO_U_PLAT_NR is the total number of buckets.
58 *
59 * DETAILS
60 *
56440e63 61 * Suppose the lat varies from 0 to 999 (usec), the straightforward
a64e88da
JA
62 * method is to keep an array of (999 + 1) buckets, in which a counter
63 * keeps the count of samples which fall in the bucket, e.g.,
64 * {[0],[1],...,[999]}. However this consumes a huge amount of space,
65 * and can be avoided if an approximation is acceptable.
66 *
67 * One such method is to let the range of the bucket to be greater
68 * than one. This method has low accuracy when the value is small. For
69 * example, let the buckets be {[0,99],[100,199],...,[900,999]}, and
70 * the represented value of each bucket be the mean of the range. Then
fc002f14 71 * a value 0 has a round-off error of 49.5. To improve on this, we
a64e88da
JA
72 * use buckets with non-uniform ranges, while bounding the error of
73 * each bucket within a ratio of the sample value. A simple example
74 * would be when error_bound = 0.005, buckets are {
75 * {[0],[1],...,[99]}, {[100,101],[102,103],...,[198,199]},..,
76 * {[900,909],[910,919]...} }. The total range is partitioned into
77 * groups with different ranges, then buckets with uniform ranges. An
78 * upper bound of the error is (range_of_bucket/2)/value_of_bucket
79 *
80 * For better efficiency, we implement this using base two. We group
81 * samples by their Most Significant Bit (MSB), extract the next M bit
82 * of them as an index within the group, and discard the rest of the
83 * bits.
84 *
85 * E.g., assume a sample 'x' whose MSB is bit n (starting from bit 0),
86 * and use M bit for indexing
87 *
88 * | n | M bits | bit (n-M-1) ... bit 0 |
89 *
90 * Because x is at least 2^n, and bit 0 to bit (n-M-1) is at most
91 * (2^(n-M) - 1), discarding bit 0 to (n-M-1) makes the round-off
92 * error
93 *
94 * 2^(n-M)-1 2^(n-M) 1
95 * e <= --------- <= ------- = ---
96 * 2^n 2^n 2^M
97 *
98 * Furthermore, we use "mean" of the range to represent the bucket,
99 * the error e can be lowered by half to 1 / 2^(M+1). By using M bits
100 * as the index, each group must contains 2^M buckets.
101 *
102 * E.g. Let M (FIO_IO_U_PLAT_BITS) be 6
103 * Error bound is 1/2^(6+1) = 0.0078125 (< 1%)
104 *
105 * Group MSB #discarded range of #buckets
106 * error_bits value
107 * ----------------------------------------------------------------
108 * 0* 0~5 0 [0,63] 64
109 * 1* 6 0 [64,127] 64
110 * 2 7 1 [128,255] 64
111 * 3 8 2 [256,511] 64
112 * 4 9 3 [512,1023] 64
113 * ... ... ... [...,...] ...
37b08652 114 * 28 33 27 [8589934592,+inf]** 64
a64e88da
JA
115 *
116 * * Special cases: when n < (M-1) or when n == (M-1), in both cases,
117 * the value cannot be rounded off. Use all bits of the sample as
118 * index.
119 *
37b08652 120 * ** If a sample's MSB is greater than 33, it will be counted as 33.
a64e88da
JA
121 */
122
66347cfa
DE
123/*
124 * Trim cycle count measurements
125 */
126#define MAX_NR_BLOCK_INFOS 8192
127#define BLOCK_INFO_STATE_SHIFT 29
128#define BLOCK_INFO_TRIMS(block_info) \
129 ((block_info) & ((1 << BLOCK_INFO_STATE_SHIFT) - 1))
130#define BLOCK_INFO_STATE(block_info) \
131 ((block_info) >> BLOCK_INFO_STATE_SHIFT)
132#define BLOCK_INFO(state, trim_cycles) \
fc8d6d05 133 ((trim_cycles) | ((unsigned int) (state) << BLOCK_INFO_STATE_SHIFT))
66347cfa
DE
134#define BLOCK_INFO_SET_STATE(block_info, state) \
135 BLOCK_INFO(state, BLOCK_INFO_TRIMS(block_info))
136enum block_info_state {
137 BLOCK_STATE_UNINIT,
138 BLOCK_STATE_TRIMMED,
139 BLOCK_STATE_WRITTEN,
140 BLOCK_STATE_TRIM_FAILURE,
141 BLOCK_STATE_WRITE_FAILURE,
142 BLOCK_STATE_COUNT,
1d6d3455 143};
66347cfa 144
a64e88da 145#define FIO_JOBNAME_SIZE 128
4e59d0f3 146#define FIO_JOBDESC_SIZE 256
a64e88da 147#define FIO_VERROR_SIZE 128
5cb8a8cd
BP
148#define UNIFIED_SPLIT 0
149#define UNIFIED_MIXED 1
150#define UNIFIED_BOTH 2
a64e88da 151
56440e63 152enum fio_lat {
df8781b6
VF
153 FIO_SLAT = 0,
154 FIO_CLAT,
155 FIO_LAT,
156
157 FIO_LAT_CNT = 3,
158};
159
4ad85649
NC
160struct clat_prio_stat {
161 uint64_t io_u_plat[FIO_IO_U_PLAT_NR];
162 struct io_stat clat_stat;
163 uint32_t ioprio;
164};
165
a64e88da
JA
166struct thread_stat {
167 char name[FIO_JOBNAME_SIZE];
168 char verror[FIO_VERROR_SIZE];
ddcc0b69 169 uint32_t error;
2f122b13 170 uint32_t thread_number;
ddcc0b69 171 uint32_t groupid;
12d325ca 172 uint64_t job_start; /* Time job was started, as clock_gettime(job_start_clock_id) */
a64e88da 173 uint32_t pid;
4e59d0f3 174 char description[FIO_JOBDESC_SIZE];
a64e88da 175 uint32_t members;
771e58be 176 uint32_t unified_rw_rep;
691310e2 177 uint32_t disable_prio_stat;
a64e88da
JA
178
179 /*
180 * bandwidth and latency stats
181 */
1e900e2d 182 struct io_stat sync_stat __attribute__((aligned(8)));/* fsync etc stats */
6eaf09d6
SL
183 struct io_stat clat_stat[DDIR_RWDIR_CNT]; /* completion latency */
184 struct io_stat slat_stat[DDIR_RWDIR_CNT]; /* submission latency */
185 struct io_stat lat_stat[DDIR_RWDIR_CNT]; /* total latency */
186 struct io_stat bw_stat[DDIR_RWDIR_CNT]; /* bandwidth stats */
187 struct io_stat iops_stat[DDIR_RWDIR_CNT]; /* IOPS stats */
a64e88da
JA
188
189 /*
190 * fio system usage accounting
191 */
192 uint64_t usr_time;
193 uint64_t sys_time;
194 uint64_t ctx;
195 uint64_t minf, majf;
196
197 /*
198 * IO depth and latency stats
199 */
b599759b
JA
200 uint32_t clat_percentiles;
201 uint32_t lat_percentiles;
56440e63
VF
202 uint32_t slat_percentiles;
203 uint32_t pad;
435d195a 204 uint64_t percentile_precision;
802ad4a8 205 fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
a64e88da 206
6cc0e5aa
AL
207 uint64_t io_u_map[FIO_IO_U_MAP_NR];
208 uint64_t io_u_submit[FIO_IO_U_MAP_NR];
209 uint64_t io_u_complete[FIO_IO_U_MAP_NR];
210 uint64_t io_u_lat_n[FIO_IO_U_LAT_N_NR];
211 uint64_t io_u_lat_u[FIO_IO_U_LAT_U_NR];
212 uint64_t io_u_lat_m[FIO_IO_U_LAT_M_NR];
df8781b6 213 uint64_t io_u_plat[FIO_LAT_CNT][DDIR_RWDIR_CNT][FIO_IO_U_PLAT_NR];
6cc0e5aa 214 uint64_t io_u_sync_plat[FIO_IO_U_PLAT_NR];
3d0ebb30 215
7f3ecee2 216 uint64_t total_io_u[DDIR_RWDIR_SYNC_CNT];
de5cdfea
JA
217 uint64_t short_io_u[DDIR_RWDIR_CNT];
218 uint64_t drop_io_u[DDIR_RWDIR_CNT];
a64e88da
JA
219 uint64_t total_submit;
220 uint64_t total_complete;
221
6eaf09d6
SL
222 uint64_t io_bytes[DDIR_RWDIR_CNT];
223 uint64_t runtime[DDIR_RWDIR_CNT];
a64e88da
JA
224 uint64_t total_run_time;
225
226 /*
227 * IO Error related stats
228 */
3d0ebb30
GG
229 union {
230 uint16_t continue_on_error;
11e955e3 231 uint32_t pad2;
3d0ebb30 232 };
ddcc0b69 233 uint32_t first_error;
11e955e3 234 uint64_t total_err_count;
a64e88da 235
fd5d733f
BVA
236 /* ZBD stats */
237 uint64_t nr_zone_resets;
238
66347cfa
DE
239 uint64_t nr_block_infos;
240 uint32_t block_infos[MAX_NR_BLOCK_INFOS];
241
a64e88da 242 uint32_t kb_base;
ad705bcb 243 uint32_t unit_base;
3e260a46
JA
244
245 uint32_t latency_depth;
11e955e3 246 uint32_t pad3;
3e260a46
JA
247 uint64_t latency_target;
248 fio_fp64_t latency_percentile;
249 uint64_t latency_window;
16e56d25 250
e883cb35
JF
251 uint32_t sig_figs;
252
bb49c8bd
VF
253 uint64_t ss_dur;
254 uint32_t ss_state;
255 uint32_t ss_head;
bb49c8bd 256
bb49c8bd
VF
257 fio_fp64_t ss_limit;
258 fio_fp64_t ss_slope;
259 fio_fp64_t ss_deviation;
260 fio_fp64_t ss_criterion;
cb84f1fa 261
2df7f081
NC
262 /* A mirror of td->ioprio. */
263 uint32_t ioprio;
264
cb84f1fa
VF
265 union {
266 uint64_t *ss_iops_data;
2d5bf2a5
NC
267 /*
268 * For FIO_NET_CMD_TS, the pointed to data will temporarily
269 * be stored at this offset from the start of the payload.
270 */
271 uint64_t ss_iops_data_offset;
11e955e3 272 uint64_t pad4;
cb84f1fa
VF
273 };
274
275 union {
276 uint64_t *ss_bw_data;
2d5bf2a5
NC
277 /*
278 * For FIO_NET_CMD_TS, the pointed to data will temporarily
279 * be stored at this offset from the start of the payload.
280 */
281 uint64_t ss_bw_data_offset;
11e955e3 282 uint64_t pad5;
cb84f1fa 283 };
96563db9 284
4ad85649
NC
285 union {
286 struct clat_prio_stat *clat_prio[DDIR_RWDIR_CNT];
287 /*
288 * For FIO_NET_CMD_TS, the pointed to data will temporarily
289 * be stored at this offset from the start of the payload.
290 */
291 uint64_t clat_prio_offset[DDIR_RWDIR_CNT];
292 uint64_t pad6;
293 };
294 uint32_t nr_clat_prio[DDIR_RWDIR_CNT];
295
96563db9
JA
296 uint64_t cachehit;
297 uint64_t cachemiss;
e5021b34 298} __attribute__((packed));
a64e88da 299
4c515ab4
BVA
300#define JOBS_ETA { \
301 uint32_t nr_running; \
302 uint32_t nr_ramp; \
303 \
304 uint32_t nr_pending; \
305 uint32_t nr_setting_up; \
306 \
cd8920a4
JA
307 uint64_t m_rate[DDIR_RWDIR_CNT]; \
308 uint64_t t_rate[DDIR_RWDIR_CNT]; \
4c515ab4 309 uint64_t rate[DDIR_RWDIR_CNT]; \
cd8920a4
JA
310 uint32_t m_iops[DDIR_RWDIR_CNT]; \
311 uint32_t t_iops[DDIR_RWDIR_CNT]; \
312 uint32_t iops[DDIR_RWDIR_CNT]; \
313 uint32_t pad; \
314 uint64_t elapsed_sec; \
315 uint64_t eta_sec; \
4c515ab4
BVA
316 uint32_t is_pow2; \
317 uint32_t unit_base; \
318 \
319 uint32_t sig_figs; \
320 \
321 uint32_t files_open; \
322 \
323 /* \
324 * Network 'copy' of run_str[] \
325 */ \
326 uint32_t nr_threads; \
cd8920a4 327 uint32_t pad2; \
4c515ab4
BVA
328 uint8_t run_str[]; \
329}
330
331struct jobs_eta JOBS_ETA;
332struct jobs_eta_packed JOBS_ETA __attribute__((packed));
b75a394f 333
65a4d15c
KC
334struct io_u_plat_entry {
335 struct flist_head list;
6cc0e5aa 336 uint64_t io_u_plat[FIO_IO_U_PLAT_NR];
65a4d15c
KC
337};
338
971caeb1 339extern struct fio_sem *stat_sem;
e5437a07 340
c5103619 341extern struct jobs_eta *get_jobs_eta(bool force, size_t *size);
723297c9 342
cef9175e
JA
343extern void stat_init(void);
344extern void stat_exit(void);
345
0279b880 346extern struct json_object * show_thread_status(struct thread_stat *ts, struct group_run_stats *rs, struct flist_head *, struct buf_output *);
a666cab8 347extern void show_group_stats(struct group_run_stats *rs, struct buf_output *);
cf451d1e 348extern void display_thread_status(struct jobs_eta *je);
83f7b64e 349extern void __show_run_stats(void);
966f8ef9 350extern int __show_running_run_stats(void);
b852e7cf 351extern void show_running_run_stats(void);
06464907 352extern void check_for_running_stats(void);
016869be 353extern void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src);
37f0c1ae 354extern void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src);
6619fc32 355extern void init_thread_stat_min_vals(struct thread_stat *ts);
37f0c1ae
JA
356extern void init_thread_stat(struct thread_stat *ts);
357extern void init_group_run_stat(struct group_run_stats *gs);
3e47bd25 358extern void eta_to_str(char *str, unsigned long eta_sec);
d6bb626e 359extern bool calc_lat(struct io_stat *is, unsigned long long *min, unsigned long long *max, double *mean, double *dev);
6cc0e5aa 360extern unsigned int calc_clat_percentiles(uint64_t *io_u_plat, unsigned long long nr, fio_fp64_t *plist, unsigned long long **output, unsigned long long *maxv, unsigned long long *minv);
fea76a0c 361extern void stat_calc_lat_n(struct thread_stat *ts, double *io_u_lat);
e5bd1347
JA
362extern void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat);
363extern void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat);
6cc0e5aa 364extern void stat_calc_dist(uint64_t *map, unsigned long total, double *io_u_dist);
6bb58215 365extern void reset_io_stats(struct thread_data *);
210dd0fc
JA
366extern void update_rusage_stat(struct thread_data *);
367extern void clear_rusage_stat(struct thread_data *);
2e33101f 368
d6bb626e 369extern void add_lat_sample(struct thread_data *, enum fio_ddir, unsigned long long,
692dec0c 370 unsigned long long, uint64_t, unsigned int, unsigned short);
d6bb626e 371extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long long,
692dec0c 372 unsigned long long, uint64_t, unsigned int, unsigned short);
56440e63 373extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long long,
03ec570f
DLM
374 unsigned long long, uint64_t, unsigned int);
375extern void add_agg_sample(union io_sample_data, enum fio_ddir, unsigned long long);
a47591e4
JA
376extern void add_iops_sample(struct thread_data *, struct io_u *,
377 unsigned int);
378extern void add_bw_sample(struct thread_data *, struct io_u *,
d6bb626e 379 unsigned int, unsigned long long);
b2b3eefe 380extern void add_sync_clat_sample(struct thread_stat *ts,
2a2fdab1 381 unsigned long long nsec);
a47591e4 382extern int calc_log_samples(void);
4ad85649
NC
383extern void free_clat_prio_stats(struct thread_stat *);
384extern int alloc_clat_prio_stat_ddir(struct thread_stat *, enum fio_ddir, int);
cf8f852a 385
2a2fdab1
L
386extern void print_disk_util(struct disk_util_stat *, struct disk_util_agg *, int terse, struct buf_output *);
387extern void json_array_add_disk_util(struct disk_util_stat *dus,
388 struct disk_util_agg *agg, struct json_array *parent);
389
cf8f852a 390extern struct io_log *agg_io_log[DDIR_RWDIR_CNT];
f1867a7f 391extern bool write_bw_log;
cf8f852a 392
74558486
JA
393static inline bool nsec_to_usec(unsigned long long *min,
394 unsigned long long *max, double *mean,
395 double *dev)
b29ad562 396{
d6bb626e 397 if (*min > 2000 && *max > 99999 && *dev > 1000.0) {
b29ad562
JA
398 *min /= 1000;
399 *max /= 1000;
400 *mean /= 1000.0;
401 *dev /= 1000.0;
8aa89d70 402 return true;
b29ad562
JA
403 }
404
8aa89d70 405 return false;
b29ad562 406}
d6bb626e 407
74558486
JA
408static inline bool nsec_to_msec(unsigned long long *min,
409 unsigned long long *max, double *mean,
410 double *dev)
d6bb626e
VF
411{
412 if (*min > 2000000 && *max > 99999999ULL && *dev > 1000000.0) {
413 *min /= 1000000;
414 *max /= 1000000;
415 *mean /= 1000000.0;
416 *dev /= 1000000.0;
417 return true;
418 }
419
420 return false;
421}
74558486 422
723297c9
JA
423/*
424 * Worst level condensing would be 1:5, so allow enough room for that
425 */
426#define __THREAD_RUNSTR_SZ(nr) ((nr) * 5)
11155857
JA
427#define THREAD_RUNSTR_SZ __THREAD_RUNSTR_SZ(thread_number)
428
66347cfa
DE
429uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u);
430
a64e88da 431#endif