Merge branch 'master' into gfio
[fio.git] / stat.h
1 #ifndef FIO_STAT_H
2 #define FIO_STAT_H
3
4 #include "iolog.h"
5
6 struct group_run_stats {
7         uint64_t max_run[DDIR_RWDIR_CNT], min_run[DDIR_RWDIR_CNT];
8         uint64_t max_bw[DDIR_RWDIR_CNT], min_bw[DDIR_RWDIR_CNT];
9         uint64_t io_kb[DDIR_RWDIR_CNT];
10         uint64_t agg[DDIR_RWDIR_CNT];
11         uint32_t kb_base;
12         uint32_t groupid;
13         uint32_t unified_rw_rep;
14 };
15
16 /*
17  * How many depth levels to log
18  */
19 #define FIO_IO_U_MAP_NR 7
20 #define FIO_IO_U_LAT_U_NR 10
21 #define FIO_IO_U_LAT_M_NR 12
22
23 /*
24  * Aggregate clat samples to report percentile(s) of them.
25  *
26  * EXECUTIVE SUMMARY
27  *
28  * FIO_IO_U_PLAT_BITS determines the maximum statistical error on the
29  * value of resulting percentiles. The error will be approximately
30  * 1/2^(FIO_IO_U_PLAT_BITS+1) of the value.
31  *
32  * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the maximum
33  * range being tracked for latency samples. The maximum value tracked
34  * accurately will be 2^(GROUP_NR + PLAT_BITS -1) microseconds.
35  *
36  * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the memory
37  * requirement of storing those aggregate counts. The memory used will
38  * be (FIO_IO_U_PLAT_GROUP_NR * 2^FIO_IO_U_PLAT_BITS) * sizeof(int)
39  * bytes.
40  *
41  * FIO_IO_U_PLAT_NR is the total number of buckets.
42  *
43  * DETAILS
44  *
45  * Suppose the clat varies from 0 to 999 (usec), the straightforward
46  * method is to keep an array of (999 + 1) buckets, in which a counter
47  * keeps the count of samples which fall in the bucket, e.g.,
48  * {[0],[1],...,[999]}. However this consumes a huge amount of space,
49  * and can be avoided if an approximation is acceptable.
50  *
51  * One such method is to let the range of the bucket to be greater
52  * than one. This method has low accuracy when the value is small. For
53  * example, let the buckets be {[0,99],[100,199],...,[900,999]}, and
54  * the represented value of each bucket be the mean of the range. Then
55  * a value 0 has an round-off error of 49.5. To improve on this, we
56  * use buckets with non-uniform ranges, while bounding the error of
57  * each bucket within a ratio of the sample value. A simple example
58  * would be when error_bound = 0.005, buckets are {
59  * {[0],[1],...,[99]}, {[100,101],[102,103],...,[198,199]},..,
60  * {[900,909],[910,919]...}  }. The total range is partitioned into
61  * groups with different ranges, then buckets with uniform ranges. An
62  * upper bound of the error is (range_of_bucket/2)/value_of_bucket
63  *
64  * For better efficiency, we implement this using base two. We group
65  * samples by their Most Significant Bit (MSB), extract the next M bit
66  * of them as an index within the group, and discard the rest of the
67  * bits.
68  *
69  * E.g., assume a sample 'x' whose MSB is bit n (starting from bit 0),
70  * and use M bit for indexing
71  *
72  *        | n |    M bits   | bit (n-M-1) ... bit 0 |
73  *
74  * Because x is at least 2^n, and bit 0 to bit (n-M-1) is at most
75  * (2^(n-M) - 1), discarding bit 0 to (n-M-1) makes the round-off
76  * error
77  *
78  *           2^(n-M)-1    2^(n-M)    1
79  *      e <= --------- <= ------- = ---
80  *             2^n          2^n     2^M
81  *
82  * Furthermore, we use "mean" of the range to represent the bucket,
83  * the error e can be lowered by half to 1 / 2^(M+1). By using M bits
84  * as the index, each group must contains 2^M buckets.
85  *
86  * E.g. Let M (FIO_IO_U_PLAT_BITS) be 6
87  *      Error bound is 1/2^(6+1) = 0.0078125 (< 1%)
88  *
89  *      Group   MSB     #discarded      range of                #buckets
90  *                      error_bits      value
91  *      ----------------------------------------------------------------
92  *      0*      0~5     0               [0,63]                  64
93  *      1*      6       0               [64,127]                64
94  *      2       7       1               [128,255]               64
95  *      3       8       2               [256,511]               64
96  *      4       9       3               [512,1023]              64
97  *      ...     ...     ...             [...,...]               ...
98  *      18      23      17              [8838608,+inf]**        64
99  *
100  *  * Special cases: when n < (M-1) or when n == (M-1), in both cases,
101  *    the value cannot be rounded off. Use all bits of the sample as
102  *    index.
103  *
104  *  ** If a sample's MSB is greater than 23, it will be counted as 23.
105  */
106
107 #define FIO_IO_U_PLAT_BITS 6
108 #define FIO_IO_U_PLAT_VAL (1 << FIO_IO_U_PLAT_BITS)
109 #define FIO_IO_U_PLAT_GROUP_NR 19
110 #define FIO_IO_U_PLAT_NR (FIO_IO_U_PLAT_GROUP_NR * FIO_IO_U_PLAT_VAL)
111 #define FIO_IO_U_LIST_MAX_LEN 20 /* The size of the default and user-specified
112                                         list of percentiles */
113
114 #define MAX_PATTERN_SIZE        512
115 #define FIO_JOBNAME_SIZE        128
116 #define FIO_VERROR_SIZE         128
117
118 struct thread_stat {
119         char name[FIO_JOBNAME_SIZE];
120         char verror[FIO_VERROR_SIZE];
121         uint32_t error;
122         uint32_t thread_number;
123         uint32_t groupid;
124         uint32_t pid;
125         char description[FIO_JOBNAME_SIZE];
126         uint32_t members;
127         uint32_t unified_rw_rep;
128
129         /*
130          * bandwidth and latency stats
131          */
132         struct io_stat clat_stat[DDIR_RWDIR_CNT]; /* completion latency */
133         struct io_stat slat_stat[DDIR_RWDIR_CNT]; /* submission latency */
134         struct io_stat lat_stat[DDIR_RWDIR_CNT]; /* total latency */
135         struct io_stat bw_stat[DDIR_RWDIR_CNT]; /* bandwidth stats */
136         struct io_stat iops_stat[DDIR_RWDIR_CNT]; /* IOPS stats */
137
138         /*
139          * fio system usage accounting
140          */
141         uint64_t usr_time;
142         uint64_t sys_time;
143         uint64_t ctx;
144         uint64_t minf, majf;
145
146         /*
147          * IO depth and latency stats
148          */
149         uint64_t clat_percentiles;
150         fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
151
152         uint32_t io_u_map[FIO_IO_U_MAP_NR];
153         uint32_t io_u_submit[FIO_IO_U_MAP_NR];
154         uint32_t io_u_complete[FIO_IO_U_MAP_NR];
155         uint32_t io_u_lat_u[FIO_IO_U_LAT_U_NR];
156         uint32_t io_u_lat_m[FIO_IO_U_LAT_M_NR];
157         uint32_t io_u_plat[DDIR_RWDIR_CNT][FIO_IO_U_PLAT_NR];
158         uint64_t total_io_u[3];
159         uint64_t short_io_u[3];
160         uint64_t total_submit;
161         uint64_t total_complete;
162
163         uint64_t io_bytes[DDIR_RWDIR_CNT];
164         uint64_t runtime[DDIR_RWDIR_CNT];
165         uint64_t total_run_time;
166
167         /*
168          * IO Error related stats
169          */
170         uint16_t continue_on_error;
171         uint64_t total_err_count;
172         uint32_t first_error;
173
174         uint32_t kb_base;
175 };
176
177 struct jobs_eta {
178         uint32_t nr_running;
179         uint32_t nr_ramp;
180         uint32_t nr_pending;
181         uint32_t files_open;
182         uint32_t m_rate[DDIR_RWDIR_CNT], t_rate[DDIR_RWDIR_CNT];
183         uint32_t m_iops[DDIR_RWDIR_CNT], t_iops[DDIR_RWDIR_CNT];
184         uint32_t rate[DDIR_RWDIR_CNT];
185         uint32_t iops[DDIR_RWDIR_CNT];
186         uint64_t elapsed_sec;
187         uint64_t eta_sec;
188         uint32_t is_pow2;
189
190         /*
191          * Network 'copy' of run_str[]
192          */
193         uint32_t nr_threads;
194         uint8_t run_str[];
195 };
196
197 extern void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs);
198 extern void show_group_stats(struct group_run_stats *rs);
199 extern int calc_thread_status(struct jobs_eta *je, int force);
200 extern void display_thread_status(struct jobs_eta *je);
201 extern void show_run_stats(void);
202 extern void show_running_run_stats(void);
203 extern void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr);
204 extern void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src);
205 extern void init_thread_stat(struct thread_stat *ts);
206 extern void init_group_run_stat(struct group_run_stats *gs);
207 extern void eta_to_str(char *str, unsigned long eta_sec);
208 extern int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max, double *mean, double *dev);
209 extern 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);
210 extern void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat);
211 extern void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat);
212 extern void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist);
213
214 static inline int usec_to_msec(unsigned long *min, unsigned long *max,
215                                double *mean, double *dev)
216 {
217         if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
218                 *min /= 1000;
219                 *max /= 1000;
220                 *mean /= 1000.0;
221                 *dev /= 1000.0;
222                 return 0;
223         }
224
225         return 1;
226 }
227
228 #endif