blob: aa4ad806aa9159db7b15276fcf15853dae9c5bf8 [file] [log] [blame]
Jens Axboea64e88d2011-10-03 14:20:01 +02001#ifndef FIO_STAT_H
2#define FIO_STAT_H
3
Jens Axboeec412652012-03-08 12:37:31 +01004#include "iolog.h"
Elliott Hugheseda3a602017-05-19 18:53:02 -07005#include "lib/output_buffer.h"
Jens Axboeec412652012-03-08 12:37:31 +01006
Jens Axboea64e88d2011-10-03 14:20:01 +02007struct group_run_stats {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02008 uint64_t max_run[DDIR_RWDIR_CNT], min_run[DDIR_RWDIR_CNT];
9 uint64_t max_bw[DDIR_RWDIR_CNT], min_bw[DDIR_RWDIR_CNT];
Elliott Hugheseda3a602017-05-19 18:53:02 -070010 uint64_t iobytes[DDIR_RWDIR_CNT];
Shaohua Li6eaf09d2012-09-14 08:49:43 +020011 uint64_t agg[DDIR_RWDIR_CNT];
Jens Axboea64e88d2011-10-03 14:20:01 +020012 uint32_t kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -070013 uint32_t unit_base;
Jens Axboea64e88d2011-10-03 14:20:01 +020014 uint32_t groupid;
Jens Axboe771e58b2013-01-30 12:56:23 +010015 uint32_t unified_rw_rep;
Jens Axboeeb663202014-06-30 08:51:33 -060016} __attribute__((packed));
Jens Axboea64e88d2011-10-03 14:20:01 +020017
18/*
19 * How many depth levels to log
20 */
21#define FIO_IO_U_MAP_NR 7
22#define FIO_IO_U_LAT_U_NR 10
23#define FIO_IO_U_LAT_M_NR 12
24
25/*
26 * Aggregate clat samples to report percentile(s) of them.
27 *
28 * EXECUTIVE SUMMARY
29 *
30 * FIO_IO_U_PLAT_BITS determines the maximum statistical error on the
31 * value of resulting percentiles. The error will be approximately
32 * 1/2^(FIO_IO_U_PLAT_BITS+1) of the value.
33 *
34 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the maximum
35 * range being tracked for latency samples. The maximum value tracked
36 * accurately will be 2^(GROUP_NR + PLAT_BITS -1) microseconds.
37 *
38 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the memory
39 * requirement of storing those aggregate counts. The memory used will
40 * be (FIO_IO_U_PLAT_GROUP_NR * 2^FIO_IO_U_PLAT_BITS) * sizeof(int)
41 * bytes.
42 *
43 * FIO_IO_U_PLAT_NR is the total number of buckets.
44 *
45 * DETAILS
46 *
47 * Suppose the clat varies from 0 to 999 (usec), the straightforward
48 * method is to keep an array of (999 + 1) buckets, in which a counter
49 * keeps the count of samples which fall in the bucket, e.g.,
50 * {[0],[1],...,[999]}. However this consumes a huge amount of space,
51 * and can be avoided if an approximation is acceptable.
52 *
53 * One such method is to let the range of the bucket to be greater
54 * than one. This method has low accuracy when the value is small. For
55 * example, let the buckets be {[0,99],[100,199],...,[900,999]}, and
56 * the represented value of each bucket be the mean of the range. Then
57 * a value 0 has an round-off error of 49.5. To improve on this, we
58 * use buckets with non-uniform ranges, while bounding the error of
59 * each bucket within a ratio of the sample value. A simple example
60 * would be when error_bound = 0.005, buckets are {
61 * {[0],[1],...,[99]}, {[100,101],[102,103],...,[198,199]},..,
62 * {[900,909],[910,919]...} }. The total range is partitioned into
63 * groups with different ranges, then buckets with uniform ranges. An
64 * upper bound of the error is (range_of_bucket/2)/value_of_bucket
65 *
66 * For better efficiency, we implement this using base two. We group
67 * samples by their Most Significant Bit (MSB), extract the next M bit
68 * of them as an index within the group, and discard the rest of the
69 * bits.
70 *
71 * E.g., assume a sample 'x' whose MSB is bit n (starting from bit 0),
72 * and use M bit for indexing
73 *
74 * | n | M bits | bit (n-M-1) ... bit 0 |
75 *
76 * Because x is at least 2^n, and bit 0 to bit (n-M-1) is at most
77 * (2^(n-M) - 1), discarding bit 0 to (n-M-1) makes the round-off
78 * error
79 *
80 * 2^(n-M)-1 2^(n-M) 1
81 * e <= --------- <= ------- = ---
82 * 2^n 2^n 2^M
83 *
84 * Furthermore, we use "mean" of the range to represent the bucket,
85 * the error e can be lowered by half to 1 / 2^(M+1). By using M bits
86 * as the index, each group must contains 2^M buckets.
87 *
88 * E.g. Let M (FIO_IO_U_PLAT_BITS) be 6
89 * Error bound is 1/2^(6+1) = 0.0078125 (< 1%)
90 *
91 * Group MSB #discarded range of #buckets
92 * error_bits value
93 * ----------------------------------------------------------------
94 * 0* 0~5 0 [0,63] 64
95 * 1* 6 0 [64,127] 64
96 * 2 7 1 [128,255] 64
97 * 3 8 2 [256,511] 64
98 * 4 9 3 [512,1023] 64
99 * ... ... ... [...,...] ...
100 * 18 23 17 [8838608,+inf]** 64
101 *
102 * * Special cases: when n < (M-1) or when n == (M-1), in both cases,
103 * the value cannot be rounded off. Use all bits of the sample as
104 * index.
105 *
106 * ** If a sample's MSB is greater than 23, it will be counted as 23.
107 */
108
109#define FIO_IO_U_PLAT_BITS 6
110#define FIO_IO_U_PLAT_VAL (1 << FIO_IO_U_PLAT_BITS)
111#define FIO_IO_U_PLAT_GROUP_NR 19
112#define FIO_IO_U_PLAT_NR (FIO_IO_U_PLAT_GROUP_NR * FIO_IO_U_PLAT_VAL)
113#define FIO_IO_U_LIST_MAX_LEN 20 /* The size of the default and user-specified
114 list of percentiles */
115
Elliott Hugheseda3a602017-05-19 18:53:02 -0700116/*
117 * Trim cycle count measurements
118 */
119#define MAX_NR_BLOCK_INFOS 8192
120#define BLOCK_INFO_STATE_SHIFT 29
121#define BLOCK_INFO_TRIMS(block_info) \
122 ((block_info) & ((1 << BLOCK_INFO_STATE_SHIFT) - 1))
123#define BLOCK_INFO_STATE(block_info) \
124 ((block_info) >> BLOCK_INFO_STATE_SHIFT)
125#define BLOCK_INFO(state, trim_cycles) \
126 ((trim_cycles) | ((unsigned int) (state) << BLOCK_INFO_STATE_SHIFT))
127#define BLOCK_INFO_SET_STATE(block_info, state) \
128 BLOCK_INFO(state, BLOCK_INFO_TRIMS(block_info))
129enum block_info_state {
130 BLOCK_STATE_UNINIT,
131 BLOCK_STATE_TRIMMED,
132 BLOCK_STATE_WRITTEN,
133 BLOCK_STATE_TRIM_FAILURE,
134 BLOCK_STATE_WRITE_FAILURE,
135 BLOCK_STATE_COUNT,
136};
137
Jens Axboea64e88d2011-10-03 14:20:01 +0200138#define MAX_PATTERN_SIZE 512
139#define FIO_JOBNAME_SIZE 128
Jens Axboe4e59d0f2014-03-14 08:41:39 -0600140#define FIO_JOBDESC_SIZE 256
Jens Axboea64e88d2011-10-03 14:20:01 +0200141#define FIO_VERROR_SIZE 128
142
143struct thread_stat {
144 char name[FIO_JOBNAME_SIZE];
145 char verror[FIO_VERROR_SIZE];
Jens Axboeddcc0b62011-10-03 14:45:27 +0200146 uint32_t error;
Jens Axboe2f122b12012-03-15 13:10:19 +0100147 uint32_t thread_number;
Jens Axboeddcc0b62011-10-03 14:45:27 +0200148 uint32_t groupid;
Jens Axboea64e88d2011-10-03 14:20:01 +0200149 uint32_t pid;
Jens Axboe4e59d0f2014-03-14 08:41:39 -0600150 char description[FIO_JOBDESC_SIZE];
Jens Axboea64e88d2011-10-03 14:20:01 +0200151 uint32_t members;
Jens Axboe771e58b2013-01-30 12:56:23 +0100152 uint32_t unified_rw_rep;
Jens Axboea64e88d2011-10-03 14:20:01 +0200153
154 /*
155 * bandwidth and latency stats
156 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200157 struct io_stat clat_stat[DDIR_RWDIR_CNT]; /* completion latency */
158 struct io_stat slat_stat[DDIR_RWDIR_CNT]; /* submission latency */
159 struct io_stat lat_stat[DDIR_RWDIR_CNT]; /* total latency */
160 struct io_stat bw_stat[DDIR_RWDIR_CNT]; /* bandwidth stats */
161 struct io_stat iops_stat[DDIR_RWDIR_CNT]; /* IOPS stats */
Jens Axboea64e88d2011-10-03 14:20:01 +0200162
163 /*
164 * fio system usage accounting
165 */
166 uint64_t usr_time;
167 uint64_t sys_time;
168 uint64_t ctx;
169 uint64_t minf, majf;
170
171 /*
172 * IO depth and latency stats
173 */
174 uint64_t clat_percentiles;
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100175 uint64_t percentile_precision;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200176 fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
Jens Axboea64e88d2011-10-03 14:20:01 +0200177
178 uint32_t io_u_map[FIO_IO_U_MAP_NR];
179 uint32_t io_u_submit[FIO_IO_U_MAP_NR];
180 uint32_t io_u_complete[FIO_IO_U_MAP_NR];
181 uint32_t io_u_lat_u[FIO_IO_U_LAT_U_NR];
182 uint32_t io_u_lat_m[FIO_IO_U_LAT_M_NR];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200183 uint32_t io_u_plat[DDIR_RWDIR_CNT][FIO_IO_U_PLAT_NR];
Gwendal Grignou4ffeb0a2014-10-25 16:04:32 -0700184 uint32_t pad;
185
Elliott Hugheseda3a602017-05-19 18:53:02 -0700186 uint64_t total_io_u[DDIR_RWDIR_CNT];
187 uint64_t short_io_u[DDIR_RWDIR_CNT];
188 uint64_t drop_io_u[DDIR_RWDIR_CNT];
Jens Axboea64e88d2011-10-03 14:20:01 +0200189 uint64_t total_submit;
190 uint64_t total_complete;
191
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200192 uint64_t io_bytes[DDIR_RWDIR_CNT];
193 uint64_t runtime[DDIR_RWDIR_CNT];
Jens Axboea64e88d2011-10-03 14:20:01 +0200194 uint64_t total_run_time;
195
196 /*
197 * IO Error related stats
198 */
Gwendal Grignou4ffeb0a2014-10-25 16:04:32 -0700199 union {
200 uint16_t continue_on_error;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700201 uint32_t pad2;
Gwendal Grignou4ffeb0a2014-10-25 16:04:32 -0700202 };
Jens Axboeddcc0b62011-10-03 14:45:27 +0200203 uint32_t first_error;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700204 uint64_t total_err_count;
205
206 uint64_t nr_block_infos;
207 uint32_t block_infos[MAX_NR_BLOCK_INFOS];
Jens Axboea64e88d2011-10-03 14:20:01 +0200208
209 uint32_t kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -0700210 uint32_t unit_base;
Jens Axboe3e260a42013-12-09 12:38:53 -0700211
212 uint32_t latency_depth;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700213 uint32_t pad3;
Jens Axboe3e260a42013-12-09 12:38:53 -0700214 uint64_t latency_target;
215 fio_fp64_t latency_percentile;
216 uint64_t latency_window;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700217
218 uint64_t ss_dur;
219 uint32_t ss_state;
220 uint32_t ss_head;
221
222 fio_fp64_t ss_limit;
223 fio_fp64_t ss_slope;
224 fio_fp64_t ss_deviation;
225 fio_fp64_t ss_criterion;
226
227 union {
228 uint64_t *ss_iops_data;
229 uint64_t pad4;
230 };
231
232 union {
233 uint64_t *ss_bw_data;
234 uint64_t pad5;
235 };
Jens Axboeeb663202014-06-30 08:51:33 -0600236} __attribute__((packed));
Jens Axboea64e88d2011-10-03 14:20:01 +0200237
Jens Axboeb75a3942011-10-03 16:03:43 +0200238struct jobs_eta {
239 uint32_t nr_running;
240 uint32_t nr_ramp;
Jens Axboece8ea6e2014-06-27 15:01:06 -0600241
Jens Axboeb75a3942011-10-03 16:03:43 +0200242 uint32_t nr_pending;
Jens Axboe714e85f2013-04-15 10:21:56 +0200243 uint32_t nr_setting_up;
Jens Axboece8ea6e2014-06-27 15:01:06 -0600244
Jens Axboeb75a3942011-10-03 16:03:43 +0200245 uint32_t files_open;
Jens Axboece8ea6e2014-06-27 15:01:06 -0600246
Elliott Hugheseda3a602017-05-19 18:53:02 -0700247 uint64_t m_rate[DDIR_RWDIR_CNT], t_rate[DDIR_RWDIR_CNT];
Jens Axboed79db122012-09-24 08:51:24 +0200248 uint32_t m_iops[DDIR_RWDIR_CNT], t_iops[DDIR_RWDIR_CNT];
Elliott Hugheseda3a602017-05-19 18:53:02 -0700249 uint64_t rate[DDIR_RWDIR_CNT];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200250 uint32_t iops[DDIR_RWDIR_CNT];
Jens Axboeb75a3942011-10-03 16:03:43 +0200251 uint64_t elapsed_sec;
252 uint64_t eta_sec;
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200253 uint32_t is_pow2;
Steven Noonanad705bc2013-04-08 15:05:25 -0700254 uint32_t unit_base;
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200255
256 /*
257 * Network 'copy' of run_str[]
258 */
259 uint32_t nr_threads;
Jens Axboe372aecb2013-01-08 13:42:41 +0100260 uint8_t run_str[];
Jens Axboeeb663202014-06-30 08:51:33 -0600261} __attribute__((packed));
Jens Axboeb75a3942011-10-03 16:03:43 +0200262
Elliott Hugheseda3a602017-05-19 18:53:02 -0700263struct io_u_plat_entry {
264 struct flist_head list;
265 unsigned int io_u_plat[FIO_IO_U_PLAT_NR];
266};
267
Vasily Tarasovc38e38f2014-11-09 20:22:24 -0700268extern struct fio_mutex *stat_mutex;
269
Elliott Hugheseda3a602017-05-19 18:53:02 -0700270extern struct jobs_eta *get_jobs_eta(bool force, size_t *size);
Jens Axboe61f6cce2014-06-24 08:40:21 -0600271
Jens Axboecef91752013-04-26 17:05:57 -0600272extern void stat_init(void);
273extern void stat_exit(void);
274
Elliott Hugheseda3a602017-05-19 18:53:02 -0700275extern struct json_object * show_thread_status(struct thread_stat *ts, struct group_run_stats *rs, struct flist_head *, struct buf_output *);
276extern void show_group_stats(struct group_run_stats *rs, struct buf_output *);
277extern bool calc_thread_status(struct jobs_eta *je, int force);
Jens Axboecf451d12011-10-03 16:48:30 +0200278extern void display_thread_status(struct jobs_eta *je);
Jens Axboe5b9babb2011-10-10 12:14:30 +0200279extern void show_run_stats(void);
Jens Axboe2e627242014-07-25 09:51:56 +0200280extern void __show_run_stats(void);
Jens Axboe7fe36312014-10-23 23:16:50 -0600281extern void __show_running_run_stats(void);
Jens Axboeb852e7c2012-03-30 10:30:35 +0200282extern void show_running_run_stats(void);
Jens Axboe06464902013-04-24 20:38:54 -0600283extern void check_for_running_stats(void);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700284extern void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, bool first);
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200285extern void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src);
286extern void init_thread_stat(struct thread_stat *ts);
287extern void init_group_run_stat(struct group_run_stats *gs);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100288extern void eta_to_str(char *str, unsigned long eta_sec);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700289extern bool calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max, double *mean, double *dev);
Jens Axboea2697902012-03-05 16:43:49 +0100290extern unsigned int calc_clat_percentiles(unsigned int *io_u_plat, unsigned long nr, fio_fp64_t *plist, unsigned int **output, unsigned int *maxv, unsigned int *minv);
Jens Axboee5bd1342012-03-05 21:38:12 +0100291extern void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat);
292extern void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat);
Jens Axboe2e331012012-03-05 22:07:54 +0100293extern void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist);
Jens Axboe6bb58212014-02-21 13:55:31 -0800294extern void reset_io_stats(struct thread_data *);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700295extern void update_rusage_stat(struct thread_data *);
296extern void clear_rusage_stat(struct thread_data *);
Jens Axboe2e331012012-03-05 22:07:54 +0100297
Elliott Hugheseda3a602017-05-19 18:53:02 -0700298extern void add_lat_sample(struct thread_data *, enum fio_ddir, unsigned long,
299 unsigned int, uint64_t);
300extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long,
301 unsigned int, uint64_t);
302extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long,
303 unsigned int, uint64_t);
304extern void add_agg_sample(union io_sample_data, enum fio_ddir, unsigned int);
305extern void add_iops_sample(struct thread_data *, struct io_u *,
306 unsigned int);
307extern void add_bw_sample(struct thread_data *, struct io_u *,
308 unsigned int, unsigned long);
309extern int calc_log_samples(void);
310
311extern struct io_log *agg_io_log[DDIR_RWDIR_CNT];
312extern int write_bw_log;
313
314static inline bool usec_to_msec(unsigned long *min, unsigned long *max,
315 double *mean, double *dev)
Jens Axboeb29ad562012-03-05 13:08:51 +0100316{
317 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
318 *min /= 1000;
319 *max /= 1000;
320 *mean /= 1000.0;
321 *dev /= 1000.0;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700322 return true;
Jens Axboeb29ad562012-03-05 13:08:51 +0100323 }
324
Elliott Hugheseda3a602017-05-19 18:53:02 -0700325 return false;
Jens Axboeb29ad562012-03-05 13:08:51 +0100326}
Jens Axboe61f6cce2014-06-24 08:40:21 -0600327/*
328 * Worst level condensing would be 1:5, so allow enough room for that
329 */
330#define __THREAD_RUNSTR_SZ(nr) ((nr) * 5)
Jens Axboe18148762014-06-23 19:07:12 -0600331#define THREAD_RUNSTR_SZ __THREAD_RUNSTR_SZ(thread_number)
332
Elliott Hugheseda3a602017-05-19 18:53:02 -0700333uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u);
334
Jens Axboea64e88d2011-10-03 14:20:01 +0200335#endif