blob: 5b4841322285b1b28cce80bd190049f3c5f14030 [file] [log] [blame]
Jens Axboe3c39a372006-06-06 20:56:12 +02001#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
Jens Axboe5c4e1db2006-06-07 14:17:08 +02005#include <sys/stat.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02006#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
Jens Axboe7c9b1bc2009-06-03 09:25:57 +020011#include "diskutil.h"
Jens Axboec7c6cb42011-10-13 14:12:40 +020012#include "lib/ieee754.h"
Shaohua Licc372b12012-09-17 09:12:18 +020013#include "json.h"
Jens Axboe44404c52013-01-24 14:20:09 -070014#include "lib/getrusage.h"
Huadong Liuf2a2ce02013-01-30 13:22:24 +010015#include "idletime.h"
Elliott Hugheseda3a602017-05-19 18:53:02 -070016#include "lib/pow2.h"
17#include "lib/output_buffer.h"
18#include "helper_thread.h"
19#include "smalloc.h"
20
21#define LOG_MSEC_SLACK 10
Jens Axboe3c39a372006-06-06 20:56:12 +020022
Vasily Tarasovc38e38f2014-11-09 20:22:24 -070023struct fio_mutex *stat_mutex;
Jens Axboecef91752013-04-26 17:05:57 -060024
Elliott Hugheseda3a602017-05-19 18:53:02 -070025void clear_rusage_stat(struct thread_data *td)
26{
27 struct thread_stat *ts = &td->ts;
28
29 fio_getrusage(&td->ru_start);
30 ts->usr_time = ts->sys_time = 0;
31 ts->ctx = 0;
32 ts->minf = ts->majf = 0;
33}
34
Jens Axboe3c39a372006-06-06 20:56:12 +020035void update_rusage_stat(struct thread_data *td)
36{
Jens Axboe756867b2007-03-06 15:19:24 +010037 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +020038
Jens Axboe44404c52013-01-24 14:20:09 -070039 fio_getrusage(&td->ru_end);
Jens Axboec8aaba12011-10-03 12:14:19 +020040 ts->usr_time += mtime_since(&td->ru_start.ru_utime,
41 &td->ru_end.ru_utime);
42 ts->sys_time += mtime_since(&td->ru_start.ru_stime,
43 &td->ru_end.ru_stime);
44 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
45 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
46 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
47 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010048
Jens Axboec8aaba12011-10-03 12:14:19 +020049 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +020050}
51
Yu-ju Hong83349192011-08-13 00:53:44 +020052/*
53 * Given a latency, return the index of the corresponding bucket in
54 * the structure tracking percentiles.
55 *
56 * (1) find the group (and error bits) that the value (latency)
57 * belongs to by looking at its MSB. (2) find the bucket number in the
58 * group by looking at the index bits.
59 *
60 */
61static unsigned int plat_val_to_idx(unsigned int val)
62{
63 unsigned int msb, error_bits, base, offset, idx;
64
65 /* Find MSB starting from bit 0 */
66 if (val == 0)
67 msb = 0;
68 else
69 msb = (sizeof(val)*8) - __builtin_clz(val) - 1;
70
Jens Axboe716050f2011-08-16 08:43:45 +020071 /*
72 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
73 * all bits of the sample as index
74 */
Yu-ju Hong83349192011-08-13 00:53:44 +020075 if (msb <= FIO_IO_U_PLAT_BITS)
76 return val;
77
78 /* Compute the number of error bits to discard*/
79 error_bits = msb - FIO_IO_U_PLAT_BITS;
80
81 /* Compute the number of buckets before the group */
82 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
83
Jens Axboe716050f2011-08-16 08:43:45 +020084 /*
85 * Discard the error bits and apply the mask to find the
Jens Axboe3c3ed072012-03-27 09:12:39 +020086 * index for the buckets in the group
Jens Axboe716050f2011-08-16 08:43:45 +020087 */
Yu-ju Hong83349192011-08-13 00:53:44 +020088 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
89
90 /* Make sure the index does not exceed (array size - 1) */
Jens Axboe3c3ed072012-03-27 09:12:39 +020091 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1) ?
Yu-ju Hong83349192011-08-13 00:53:44 +020092 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
93
94 return idx;
95}
96
97/*
98 * Convert the given index of the bucket array to the value
99 * represented by the bucket
100 */
Elliott Hugheseda3a602017-05-19 18:53:02 -0700101static unsigned long long plat_idx_to_val(unsigned int idx)
Yu-ju Hong83349192011-08-13 00:53:44 +0200102{
103 unsigned int error_bits, k, base;
104
105 assert(idx < FIO_IO_U_PLAT_NR);
106
107 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
108 * all bits of the sample as index */
Jens Axboe3c3ed072012-03-27 09:12:39 +0200109 if (idx < (FIO_IO_U_PLAT_VAL << 1))
Yu-ju Hong83349192011-08-13 00:53:44 +0200110 return idx;
111
112 /* Find the group and compute the minimum value of that group */
Jens Axboe3c3ed072012-03-27 09:12:39 +0200113 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
Yu-ju Hong83349192011-08-13 00:53:44 +0200114 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
115
116 /* Find its bucket number of the group */
117 k = idx % FIO_IO_U_PLAT_VAL;
118
119 /* Return the mean of the range of the bucket */
120 return base + ((k + 0.5) * (1 << error_bits));
121}
122
123static int double_cmp(const void *a, const void *b)
124{
Jens Axboe802ad4a2011-10-05 09:51:58 +0200125 const fio_fp64_t fa = *(const fio_fp64_t *) a;
126 const fio_fp64_t fb = *(const fio_fp64_t *) b;
Yu-ju Hong83349192011-08-13 00:53:44 +0200127 int cmp = 0;
128
Jens Axboe802ad4a2011-10-05 09:51:58 +0200129 if (fa.u.f > fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200130 cmp = 1;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200131 else if (fa.u.f < fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200132 cmp = -1;
133
134 return cmp;
135}
136
Jens Axboea2697902012-03-05 16:43:49 +0100137unsigned int calc_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
138 fio_fp64_t *plist, unsigned int **output,
139 unsigned int *maxv, unsigned int *minv)
Yu-ju Hong83349192011-08-13 00:53:44 +0200140{
141 unsigned long sum = 0;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200142 unsigned int len, i, j = 0;
143 unsigned int oval_len = 0;
144 unsigned int *ovals = NULL;
145 int is_last;
146
147 *minv = -1U;
148 *maxv = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200149
Jens Axboe802ad4a2011-10-05 09:51:58 +0200150 len = 0;
151 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
152 len++;
Jens Axboe716050f2011-08-16 08:43:45 +0200153
Jens Axboe351de8d2011-10-12 21:03:45 +0200154 if (!len)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200155 return 0;
Jens Axboe351de8d2011-10-12 21:03:45 +0200156
Jens Axboe716050f2011-08-16 08:43:45 +0200157 /*
Jens Axboe802ad4a2011-10-05 09:51:58 +0200158 * Sort the percentile list. Note that it may already be sorted if
159 * we are using the default values, but since it's a short list this
160 * isn't a worry. Also note that this does not work for NaN values.
Jens Axboe716050f2011-08-16 08:43:45 +0200161 */
Jens Axboe802ad4a2011-10-05 09:51:58 +0200162 if (len > 1)
Jens Axboe3c3ed072012-03-27 09:12:39 +0200163 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
Yu-ju Hong83349192011-08-13 00:53:44 +0200164
Jens Axboe4f6f8292011-10-13 09:28:21 +0200165 /*
166 * Calculate bucket values, note down max and min values
167 */
Jens Axboe07511a62011-10-13 12:00:24 +0200168 is_last = 0;
169 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200170 sum += io_u_plat[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200171 while (sum >= (plist[j].u.f / 100.0 * nr)) {
172 assert(plist[j].u.f <= 100.0);
Yu-ju Hong83349192011-08-13 00:53:44 +0200173
Jens Axboe4f6f8292011-10-13 09:28:21 +0200174 if (j == oval_len) {
175 oval_len += 100;
176 ovals = realloc(ovals, oval_len * sizeof(unsigned int));
177 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200178
Jens Axboe4f6f8292011-10-13 09:28:21 +0200179 ovals[j] = plat_idx_to_val(i);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200180 if (ovals[j] < *minv)
181 *minv = ovals[j];
182 if (ovals[j] > *maxv)
183 *maxv = ovals[j];
Jens Axboe07511a62011-10-13 12:00:24 +0200184
185 is_last = (j == len - 1);
186 if (is_last)
187 break;
188
Jens Axboe4f6f8292011-10-13 09:28:21 +0200189 j++;
Yu-ju Hong83349192011-08-13 00:53:44 +0200190 }
191 }
Jens Axboe4f6f8292011-10-13 09:28:21 +0200192
Jens Axboe1db92cb2011-10-13 13:43:36 +0200193 *output = ovals;
194 return len;
195}
196
197/*
198 * Find and display the p-th percentile of clat
199 */
200static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700201 fio_fp64_t *plist, unsigned int precision,
202 struct buf_output *out)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200203{
204 unsigned int len, j = 0, minv, maxv;
205 unsigned int *ovals;
Jens Axboeeef02442013-02-06 08:51:57 +0100206 int is_last, per_line, scale_down;
207 char fmt[32];
Jens Axboe1db92cb2011-10-13 13:43:36 +0200208
209 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
210 if (!len)
211 goto out;
212
Jens Axboe4f6f8292011-10-13 09:28:21 +0200213 /*
214 * We default to usecs, but if the value range is such that we
215 * should scale down to msecs, do that.
216 */
217 if (minv > 2000 && maxv > 99999) {
218 scale_down = 1;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700219 log_buf(out, " clat percentiles (msec):\n |");
Jens Axboe4f6f8292011-10-13 09:28:21 +0200220 } else {
221 scale_down = 0;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700222 log_buf(out, " clat percentiles (usec):\n |");
Jens Axboe4f6f8292011-10-13 09:28:21 +0200223 }
224
Jens Axboe3dc1e5b2013-02-07 12:56:09 +0100225 snprintf(fmt, sizeof(fmt), "%%1.%uf", precision);
Jens Axboeeef02442013-02-06 08:51:57 +0100226 per_line = (80 - 7) / (precision + 14);
Jens Axboe619adf92013-02-06 08:46:55 +0100227
Jens Axboe4f6f8292011-10-13 09:28:21 +0200228 for (j = 0; j < len; j++) {
Jens Axboe619adf92013-02-06 08:46:55 +0100229 char fbuf[16], *ptr = fbuf;
Jens Axboe4f6f8292011-10-13 09:28:21 +0200230
231 /* for formatting */
Jens Axboeeef02442013-02-06 08:51:57 +0100232 if (j != 0 && (j % per_line) == 0)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700233 log_buf(out, " |");
Jens Axboe4f6f8292011-10-13 09:28:21 +0200234
235 /* end of the list */
236 is_last = (j == len - 1);
237
238 if (plist[j].u.f < 10.0)
Jens Axboe619adf92013-02-06 08:46:55 +0100239 ptr += sprintf(fbuf, " ");
240
Jens Axboeeef02442013-02-06 08:51:57 +0100241 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f);
Jens Axboe4f6f8292011-10-13 09:28:21 +0200242
243 if (scale_down)
244 ovals[j] = (ovals[j] + 999) / 1000;
245
Elliott Hugheseda3a602017-05-19 18:53:02 -0700246 log_buf(out, " %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
Jens Axboe4f6f8292011-10-13 09:28:21 +0200247
248 if (is_last)
249 break;
250
Jens Axboeeef02442013-02-06 08:51:57 +0100251 if ((j % per_line) == per_line - 1) /* for formatting */
Elliott Hugheseda3a602017-05-19 18:53:02 -0700252 log_buf(out, "\n");
Jens Axboe4f6f8292011-10-13 09:28:21 +0200253 }
254
Jens Axboe1db92cb2011-10-13 13:43:36 +0200255out:
Jens Axboe4f6f8292011-10-13 09:28:21 +0200256 if (ovals)
257 free(ovals);
Yu-ju Hong83349192011-08-13 00:53:44 +0200258}
259
Elliott Hugheseda3a602017-05-19 18:53:02 -0700260bool calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
261 double *mean, double *dev)
Jens Axboe3c39a372006-06-06 20:56:12 +0200262{
Erwan Veluee0ccb72013-07-22 23:39:18 +0200263 double n = (double) is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200264
Erwan Veluee0ccb72013-07-22 23:39:18 +0200265 if (n == 0)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700266 return false;
Jens Axboe3c39a372006-06-06 20:56:12 +0200267
268 *min = is->min_val;
269 *max = is->max_val;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200270 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200271
Jens Axboe68704082007-01-10 19:56:37 +0100272 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200273 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100274 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200275 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100276
Elliott Hugheseda3a602017-05-19 18:53:02 -0700277 return true;
Jens Axboe3c39a372006-06-06 20:56:12 +0200278}
279
Elliott Hugheseda3a602017-05-19 18:53:02 -0700280void show_group_stats(struct group_run_stats *rs, struct buf_output *out)
Jens Axboe3c39a372006-06-06 20:56:12 +0200281{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700282 char *io, *agg, *min, *max;
283 char *ioalt, *aggalt, *minalt, *maxalt;
Jens Axboe4d6922b2014-11-12 11:11:20 -0700284 const char *str[] = { " READ", " WRITE" , " TRIM"};
Jens Axboedbe11252007-02-11 00:19:51 +0100285 int i;
286
Elliott Hugheseda3a602017-05-19 18:53:02 -0700287 log_buf(out, "\nRun status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200288
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200289 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200290 const int i2p = is_power_of_2(rs->kb_base);
291
Jens Axboedbe11252007-02-11 00:19:51 +0100292 if (!rs->max_run[i])
293 continue;
294
Elliott Hugheseda3a602017-05-19 18:53:02 -0700295 io = num2str(rs->iobytes[i], 4, 1, i2p, N2S_BYTE);
296 ioalt = num2str(rs->iobytes[i], 4, 1, !i2p, N2S_BYTE);
297 agg = num2str(rs->agg[i], 4, 1, i2p, rs->unit_base);
298 aggalt = num2str(rs->agg[i], 4, 1, !i2p, rs->unit_base);
299 min = num2str(rs->min_bw[i], 4, 1, i2p, rs->unit_base);
300 minalt = num2str(rs->min_bw[i], 4, 1, !i2p, rs->unit_base);
301 max = num2str(rs->max_bw[i], 4, 1, i2p, rs->unit_base);
302 maxalt = num2str(rs->max_bw[i], 4, 1, !i2p, rs->unit_base);
303 log_buf(out, "%s: bw=%s (%s), %s-%s (%s-%s), io=%s (%s), run=%llu-%llumsec\n",
Jens Axboe4d6922b2014-11-12 11:11:20 -0700304 rs->unified_rw_rep ? " MIXED" : str[i],
Elliott Hugheseda3a602017-05-19 18:53:02 -0700305 agg, aggalt, min, max, minalt, maxalt, io, ioalt,
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200306 (unsigned long long) rs->min_run[i],
307 (unsigned long long) rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100308
Elliott Hugheseda3a602017-05-19 18:53:02 -0700309 free(io);
310 free(agg);
311 free(min);
312 free(max);
313 free(ioalt);
314 free(aggalt);
315 free(minalt);
316 free(maxalt);
Jens Axboedbe11252007-02-11 00:19:51 +0100317 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200318}
319
Jens Axboe2e331012012-03-05 22:07:54 +0100320void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100321{
322 int i;
323
324 /*
325 * Do depth distribution calculations
326 */
327 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200328 if (total) {
329 io_u_dist[i] = (double) map[i] / (double) total;
330 io_u_dist[i] *= 100.0;
331 if (io_u_dist[i] < 0.1 && map[i])
332 io_u_dist[i] = 0.1;
333 } else
334 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100335 }
336}
337
Jens Axboe04a0fea2007-06-19 12:48:41 +0200338static void stat_calc_lat(struct thread_stat *ts, double *dst,
339 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100340{
Jens Axboed79db122012-09-24 08:51:24 +0200341 unsigned long total = ddir_rw_sum(ts->total_io_u);
Jens Axboe22708902007-03-06 17:05:32 +0100342 int i;
343
344 /*
345 * Do latency distribution calculations
346 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200347 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200348 if (total) {
349 dst[i] = (double) src[i] / (double) total;
350 dst[i] *= 100.0;
351 if (dst[i] < 0.01 && src[i])
352 dst[i] = 0.01;
353 } else
354 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100355 }
356}
357
Jens Axboee5bd1342012-03-05 21:38:12 +0100358void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200359{
360 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
361}
362
Jens Axboee5bd1342012-03-05 21:38:12 +0100363void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200364{
365 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
366}
367
Jens Axboeb29ad562012-03-05 13:08:51 +0100368static void display_lat(const char *name, unsigned long min, unsigned long max,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700369 double mean, double dev, struct buf_output *out)
Jens Axboeea2accc2007-06-19 09:48:44 +0200370{
Jens Axboeb29ad562012-03-05 13:08:51 +0100371 const char *base = "(usec)";
372 char *minp, *maxp;
Jens Axboeea2accc2007-06-19 09:48:44 +0200373
Elliott Hugheseda3a602017-05-19 18:53:02 -0700374 if (usec_to_msec(&min, &max, &mean, &dev))
Jens Axboeb29ad562012-03-05 13:08:51 +0100375 base = "(msec)";
376
Elliott Hugheseda3a602017-05-19 18:53:02 -0700377 minp = num2str(min, 6, 1, 0, N2S_NONE);
378 maxp = num2str(max, 6, 1, 0, N2S_NONE);
Jens Axboeb29ad562012-03-05 13:08:51 +0100379
Elliott Hugheseda3a602017-05-19 18:53:02 -0700380 log_buf(out, " %s %s: min=%s, max=%s, avg=%5.02f,"
Jens Axboeb29ad562012-03-05 13:08:51 +0100381 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
382
383 free(minp);
384 free(maxp);
Jens Axboeea2accc2007-06-19 09:48:44 +0200385}
386
Jens Axboe756867b2007-03-06 15:19:24 +0100387static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700388 int ddir, struct buf_output *out)
Jens Axboe3c39a372006-06-06 20:56:12 +0200389{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700390 const char *str[] = { " read", "write", " trim" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200391 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100392 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200393 double mean, dev;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700394 char *io_p, *bw_p, *bw_p_alt, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200395 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200396
Jens Axboeff58fce2010-08-25 12:02:08 +0200397 assert(ddir_rw(ddir));
398
Jens Axboe756867b2007-03-06 15:19:24 +0100399 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200400 return;
401
Jens Axboe90fef2d2009-07-17 22:33:32 +0200402 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200403 runt = ts->runtime[ddir];
404
405 bw = (1000 * ts->io_bytes[ddir]) / runt;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700406 io_p = num2str(ts->io_bytes[ddir], 4, 1, i2p, N2S_BYTE);
407 bw_p = num2str(bw, 4, 1, i2p, ts->unit_base);
408 bw_p_alt = num2str(bw, 4, 1, !i2p, ts->unit_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200409
Bruce Cran0aacc502011-07-09 08:19:53 +0200410 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700411 iops_p = num2str(iops, 4, 1, 0, N2S_NONE);
Jens Axboedbe11252007-02-11 00:19:51 +0100412
Elliott Hugheseda3a602017-05-19 18:53:02 -0700413 log_buf(out, " %s: IOPS=%s, BW=%s (%s)(%s/%llumsec)\n",
414 rs->unified_rw_rep ? "mixed" : str[ddir],
415 iops_p, bw_p, bw_p_alt, io_p,
416 (unsigned long long) ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100417
418 free(io_p);
419 free(bw_p);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700420 free(bw_p_alt);
Jens Axboeb3605062007-03-12 14:19:47 +0100421 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200422
Jens Axboeb29ad562012-03-05 13:08:51 +0100423 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700424 display_lat("slat", min, max, mean, dev, out);
Jens Axboeb29ad562012-03-05 13:08:51 +0100425 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700426 display_lat("clat", min, max, mean, dev, out);
Jens Axboeb29ad562012-03-05 13:08:51 +0100427 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700428 display_lat(" lat", min, max, mean, dev, out);
Jens Axboe3c39a372006-06-06 20:56:12 +0200429
Yu-ju Hong83349192011-08-13 00:53:44 +0200430 if (ts->clat_percentiles) {
431 show_clat_percentiles(ts->io_u_plat[ddir],
432 ts->clat_stat[ddir].samples,
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100433 ts->percentile_list,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700434 ts->percentile_precision, out);
Yu-ju Hong83349192011-08-13 00:53:44 +0200435 }
Jens Axboe079ad092007-02-20 13:58:20 +0100436 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Steven Noonan142c7f22013-04-08 15:25:54 -0700437 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700438 const char *bw_str;
439
440 if ((rs->unit_base == 1) && i2p)
441 bw_str = "Kibit";
442 else if (rs->unit_base == 1)
443 bw_str = "kbit";
444 else if (i2p)
445 bw_str = "KiB";
446 else
447 bw_str = "kB";
Steven Noonand6869902013-04-08 15:40:13 -0700448
449 if (rs->unit_base == 1) {
450 min *= 8.0;
451 max *= 8.0;
452 mean *= 8.0;
453 dev *= 8.0;
454 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200455
Jens Axboe2f2c6922012-02-07 16:42:43 +0100456 if (rs->agg[ddir]) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100457 p_of_agg = mean * 100 / (double) rs->agg[ddir];
458 if (p_of_agg > 100.0)
459 p_of_agg = 100.0;
460 }
Jens Axboeb7017e32011-10-14 09:30:01 +0200461
Steven Noonan142c7f22013-04-08 15:25:54 -0700462 if (mean > fkb_base * fkb_base) {
463 min /= fkb_base;
464 max /= fkb_base;
465 mean /= fkb_base;
466 dev /= fkb_base;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700467 bw_str = (rs->unit_base == 1 ? "Mibit" : "MiB");
Jens Axboeb7017e32011-10-14 09:30:01 +0200468 }
469
Elliott Hugheseda3a602017-05-19 18:53:02 -0700470 log_buf(out, " bw (%5s/s): min=%5lu, max=%5lu, per=%3.2f%%, avg=%5.02f, stdev=%5.02f\n",
471 bw_str, min, max, p_of_agg, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200472 }
473}
474
Jens Axboe7e1773b2011-10-14 12:47:56 +0200475static int show_lat(double *io_u_lat, int nr, const char **ranges,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700476 const char *msg, struct buf_output *out)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200477{
Jens Axboe7e1773b2011-10-14 12:47:56 +0200478 int new_line = 1, i, line = 0, shown = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200479
480 for (i = 0; i < nr; i++) {
481 if (io_u_lat[i] <= 0.0)
482 continue;
Jens Axboe7e1773b2011-10-14 12:47:56 +0200483 shown = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200484 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200485 if (line)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700486 log_buf(out, "\n");
487 log_buf(out, " lat (%s) : ", msg);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200488 new_line = 0;
489 line = 0;
490 }
491 if (line)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700492 log_buf(out, ", ");
493 log_buf(out, "%s%3.2f%%", ranges[i], io_u_lat[i]);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200494 line++;
495 if (line == 5)
496 new_line = 1;
497 }
Jens Axboe7e1773b2011-10-14 12:47:56 +0200498
499 if (shown)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700500 log_buf(out, "\n");
Jens Axboe7e1773b2011-10-14 12:47:56 +0200501
502 return shown;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200503}
504
Elliott Hugheseda3a602017-05-19 18:53:02 -0700505static void show_lat_u(double *io_u_lat_u, struct buf_output *out)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200506{
507 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
508 "250=", "500=", "750=", "1000=", };
509
Elliott Hugheseda3a602017-05-19 18:53:02 -0700510 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec", out);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200511}
512
Elliott Hugheseda3a602017-05-19 18:53:02 -0700513static void show_lat_m(double *io_u_lat_m, struct buf_output *out)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200514{
515 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
516 "250=", "500=", "750=", "1000=", "2000=",
517 ">=2000=", };
518
Elliott Hugheseda3a602017-05-19 18:53:02 -0700519 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec", out);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200520}
521
Elliott Hugheseda3a602017-05-19 18:53:02 -0700522static void show_latencies(struct thread_stat *ts, struct buf_output *out)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200523{
Jens Axboec551f652012-03-05 20:49:10 +0100524 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
525 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
526
Jens Axboe5a189882012-03-05 14:08:34 +0100527 stat_calc_lat_u(ts, io_u_lat_u);
528 stat_calc_lat_m(ts, io_u_lat_m);
529
Elliott Hugheseda3a602017-05-19 18:53:02 -0700530 show_lat_u(io_u_lat_u, out);
531 show_lat_m(io_u_lat_m, out);
532}
533
534static int block_state_category(int block_state)
535{
536 switch (block_state) {
537 case BLOCK_STATE_UNINIT:
538 return 0;
539 case BLOCK_STATE_TRIMMED:
540 case BLOCK_STATE_WRITTEN:
541 return 1;
542 case BLOCK_STATE_WRITE_FAILURE:
543 case BLOCK_STATE_TRIM_FAILURE:
544 return 2;
545 default:
546 /* Silence compile warning on some BSDs and have a return */
547 assert(0);
548 return -1;
549 }
550}
551
552static int compare_block_infos(const void *bs1, const void *bs2)
553{
554 uint32_t block1 = *(uint32_t *)bs1;
555 uint32_t block2 = *(uint32_t *)bs2;
556 int state1 = BLOCK_INFO_STATE(block1);
557 int state2 = BLOCK_INFO_STATE(block2);
558 int bscat1 = block_state_category(state1);
559 int bscat2 = block_state_category(state2);
560 int cycles1 = BLOCK_INFO_TRIMS(block1);
561 int cycles2 = BLOCK_INFO_TRIMS(block2);
562
563 if (bscat1 < bscat2)
564 return -1;
565 if (bscat1 > bscat2)
566 return 1;
567
568 if (cycles1 < cycles2)
569 return -1;
570 if (cycles1 > cycles2)
571 return 1;
572
573 if (state1 < state2)
574 return -1;
575 if (state1 > state2)
576 return 1;
577
578 assert(block1 == block2);
579 return 0;
580}
581
582static int calc_block_percentiles(int nr_block_infos, uint32_t *block_infos,
583 fio_fp64_t *plist, unsigned int **percentiles,
584 unsigned int *types)
585{
586 int len = 0;
587 int i, nr_uninit;
588
589 qsort(block_infos, nr_block_infos, sizeof(uint32_t), compare_block_infos);
590
591 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
592 len++;
593
594 if (!len)
595 return 0;
596
597 /*
598 * Sort the percentile list. Note that it may already be sorted if
599 * we are using the default values, but since it's a short list this
600 * isn't a worry. Also note that this does not work for NaN values.
601 */
602 if (len > 1)
603 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
604
605 nr_uninit = 0;
606 /* Start only after the uninit entries end */
607 for (nr_uninit = 0;
608 nr_uninit < nr_block_infos
609 && BLOCK_INFO_STATE(block_infos[nr_uninit]) == BLOCK_STATE_UNINIT;
610 nr_uninit ++)
611 ;
612
613 if (nr_uninit == nr_block_infos)
614 return 0;
615
616 *percentiles = calloc(len, sizeof(**percentiles));
617
618 for (i = 0; i < len; i++) {
619 int idx = (plist[i].u.f * (nr_block_infos - nr_uninit) / 100)
620 + nr_uninit;
621 (*percentiles)[i] = BLOCK_INFO_TRIMS(block_infos[idx]);
622 }
623
624 memset(types, 0, sizeof(*types) * BLOCK_STATE_COUNT);
625 for (i = 0; i < nr_block_infos; i++)
626 types[BLOCK_INFO_STATE(block_infos[i])]++;
627
628 return len;
629}
630
631static const char *block_state_names[] = {
632 [BLOCK_STATE_UNINIT] = "unwritten",
633 [BLOCK_STATE_TRIMMED] = "trimmed",
634 [BLOCK_STATE_WRITTEN] = "written",
635 [BLOCK_STATE_TRIM_FAILURE] = "trim failure",
636 [BLOCK_STATE_WRITE_FAILURE] = "write failure",
637};
638
639static void show_block_infos(int nr_block_infos, uint32_t *block_infos,
640 fio_fp64_t *plist, struct buf_output *out)
641{
642 int len, pos, i;
643 unsigned int *percentiles = NULL;
644 unsigned int block_state_counts[BLOCK_STATE_COUNT];
645
646 len = calc_block_percentiles(nr_block_infos, block_infos, plist,
647 &percentiles, block_state_counts);
648
649 log_buf(out, " block lifetime percentiles :\n |");
650 pos = 0;
651 for (i = 0; i < len; i++) {
652 uint32_t block_info = percentiles[i];
653#define LINE_LENGTH 75
654 char str[LINE_LENGTH];
655 int strln = snprintf(str, LINE_LENGTH, " %3.2fth=%u%c",
656 plist[i].u.f, block_info,
657 i == len - 1 ? '\n' : ',');
658 assert(strln < LINE_LENGTH);
659 if (pos + strln > LINE_LENGTH) {
660 pos = 0;
661 log_buf(out, "\n |");
662 }
663 log_buf(out, "%s", str);
664 pos += strln;
665#undef LINE_LENGTH
666 }
667 if (percentiles)
668 free(percentiles);
669
670 log_buf(out, " states :");
671 for (i = 0; i < BLOCK_STATE_COUNT; i++)
672 log_buf(out, " %s=%u%c",
673 block_state_names[i], block_state_counts[i],
674 i == BLOCK_STATE_COUNT - 1 ? '\n' : ',');
675}
676
677static void show_ss_normal(struct thread_stat *ts, struct buf_output *out)
678{
679 char *p1, *p1alt, *p2;
680 unsigned long long bw_mean, iops_mean;
681 const int i2p = is_power_of_2(ts->kb_base);
682
683 if (!ts->ss_dur)
684 return;
685
686 bw_mean = steadystate_bw_mean(ts);
687 iops_mean = steadystate_iops_mean(ts);
688
689 p1 = num2str(bw_mean / ts->kb_base, 4, ts->kb_base, i2p, ts->unit_base);
690 p1alt = num2str(bw_mean / ts->kb_base, 4, ts->kb_base, !i2p, ts->unit_base);
691 p2 = num2str(iops_mean, 4, 1, 0, N2S_NONE);
692
693 log_buf(out, " steadystate : attained=%s, bw=%s (%s), iops=%s, %s%s=%.3f%s\n",
694 ts->ss_state & __FIO_SS_ATTAINED ? "yes" : "no",
695 p1, p1alt, p2,
696 ts->ss_state & __FIO_SS_IOPS ? "iops" : "bw",
697 ts->ss_state & __FIO_SS_SLOPE ? " slope": " mean dev",
698 ts->ss_criterion.u.f,
699 ts->ss_state & __FIO_SS_PCT ? "%" : "");
700
701 free(p1);
702 free(p1alt);
703 free(p2);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200704}
705
Jens Axboe10aa1362014-04-01 21:10:36 -0600706static void show_thread_status_normal(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700707 struct group_run_stats *rs,
708 struct buf_output *out)
Jens Axboe3c39a372006-06-06 20:56:12 +0200709{
710 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100711 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100712 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe57a64322012-06-14 15:11:15 +0200713 time_t time_p;
Jens Axboeffb17c02015-01-06 12:03:09 -0700714 char time_buf[32];
Jens Axboe3c39a372006-06-06 20:56:12 +0200715
Jens Axboee93fd532014-10-09 20:05:55 -0600716 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u))
Jens Axboe3c39a372006-06-06 20:56:12 +0200717 return;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700718
719 memset(time_buf, 0, sizeof(time_buf));
Jens Axboe3c39a372006-06-06 20:56:12 +0200720
Jens Axboe57a64322012-06-14 15:11:15 +0200721 time(&time_p);
Saurabh De45054cb2012-10-09 14:46:24 -0600722 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
Jens Axboe57a64322012-06-14 15:11:15 +0200723
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100724 if (!ts->error) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700725 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100726 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200727 ts->error, (int) ts->pid, time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100728 } else {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700729 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100730 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200731 ts->error, ts->verror, (int) ts->pid,
732 time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100733 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200734
Jens Axboe259e47d2011-10-13 21:05:59 +0200735 if (strlen(ts->description))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700736 log_buf(out, " Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100737
Jens Axboe756867b2007-03-06 15:19:24 +0100738 if (ts->io_bytes[DDIR_READ])
Elliott Hugheseda3a602017-05-19 18:53:02 -0700739 show_ddir_status(rs, ts, DDIR_READ, out);
Jens Axboe756867b2007-03-06 15:19:24 +0100740 if (ts->io_bytes[DDIR_WRITE])
Elliott Hugheseda3a602017-05-19 18:53:02 -0700741 show_ddir_status(rs, ts, DDIR_WRITE, out);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200742 if (ts->io_bytes[DDIR_TRIM])
Elliott Hugheseda3a602017-05-19 18:53:02 -0700743 show_ddir_status(rs, ts, DDIR_TRIM, out);
Jens Axboe3c39a372006-06-06 20:56:12 +0200744
Elliott Hugheseda3a602017-05-19 18:53:02 -0700745 show_latencies(ts, out);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200746
Jens Axboe756867b2007-03-06 15:19:24 +0100747 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100748 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100749 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200750
Jens Axboe756867b2007-03-06 15:19:24 +0100751 usr_cpu = (double) ts->usr_time * 100 / runt;
752 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200753 } else {
754 usr_cpu = 0;
755 sys_cpu = 0;
756 }
757
Elliott Hugheseda3a602017-05-19 18:53:02 -0700758 log_buf(out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%llu,"
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200759 " majf=%llu, minf=%llu\n", usr_cpu, sys_cpu,
760 (unsigned long long) ts->ctx,
761 (unsigned long long) ts->majf,
762 (unsigned long long) ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100763
Jens Axboed79db122012-09-24 08:51:24 +0200764 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700765 log_buf(out, " IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100766 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
767 io_u_dist[1], io_u_dist[2],
768 io_u_dist[3], io_u_dist[4],
769 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200770
771 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700772 log_buf(out, " submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
Jens Axboe838bc702008-05-22 13:08:23 +0200773 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
774 io_u_dist[1], io_u_dist[2],
775 io_u_dist[3], io_u_dist[4],
776 io_u_dist[5], io_u_dist[6]);
777 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700778 log_buf(out, " complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
Jens Axboe838bc702008-05-22 13:08:23 +0200779 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
780 io_u_dist[1], io_u_dist[2],
781 io_u_dist[3], io_u_dist[4],
782 io_u_dist[5], io_u_dist[6]);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700783 log_buf(out, " issued rwt: total=%llu,%llu,%llu,"
784 " short=%llu,%llu,%llu,"
785 " dropped=%llu,%llu,%llu\n",
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200786 (unsigned long long) ts->total_io_u[0],
787 (unsigned long long) ts->total_io_u[1],
788 (unsigned long long) ts->total_io_u[2],
789 (unsigned long long) ts->short_io_u[0],
790 (unsigned long long) ts->short_io_u[1],
Jens Axboe67e149c2014-10-09 13:27:44 -0600791 (unsigned long long) ts->short_io_u[2],
792 (unsigned long long) ts->drop_io_u[0],
793 (unsigned long long) ts->drop_io_u[1],
794 (unsigned long long) ts->drop_io_u[2]);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200795 if (ts->continue_on_error) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700796 log_buf(out, " errors : total=%llu, first_error=%d/<%s>\n",
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200797 (unsigned long long)ts->total_err_count,
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200798 ts->first_error,
799 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200800 }
Jens Axboe3e260a42013-12-09 12:38:53 -0700801 if (ts->latency_depth) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700802 log_buf(out, " latency : target=%llu, window=%llu, percentile=%.2f%%, depth=%u\n",
Jens Axboe3e260a42013-12-09 12:38:53 -0700803 (unsigned long long)ts->latency_target,
804 (unsigned long long)ts->latency_window,
805 ts->latency_percentile.u.f,
806 ts->latency_depth);
807 }
Elliott Hugheseda3a602017-05-19 18:53:02 -0700808
809 if (ts->nr_block_infos)
810 show_block_infos(ts->nr_block_infos, ts->block_infos,
811 ts->percentile_list, out);
812
813 if (ts->ss_dur)
814 show_ss_normal(ts, out);
Jens Axboe3c39a372006-06-06 20:56:12 +0200815}
816
Jens Axboe756867b2007-03-06 15:19:24 +0100817static void show_ddir_status_terse(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700818 struct group_run_stats *rs, int ddir,
819 struct buf_output *out)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200820{
821 unsigned long min, max;
Jens Axboe312b4af2011-10-13 13:11:42 +0200822 unsigned long long bw, iops;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200823 unsigned int *ovals = NULL;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200824 double mean, dev;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200825 unsigned int len, minv, maxv;
826 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200827
Jens Axboeff58fce2010-08-25 12:02:08 +0200828 assert(ddir_rw(ddir));
829
Jens Axboe312b4af2011-10-13 13:11:42 +0200830 iops = bw = 0;
831 if (ts->runtime[ddir]) {
832 uint64_t runt = ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200833
Elliott Hugheseda3a602017-05-19 18:53:02 -0700834 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; /* KiB/s */
Jens Axboe312b4af2011-10-13 13:11:42 +0200835 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
836 }
837
Elliott Hugheseda3a602017-05-19 18:53:02 -0700838 log_buf(out, ";%llu;%llu;%llu;%llu",
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200839 (unsigned long long) ts->io_bytes[ddir] >> 10, bw, iops,
840 (unsigned long long) ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200841
Jens Axboe079ad092007-02-20 13:58:20 +0100842 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700843 log_buf(out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200844 else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700845 log_buf(out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200846
Jens Axboe079ad092007-02-20 13:58:20 +0100847 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700848 log_buf(out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200849 else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700850 log_buf(out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200851
Jens Axboe1db92cb2011-10-13 13:43:36 +0200852 if (ts->clat_percentiles) {
853 len = calc_clat_percentiles(ts->io_u_plat[ddir],
854 ts->clat_stat[ddir].samples,
855 ts->percentile_list, &ovals, &maxv,
856 &minv);
857 } else
858 len = 0;
859
860 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
861 if (i >= len) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700862 log_buf(out, ";0%%=0");
Jens Axboe1db92cb2011-10-13 13:43:36 +0200863 continue;
864 }
Elliott Hugheseda3a602017-05-19 18:53:02 -0700865 log_buf(out, ";%f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200866 }
Keplar kramer2341a372011-10-19 21:31:27 +0200867
868 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
Elliott Hugheseda3a602017-05-19 18:53:02 -0700869 log_buf(out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Keplar kramer2341a372011-10-19 21:31:27 +0200870 else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700871 log_buf(out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Keplar kramer2341a372011-10-19 21:31:27 +0200872
Jens Axboe1db92cb2011-10-13 13:43:36 +0200873 if (ovals)
874 free(ovals);
875
Jens Axboe079ad092007-02-20 13:58:20 +0100876 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100877 double p_of_agg = 100.0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200878
Jens Axboe19d3e962012-02-07 12:27:28 +0100879 if (rs->agg[ddir]) {
880 p_of_agg = mean * 100 / (double) rs->agg[ddir];
881 if (p_of_agg > 100.0)
882 p_of_agg = 100.0;
883 }
884
Elliott Hugheseda3a602017-05-19 18:53:02 -0700885 log_buf(out, ";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200886 } else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700887 log_buf(out, ";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200888}
889
Shaohua Licc372b12012-09-17 09:12:18 +0200890static void add_ddir_status_json(struct thread_stat *ts,
891 struct group_run_stats *rs, int ddir, struct json_object *parent)
892{
893 unsigned long min, max;
Ben Englandff0dbe12015-02-27 08:14:49 -0700894 unsigned long long bw;
Shaohua Licc372b12012-09-17 09:12:18 +0200895 unsigned int *ovals = NULL;
Ben Englandff0dbe12015-02-27 08:14:49 -0700896 double mean, dev, iops;
Shaohua Licc372b12012-09-17 09:12:18 +0200897 unsigned int len, minv, maxv;
898 int i;
899 const char *ddirname[] = {"read", "write", "trim"};
Elliott Hugheseda3a602017-05-19 18:53:02 -0700900 struct json_object *dir_object, *tmp_object, *percentile_object, *clat_bins_object;
Shaohua Licc372b12012-09-17 09:12:18 +0200901 char buf[120];
902 double p_of_agg = 100.0;
903
904 assert(ddir_rw(ddir));
905
Jens Axboe771e58b2013-01-30 12:56:23 +0100906 if (ts->unified_rw_rep && ddir != DDIR_READ)
907 return;
908
Shaohua Licc372b12012-09-17 09:12:18 +0200909 dir_object = json_create_object();
Jens Axboe771e58b2013-01-30 12:56:23 +0100910 json_object_add_value_object(parent,
911 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
Shaohua Licc372b12012-09-17 09:12:18 +0200912
Ben Englandff0dbe12015-02-27 08:14:49 -0700913 bw = 0;
914 iops = 0.0;
Shaohua Licc372b12012-09-17 09:12:18 +0200915 if (ts->runtime[ddir]) {
916 uint64_t runt = ts->runtime[ddir];
917
Elliott Hugheseda3a602017-05-19 18:53:02 -0700918 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; /* KiB/s */
Ben Englandff0dbe12015-02-27 08:14:49 -0700919 iops = (1000.0 * (uint64_t) ts->total_io_u[ddir]) / runt;
Shaohua Licc372b12012-09-17 09:12:18 +0200920 }
921
922 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir] >> 10);
923 json_object_add_value_int(dir_object, "bw", bw);
Ben Englandff0dbe12015-02-27 08:14:49 -0700924 json_object_add_value_float(dir_object, "iops", iops);
Shaohua Licc372b12012-09-17 09:12:18 +0200925 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
Jens Axboee93fd532014-10-09 20:05:55 -0600926 json_object_add_value_int(dir_object, "total_ios", ts->total_io_u[ddir]);
927 json_object_add_value_int(dir_object, "short_ios", ts->short_io_u[ddir]);
928 json_object_add_value_int(dir_object, "drop_ios", ts->drop_io_u[ddir]);
Shaohua Licc372b12012-09-17 09:12:18 +0200929
930 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
931 min = max = 0;
932 mean = dev = 0.0;
933 }
934 tmp_object = json_create_object();
935 json_object_add_value_object(dir_object, "slat", tmp_object);
936 json_object_add_value_int(tmp_object, "min", min);
937 json_object_add_value_int(tmp_object, "max", max);
938 json_object_add_value_float(tmp_object, "mean", mean);
939 json_object_add_value_float(tmp_object, "stddev", dev);
940
941 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
942 min = max = 0;
943 mean = dev = 0.0;
944 }
945 tmp_object = json_create_object();
946 json_object_add_value_object(dir_object, "clat", tmp_object);
947 json_object_add_value_int(tmp_object, "min", min);
948 json_object_add_value_int(tmp_object, "max", max);
949 json_object_add_value_float(tmp_object, "mean", mean);
950 json_object_add_value_float(tmp_object, "stddev", dev);
951
952 if (ts->clat_percentiles) {
953 len = calc_clat_percentiles(ts->io_u_plat[ddir],
954 ts->clat_stat[ddir].samples,
955 ts->percentile_list, &ovals, &maxv,
956 &minv);
957 } else
958 len = 0;
959
960 percentile_object = json_create_object();
961 json_object_add_value_object(tmp_object, "percentile", percentile_object);
962 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
963 if (i >= len) {
964 json_object_add_value_int(percentile_object, "0.00", 0);
965 continue;
966 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100967 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
Shaohua Licc372b12012-09-17 09:12:18 +0200968 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
969 }
970
Elliott Hugheseda3a602017-05-19 18:53:02 -0700971 if (output_format & FIO_OUTPUT_JSON_PLUS) {
972 clat_bins_object = json_create_object();
973 json_object_add_value_object(tmp_object, "bins", clat_bins_object);
974 for(i = 0; i < FIO_IO_U_PLAT_NR; i++) {
975 if (ts->io_u_plat[ddir][i]) {
976 snprintf(buf, sizeof(buf), "%llu", plat_idx_to_val(i));
977 json_object_add_value_int(clat_bins_object, (const char *)buf, ts->io_u_plat[ddir][i]);
978 }
979 }
980 }
981
Shaohua Licc372b12012-09-17 09:12:18 +0200982 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
983 min = max = 0;
984 mean = dev = 0.0;
985 }
986 tmp_object = json_create_object();
987 json_object_add_value_object(dir_object, "lat", tmp_object);
988 json_object_add_value_int(tmp_object, "min", min);
989 json_object_add_value_int(tmp_object, "max", max);
990 json_object_add_value_float(tmp_object, "mean", mean);
991 json_object_add_value_float(tmp_object, "stddev", dev);
992 if (ovals)
993 free(ovals);
994
Shaohua Lib9e1b492013-04-03 08:40:17 +0200995 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Shaohua Licc372b12012-09-17 09:12:18 +0200996 if (rs->agg[ddir]) {
997 p_of_agg = mean * 100 / (double) rs->agg[ddir];
998 if (p_of_agg > 100.0)
999 p_of_agg = 100.0;
1000 }
1001 } else {
1002 min = max = 0;
1003 p_of_agg = mean = dev = 0.0;
1004 }
1005 json_object_add_value_int(dir_object, "bw_min", min);
1006 json_object_add_value_int(dir_object, "bw_max", max);
Erwan Velua806bf22014-04-02 10:36:40 +02001007 json_object_add_value_float(dir_object, "bw_agg", p_of_agg);
Shaohua Licc372b12012-09-17 09:12:18 +02001008 json_object_add_value_float(dir_object, "bw_mean", mean);
1009 json_object_add_value_float(dir_object, "bw_dev", dev);
1010}
1011
Jens Axboe4d658652011-10-17 15:05:47 +02001012static void show_thread_status_terse_v2(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001013 struct group_run_stats *rs,
1014 struct buf_output *out)
Jens Axboe4d658652011-10-17 15:05:47 +02001015{
1016 double io_u_dist[FIO_IO_U_MAP_NR];
1017 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1018 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1019 double usr_cpu, sys_cpu;
1020 int i;
1021
1022 /* General Info */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001023 log_buf(out, "2;%s;%d;%d", ts->name, ts->groupid, ts->error);
Jens Axboe4d658652011-10-17 15:05:47 +02001024 /* Log Read Status */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001025 show_ddir_status_terse(ts, rs, DDIR_READ, out);
Jens Axboe4d658652011-10-17 15:05:47 +02001026 /* Log Write Status */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001027 show_ddir_status_terse(ts, rs, DDIR_WRITE, out);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001028 /* Log Trim Status */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001029 show_ddir_status_terse(ts, rs, DDIR_TRIM, out);
Jens Axboe4d658652011-10-17 15:05:47 +02001030
1031 /* CPU Usage */
1032 if (ts->total_run_time) {
1033 double runt = (double) ts->total_run_time;
1034
1035 usr_cpu = (double) ts->usr_time * 100 / runt;
1036 sys_cpu = (double) ts->sys_time * 100 / runt;
1037 } else {
1038 usr_cpu = 0;
1039 sys_cpu = 0;
1040 }
1041
Elliott Hugheseda3a602017-05-19 18:53:02 -07001042 log_buf(out, ";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001043 (unsigned long long) ts->ctx,
1044 (unsigned long long) ts->majf,
1045 (unsigned long long) ts->minf);
Jens Axboe4d658652011-10-17 15:05:47 +02001046
1047 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboed79db122012-09-24 08:51:24 +02001048 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
Jens Axboe4d658652011-10-17 15:05:47 +02001049 stat_calc_lat_u(ts, io_u_lat_u);
1050 stat_calc_lat_m(ts, io_u_lat_m);
1051
1052 /* Only show fixed 7 I/O depth levels*/
Elliott Hugheseda3a602017-05-19 18:53:02 -07001053 log_buf(out, ";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
Jens Axboe4d658652011-10-17 15:05:47 +02001054 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
1055 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
1056
1057 /* Microsecond latency */
1058 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001059 log_buf(out, ";%3.2f%%", io_u_lat_u[i]);
Jens Axboe4d658652011-10-17 15:05:47 +02001060 /* Millisecond latency */
1061 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001062 log_buf(out, ";%3.2f%%", io_u_lat_m[i]);
Jens Axboe4d658652011-10-17 15:05:47 +02001063 /* Additional output if continue_on_error set - default off*/
1064 if (ts->continue_on_error)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001065 log_buf(out, ";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
1066 log_buf(out, "\n");
Jens Axboe4d658652011-10-17 15:05:47 +02001067
1068 /* Additional output if description is set */
Jens Axboe0a3c52f2014-04-14 08:57:35 -06001069 if (strlen(ts->description))
Elliott Hugheseda3a602017-05-19 18:53:02 -07001070 log_buf(out, ";%s", ts->description);
Jens Axboe4d658652011-10-17 15:05:47 +02001071
Elliott Hugheseda3a602017-05-19 18:53:02 -07001072 log_buf(out, "\n");
Jens Axboe4d658652011-10-17 15:05:47 +02001073}
1074
Jens Axboe3449ab82012-09-14 23:35:08 +02001075static void show_thread_status_terse_v3_v4(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001076 struct group_run_stats *rs, int ver,
1077 struct buf_output *out)
Jens Axboec6ae0a52006-06-12 11:04:44 +02001078{
Jens Axboe22708902007-03-06 17:05:32 +01001079 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +02001080 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1081 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +02001082 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +02001083 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +02001084
David Nellans562c2d22010-09-23 08:38:17 +02001085 /* General Info */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001086 log_buf(out, "%d;%s;%s;%d;%d", ver, fio_version_string,
Jens Axboe5e726d02011-10-14 08:08:10 +02001087 ts->name, ts->groupid, ts->error);
David Nellans562c2d22010-09-23 08:38:17 +02001088 /* Log Read Status */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001089 show_ddir_status_terse(ts, rs, DDIR_READ, out);
David Nellans562c2d22010-09-23 08:38:17 +02001090 /* Log Write Status */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001091 show_ddir_status_terse(ts, rs, DDIR_WRITE, out);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001092 /* Log Trim Status */
Jens Axboe3449ab82012-09-14 23:35:08 +02001093 if (ver == 4)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001094 show_ddir_status_terse(ts, rs, DDIR_TRIM, out);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001095
David Nellans562c2d22010-09-23 08:38:17 +02001096 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +01001097 if (ts->total_run_time) {
1098 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +02001099
Jens Axboe756867b2007-03-06 15:19:24 +01001100 usr_cpu = (double) ts->usr_time * 100 / runt;
1101 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +02001102 } else {
1103 usr_cpu = 0;
1104 sys_cpu = 0;
1105 }
1106
Elliott Hugheseda3a602017-05-19 18:53:02 -07001107 log_buf(out, ";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001108 (unsigned long long) ts->ctx,
1109 (unsigned long long) ts->majf,
1110 (unsigned long long) ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +01001111
David Nellans562c2d22010-09-23 08:38:17 +02001112 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboed79db122012-09-24 08:51:24 +02001113 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +02001114 stat_calc_lat_u(ts, io_u_lat_u);
1115 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +01001116
David Nellans562c2d22010-09-23 08:38:17 +02001117 /* Only show fixed 7 I/O depth levels*/
Elliott Hugheseda3a602017-05-19 18:53:02 -07001118 log_buf(out, ";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001119 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
1120 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +01001121
David Nellans562c2d22010-09-23 08:38:17 +02001122 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +02001123 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001124 log_buf(out, ";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +02001125 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +02001126 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001127 log_buf(out, ";%3.2f%%", io_u_lat_m[i]);
Jens Axboef2f788d2011-10-13 14:03:52 +02001128
1129 /* disk util stats, if any */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001130 show_disk_util(1, NULL, out);
Jens Axboef2f788d2011-10-13 14:03:52 +02001131
David Nellans562c2d22010-09-23 08:38:17 +02001132 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001133 if (ts->continue_on_error)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001134 log_buf(out, ";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
Jens Axboe22708902007-03-06 17:05:32 +01001135
David Nellans562c2d22010-09-23 08:38:17 +02001136 /* Additional output if description is set */
Jens Axboe4b0f2252011-10-13 15:03:25 +02001137 if (strlen(ts->description))
Elliott Hugheseda3a602017-05-19 18:53:02 -07001138 log_buf(out, ";%s", ts->description);
Jens Axboe946e4272012-03-23 19:22:21 +01001139
Elliott Hugheseda3a602017-05-19 18:53:02 -07001140 log_buf(out, "\n");
1141}
1142
1143static void json_add_job_opts(struct json_object *root, const char *name,
1144 struct flist_head *opt_list, bool num_jobs)
1145{
1146 struct json_object *dir_object;
1147 struct flist_head *entry;
1148 struct print_option *p;
1149
1150 if (flist_empty(opt_list))
1151 return;
1152
1153 dir_object = json_create_object();
1154 json_object_add_value_object(root, name, dir_object);
1155
1156 flist_for_each(entry, opt_list) {
1157 const char *pos = "";
1158
1159 p = flist_entry(entry, struct print_option, list);
1160 if (!num_jobs && !strcmp(p->name, "numjobs"))
1161 continue;
1162 if (p->value)
1163 pos = p->value;
1164 json_object_add_value_string(dir_object, p->name, pos);
1165 }
Jens Axboe756867b2007-03-06 15:19:24 +01001166}
1167
Shaohua Licc372b12012-09-17 09:12:18 +02001168static struct json_object *show_thread_status_json(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001169 struct group_run_stats *rs,
1170 struct flist_head *opt_list)
Shaohua Licc372b12012-09-17 09:12:18 +02001171{
1172 struct json_object *root, *tmp;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001173 struct jobs_eta *je;
Shaohua Licc372b12012-09-17 09:12:18 +02001174 double io_u_dist[FIO_IO_U_MAP_NR];
1175 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1176 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1177 double usr_cpu, sys_cpu;
1178 int i;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001179 size_t size;
Shaohua Licc372b12012-09-17 09:12:18 +02001180
1181 root = json_create_object();
1182 json_object_add_value_string(root, "jobname", ts->name);
1183 json_object_add_value_int(root, "groupid", ts->groupid);
1184 json_object_add_value_int(root, "error", ts->error);
1185
Elliott Hugheseda3a602017-05-19 18:53:02 -07001186 /* ETA Info */
1187 je = get_jobs_eta(true, &size);
1188 if (je) {
1189 json_object_add_value_int(root, "eta", je->eta_sec);
1190 json_object_add_value_int(root, "elapsed", je->elapsed_sec);
1191 }
1192
1193 if (opt_list)
1194 json_add_job_opts(root, "job options", opt_list, true);
1195
Shaohua Licc372b12012-09-17 09:12:18 +02001196 add_ddir_status_json(ts, rs, DDIR_READ, root);
1197 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
Jens Axboef3afa572012-09-17 13:34:16 +02001198 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
Shaohua Licc372b12012-09-17 09:12:18 +02001199
1200 /* CPU Usage */
1201 if (ts->total_run_time) {
1202 double runt = (double) ts->total_run_time;
1203
1204 usr_cpu = (double) ts->usr_time * 100 / runt;
1205 sys_cpu = (double) ts->sys_time * 100 / runt;
1206 } else {
1207 usr_cpu = 0;
1208 sys_cpu = 0;
1209 }
1210 json_object_add_value_float(root, "usr_cpu", usr_cpu);
1211 json_object_add_value_float(root, "sys_cpu", sys_cpu);
1212 json_object_add_value_int(root, "ctx", ts->ctx);
1213 json_object_add_value_int(root, "majf", ts->majf);
1214 json_object_add_value_int(root, "minf", ts->minf);
1215
1216
1217 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboed79db122012-09-24 08:51:24 +02001218 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
Shaohua Licc372b12012-09-17 09:12:18 +02001219 stat_calc_lat_u(ts, io_u_lat_u);
1220 stat_calc_lat_m(ts, io_u_lat_m);
1221
1222 tmp = json_create_object();
1223 json_object_add_value_object(root, "iodepth_level", tmp);
1224 /* Only show fixed 7 I/O depth levels*/
1225 for (i = 0; i < 7; i++) {
1226 char name[20];
1227 if (i < 6)
Ken Raeburn98ffb8f2013-01-30 22:31:09 +01001228 snprintf(name, 20, "%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +02001229 else
Ken Raeburn98ffb8f2013-01-30 22:31:09 +01001230 snprintf(name, 20, ">=%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +02001231 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1232 }
1233
1234 tmp = json_create_object();
1235 json_object_add_value_object(root, "latency_us", tmp);
1236 /* Microsecond latency */
1237 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1238 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1239 "250", "500", "750", "1000", };
1240 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
1241 }
1242 /* Millisecond latency */
1243 tmp = json_create_object();
1244 json_object_add_value_object(root, "latency_ms", tmp);
1245 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
1246 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1247 "250", "500", "750", "1000", "2000",
1248 ">=2000", };
1249 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
1250 }
1251
1252 /* Additional output if continue_on_error set - default off*/
1253 if (ts->continue_on_error) {
1254 json_object_add_value_int(root, "total_err", ts->total_err_count);
Castor Fu952b05e2013-10-31 11:00:34 -06001255 json_object_add_value_int(root, "first_error", ts->first_error);
Shaohua Licc372b12012-09-17 09:12:18 +02001256 }
1257
Jens Axboe3e260a42013-12-09 12:38:53 -07001258 if (ts->latency_depth) {
1259 json_object_add_value_int(root, "latency_depth", ts->latency_depth);
1260 json_object_add_value_int(root, "latency_target", ts->latency_target);
1261 json_object_add_value_float(root, "latency_percentile", ts->latency_percentile.u.f);
1262 json_object_add_value_int(root, "latency_window", ts->latency_window);
1263 }
1264
Shaohua Licc372b12012-09-17 09:12:18 +02001265 /* Additional output if description is set */
1266 if (strlen(ts->description))
1267 json_object_add_value_string(root, "desc", ts->description);
1268
Elliott Hugheseda3a602017-05-19 18:53:02 -07001269 if (ts->nr_block_infos) {
1270 /* Block error histogram and types */
1271 int len;
1272 unsigned int *percentiles = NULL;
1273 unsigned int block_state_counts[BLOCK_STATE_COUNT];
1274
1275 len = calc_block_percentiles(ts->nr_block_infos, ts->block_infos,
1276 ts->percentile_list,
1277 &percentiles, block_state_counts);
1278
1279 if (len) {
1280 struct json_object *block, *percentile_object, *states;
1281 int state;
1282 block = json_create_object();
1283 json_object_add_value_object(root, "block", block);
1284
1285 percentile_object = json_create_object();
1286 json_object_add_value_object(block, "percentiles",
1287 percentile_object);
1288 for (i = 0; i < len; i++) {
1289 char buf[20];
1290 snprintf(buf, sizeof(buf), "%f",
1291 ts->percentile_list[i].u.f);
1292 json_object_add_value_int(percentile_object,
1293 (const char *)buf,
1294 percentiles[i]);
1295 }
1296
1297 states = json_create_object();
1298 json_object_add_value_object(block, "states", states);
1299 for (state = 0; state < BLOCK_STATE_COUNT; state++) {
1300 json_object_add_value_int(states,
1301 block_state_names[state],
1302 block_state_counts[state]);
1303 }
1304 free(percentiles);
1305 }
1306 }
1307
1308 if (ts->ss_dur) {
1309 struct json_object *data;
1310 struct json_array *iops, *bw;
1311 int i, j, k;
1312 char ss_buf[64];
1313
1314 snprintf(ss_buf, sizeof(ss_buf), "%s%s:%f%s",
1315 ts->ss_state & __FIO_SS_IOPS ? "iops" : "bw",
1316 ts->ss_state & __FIO_SS_SLOPE ? "_slope" : "",
1317 (float) ts->ss_limit.u.f,
1318 ts->ss_state & __FIO_SS_PCT ? "%" : "");
1319
1320 tmp = json_create_object();
1321 json_object_add_value_object(root, "steadystate", tmp);
1322 json_object_add_value_string(tmp, "ss", ss_buf);
1323 json_object_add_value_int(tmp, "duration", (int)ts->ss_dur);
1324 json_object_add_value_int(tmp, "attained", (ts->ss_state & __FIO_SS_ATTAINED) > 0);
1325
1326 snprintf(ss_buf, sizeof(ss_buf), "%f%s", (float) ts->ss_criterion.u.f,
1327 ts->ss_state & __FIO_SS_PCT ? "%" : "");
1328 json_object_add_value_string(tmp, "criterion", ss_buf);
1329 json_object_add_value_float(tmp, "max_deviation", ts->ss_deviation.u.f);
1330 json_object_add_value_float(tmp, "slope", ts->ss_slope.u.f);
1331
1332 data = json_create_object();
1333 json_object_add_value_object(tmp, "data", data);
1334 bw = json_create_array();
1335 iops = json_create_array();
1336
1337 /*
1338 ** if ss was attained or the buffer is not full,
1339 ** ss->head points to the first element in the list.
1340 ** otherwise it actually points to the second element
1341 ** in the list
1342 */
1343 if ((ts->ss_state & __FIO_SS_ATTAINED) || !(ts->ss_state & __FIO_SS_BUFFER_FULL))
1344 j = ts->ss_head;
1345 else
1346 j = ts->ss_head == 0 ? ts->ss_dur - 1 : ts->ss_head - 1;
1347 for (i = 0; i < ts->ss_dur; i++) {
1348 k = (j + i) % ts->ss_dur;
1349 json_array_add_value_int(bw, ts->ss_bw_data[k]);
1350 json_array_add_value_int(iops, ts->ss_iops_data[k]);
1351 }
1352 json_object_add_value_int(data, "bw_mean", steadystate_bw_mean(ts));
1353 json_object_add_value_int(data, "iops_mean", steadystate_iops_mean(ts));
1354 json_object_add_value_array(data, "iops", iops);
1355 json_object_add_value_array(data, "bw", bw);
1356 }
1357
Shaohua Licc372b12012-09-17 09:12:18 +02001358 return root;
1359}
1360
Jens Axboe4d658652011-10-17 15:05:47 +02001361static void show_thread_status_terse(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001362 struct group_run_stats *rs,
1363 struct buf_output *out)
Jens Axboe4d658652011-10-17 15:05:47 +02001364{
1365 if (terse_version == 2)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001366 show_thread_status_terse_v2(ts, rs, out);
Jens Axboe3449ab82012-09-14 23:35:08 +02001367 else if (terse_version == 3 || terse_version == 4)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001368 show_thread_status_terse_v3_v4(ts, rs, terse_version, out);
Jens Axboe4d658652011-10-17 15:05:47 +02001369 else
1370 log_err("fio: bad terse version!? %d\n", terse_version);
1371}
1372
Castor Fu952b05e2013-10-31 11:00:34 -06001373struct json_object *show_thread_status(struct thread_stat *ts,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001374 struct group_run_stats *rs,
1375 struct flist_head *opt_list,
1376 struct buf_output *out)
Castor Fu952b05e2013-10-31 11:00:34 -06001377{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001378 struct json_object *ret = NULL;
1379
1380 if (output_format & FIO_OUTPUT_TERSE)
1381 show_thread_status_terse(ts, rs, out);
1382 if (output_format & FIO_OUTPUT_JSON)
1383 ret = show_thread_status_json(ts, rs, opt_list);
1384 if (output_format & FIO_OUTPUT_NORMAL)
1385 show_thread_status_normal(ts, rs, out);
1386
1387 return ret;
Castor Fu952b05e2013-10-31 11:00:34 -06001388}
1389
Elliott Hugheseda3a602017-05-19 18:53:02 -07001390static void sum_stat(struct io_stat *dst, struct io_stat *src, bool first)
Jens Axboe756867b2007-03-06 15:19:24 +01001391{
1392 double mean, S;
1393
Zheng Liue09231c2011-09-16 08:20:12 +02001394 if (src->samples == 0)
1395 return;
1396
Jens Axboe756867b2007-03-06 15:19:24 +01001397 dst->min_val = min(dst->min_val, src->min_val);
1398 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +01001399
1400 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001401 * Compute new mean and S after the merge
1402 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1403 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +01001404 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001405 if (first) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001406 mean = src->mean.u.f;
1407 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +01001408 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001409 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001410
Jens Axboe802ad4a2011-10-05 09:51:58 +02001411 mean = ((src->mean.u.f * src->samples) +
1412 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001413 (dst->samples + src->samples);
1414
Jens Axboe802ad4a2011-10-05 09:51:58 +02001415 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001416 (dst->samples * src->samples) /
1417 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +01001418 }
1419
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001420 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +02001421 dst->mean.u.f = mean;
1422 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +01001423}
1424
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001425void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1426{
1427 int i;
1428
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001429 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001430 if (dst->max_run[i] < src->max_run[i])
1431 dst->max_run[i] = src->max_run[i];
1432 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1433 dst->min_run[i] = src->min_run[i];
1434 if (dst->max_bw[i] < src->max_bw[i])
1435 dst->max_bw[i] = src->max_bw[i];
1436 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1437 dst->min_bw[i] = src->min_bw[i];
1438
Elliott Hugheseda3a602017-05-19 18:53:02 -07001439 dst->iobytes[i] += src->iobytes[i];
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001440 dst->agg[i] += src->agg[i];
1441 }
1442
Jens Axboec2d66682014-10-13 10:07:45 -06001443 if (!dst->kb_base)
1444 dst->kb_base = src->kb_base;
1445 if (!dst->unit_base)
1446 dst->unit_base = src->unit_base;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001447}
1448
Elliott Hugheseda3a602017-05-19 18:53:02 -07001449void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src,
1450 bool first)
Jens Axboe5b9babb2011-10-10 12:14:30 +02001451{
1452 int l, k;
1453
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001454 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001455 if (!dst->unified_rw_rep) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001456 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], first);
1457 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], first);
1458 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], first);
1459 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], first);
Jens Axboe5b9babb2011-10-10 12:14:30 +02001460
Jens Axboe771e58b2013-01-30 12:56:23 +01001461 dst->io_bytes[l] += src->io_bytes[l];
Jens Axboe5b9babb2011-10-10 12:14:30 +02001462
Jens Axboe771e58b2013-01-30 12:56:23 +01001463 if (dst->runtime[l] < src->runtime[l])
1464 dst->runtime[l] = src->runtime[l];
1465 } else {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001466 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], first);
1467 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], first);
1468 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], first);
1469 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], first);
Jens Axboe771e58b2013-01-30 12:56:23 +01001470
1471 dst->io_bytes[0] += src->io_bytes[l];
1472
1473 if (dst->runtime[0] < src->runtime[l])
1474 dst->runtime[0] = src->runtime[l];
Elliott Hugheseda3a602017-05-19 18:53:02 -07001475
1476 /*
1477 * We're summing to the same destination, so override
1478 * 'first' after the first iteration of the loop
1479 */
1480 first = false;
Jens Axboe771e58b2013-01-30 12:56:23 +01001481 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001482 }
1483
1484 dst->usr_time += src->usr_time;
1485 dst->sys_time += src->sys_time;
1486 dst->ctx += src->ctx;
1487 dst->majf += src->majf;
1488 dst->minf += src->minf;
1489
1490 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1491 dst->io_u_map[k] += src->io_u_map[k];
1492 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1493 dst->io_u_submit[k] += src->io_u_submit[k];
1494 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1495 dst->io_u_complete[k] += src->io_u_complete[k];
1496 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1497 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1498 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1499 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1500
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001501 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001502 if (!dst->unified_rw_rep) {
1503 dst->total_io_u[k] += src->total_io_u[k];
1504 dst->short_io_u[k] += src->short_io_u[k];
Jens Axboe67e149c2014-10-09 13:27:44 -06001505 dst->drop_io_u[k] += src->drop_io_u[k];
Jens Axboe771e58b2013-01-30 12:56:23 +01001506 } else {
1507 dst->total_io_u[0] += src->total_io_u[k];
1508 dst->short_io_u[0] += src->short_io_u[k];
Jens Axboe67e149c2014-10-09 13:27:44 -06001509 dst->drop_io_u[0] += src->drop_io_u[k];
Jens Axboe771e58b2013-01-30 12:56:23 +01001510 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001511 }
1512
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001513 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe5b9babb2011-10-10 12:14:30 +02001514 int m;
Jens Axboe771e58b2013-01-30 12:56:23 +01001515
1516 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1517 if (!dst->unified_rw_rep)
1518 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1519 else
1520 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1521 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001522 }
1523
1524 dst->total_run_time += src->total_run_time;
1525 dst->total_submit += src->total_submit;
1526 dst->total_complete += src->total_complete;
1527}
1528
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001529void init_group_run_stat(struct group_run_stats *gs)
1530{
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001531 int i;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001532 memset(gs, 0, sizeof(*gs));
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001533
1534 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1535 gs->min_bw[i] = gs->min_run[i] = ~0UL;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001536}
1537
1538void init_thread_stat(struct thread_stat *ts)
1539{
1540 int j;
1541
1542 memset(ts, 0, sizeof(*ts));
1543
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001544 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001545 ts->lat_stat[j].min_val = -1UL;
1546 ts->clat_stat[j].min_val = -1UL;
1547 ts->slat_stat[j].min_val = -1UL;
1548 ts->bw_stat[j].min_val = -1UL;
1549 }
1550 ts->groupid = -1;
1551}
1552
Jens Axboe2e627242014-07-25 09:51:56 +02001553void __show_run_stats(void)
Jens Axboe3c39a372006-06-06 20:56:12 +02001554{
1555 struct group_run_stats *runstats, *rs;
1556 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +01001557 struct thread_stat *threadstats, *ts;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001558 int i, j, k, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001559 int kb_base_warned = 0;
Steven Noonanad705bc2013-04-08 15:05:25 -07001560 int unit_base_warned = 0;
Shaohua Licc372b12012-09-17 09:12:18 +02001561 struct json_object *root = NULL;
1562 struct json_array *array = NULL;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001563 struct buf_output output[FIO_OUTPUT_NR];
1564 struct flist_head **opt_lists;
1565
Jens Axboe3c39a372006-06-06 20:56:12 +02001566 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1567
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001568 for (i = 0; i < groupid + 1; i++)
1569 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +02001570
Jens Axboe756867b2007-03-06 15:19:24 +01001571 /*
1572 * find out how many threads stats we need. if group reporting isn't
1573 * enabled, it's one-per-td.
1574 */
1575 nr_ts = 0;
1576 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +02001577 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001578 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +01001579 nr_ts++;
1580 continue;
1581 }
1582 if (last_ts == td->groupid)
1583 continue;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001584 if (!td->o.stats)
1585 continue;
Jens Axboe756867b2007-03-06 15:19:24 +01001586
1587 last_ts = td->groupid;
1588 nr_ts++;
1589 }
1590
1591 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
Elliott Hugheseda3a602017-05-19 18:53:02 -07001592 opt_lists = malloc(nr_ts * sizeof(struct flist_head *));
Jens Axboe756867b2007-03-06 15:19:24 +01001593
Elliott Hugheseda3a602017-05-19 18:53:02 -07001594 for (i = 0; i < nr_ts; i++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001595 init_thread_stat(&threadstats[i]);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001596 opt_lists[i] = NULL;
1597 }
Jens Axboe756867b2007-03-06 15:19:24 +01001598
1599 j = 0;
1600 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +01001601 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +01001602 for_each_td(td, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001603 if (!td->o.stats)
1604 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001605 if (idx && (!td->o.group_reporting ||
1606 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +01001607 idx = 0;
1608 j++;
1609 }
1610
1611 last_ts = td->groupid;
1612
Jens Axboe756867b2007-03-06 15:19:24 +01001613 ts = &threadstats[j];
1614
Yu-ju Hong83349192011-08-13 00:53:44 +02001615 ts->clat_percentiles = td->o.clat_percentiles;
Vincent Kang Fu435d1952013-02-06 08:43:40 +01001616 ts->percentile_precision = td->o.percentile_precision;
Vincent Kang Fufd112d32013-02-02 09:28:55 +01001617 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Elliott Hugheseda3a602017-05-19 18:53:02 -07001618 opt_lists[j] = &td->opt_list;
Yu-ju Hong83349192011-08-13 00:53:44 +02001619
Jens Axboe197574e2007-03-08 15:35:11 +01001620 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +01001621 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +01001622
Jens Axboe7abd0e32007-03-12 15:24:43 +01001623 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001624 /*
1625 * These are per-group shared already
1626 */
Jens Axboe4e59d0f2014-03-14 08:41:39 -06001627 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE - 1);
Jens Axboea64e88d2011-10-03 14:20:01 +02001628 if (td->o.description)
1629 strncpy(ts->description, td->o.description,
Jens Axboe4e59d0f2014-03-14 08:41:39 -06001630 FIO_JOBDESC_SIZE - 1);
Jens Axboea64e88d2011-10-03 14:20:01 +02001631 else
Jens Axboe4e59d0f2014-03-14 08:41:39 -06001632 memset(ts->description, 0, FIO_JOBDESC_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +02001633
Jens Axboe2f122b12012-03-15 13:10:19 +01001634 /*
1635 * If multiple entries in this group, this is
1636 * the first member.
1637 */
1638 ts->thread_number = td->thread_number;
Jens Axboe756867b2007-03-06 15:19:24 +01001639 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001640
1641 /*
1642 * first pid in group, not very useful...
1643 */
Jens Axboe756867b2007-03-06 15:19:24 +01001644 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001645
1646 ts->kb_base = td->o.kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -07001647 ts->unit_base = td->o.unit_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001648 ts->unified_rw_rep = td->o.unified_rw_rep;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001649 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1650 log_info("fio: kb_base differs for jobs in group, using"
1651 " %u as the base\n", ts->kb_base);
1652 kb_base_warned = 1;
Steven Noonanad705bc2013-04-08 15:05:25 -07001653 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1654 log_info("fio: unit_base differs for jobs in group, using"
1655 " %u as the base\n", ts->unit_base);
1656 unit_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001657 }
1658
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001659 ts->continue_on_error = td->o.continue_on_error;
1660 ts->total_err_count += td->total_err_count;
1661 ts->first_error = td->first_error;
1662 if (!ts->error) {
1663 if (!td->error && td->o.continue_on_error &&
1664 td->first_error) {
1665 ts->error = td->first_error;
Jens Axboe3660cea2014-04-15 08:18:08 -06001666 ts->verror[sizeof(ts->verror) - 1] = '\0';
1667 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001668 } else if (td->error) {
1669 ts->error = td->error;
Jens Axboe3660cea2014-04-15 08:18:08 -06001670 ts->verror[sizeof(ts->verror) - 1] = '\0';
1671 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001672 }
Jens Axboe756867b2007-03-06 15:19:24 +01001673 }
1674
Jens Axboe3e260a42013-12-09 12:38:53 -07001675 ts->latency_depth = td->latency_qd;
1676 ts->latency_target = td->o.latency_target;
1677 ts->latency_percentile = td->o.latency_percentile;
1678 ts->latency_window = td->o.latency_window;
1679
Elliott Hugheseda3a602017-05-19 18:53:02 -07001680 ts->nr_block_infos = td->ts.nr_block_infos;
1681 for (k = 0; k < ts->nr_block_infos; k++)
1682 ts->block_infos[k] = td->ts.block_infos[k];
1683
1684 sum_thread_stats(ts, &td->ts, idx == 1);
1685
1686 if (td->o.ss_dur) {
1687 ts->ss_state = td->ss.state;
1688 ts->ss_dur = td->ss.dur;
1689 ts->ss_head = td->ss.head;
1690 ts->ss_bw_data = td->ss.bw_data;
1691 ts->ss_iops_data = td->ss.iops_data;
1692 ts->ss_limit.u.f = td->ss.limit;
1693 ts->ss_slope.u.f = td->ss.slope;
1694 ts->ss_deviation.u.f = td->ss.deviation;
1695 ts->ss_criterion.u.f = td->ss.criterion;
1696 }
1697 else
1698 ts->ss_dur = ts->ss_state = 0;
Jens Axboe756867b2007-03-06 15:19:24 +01001699 }
1700
1701 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001702 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001703
Jens Axboe756867b2007-03-06 15:19:24 +01001704 ts = &threadstats[i];
Elliott Hugheseda3a602017-05-19 18:53:02 -07001705 if (ts->groupid == -1)
1706 continue;
Jens Axboe756867b2007-03-06 15:19:24 +01001707 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001708 rs->kb_base = ts->kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -07001709 rs->unit_base = ts->unit_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001710 rs->unified_rw_rep += ts->unified_rw_rep;
Jens Axboe3c39a372006-06-06 20:56:12 +02001711
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001712 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001713 if (!ts->runtime[j])
1714 continue;
1715 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1716 rs->min_run[j] = ts->runtime[j];
1717 if (ts->runtime[j] > rs->max_run[j])
1718 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +02001719
Jens Axboe94370ac2007-03-08 15:28:10 +01001720 bw = 0;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001721 if (ts->runtime[j])
1722 bw = ts->io_bytes[j] * 1000 / ts->runtime[j];
Jens Axboe94370ac2007-03-08 15:28:10 +01001723 if (bw < rs->min_bw[j])
1724 rs->min_bw[j] = bw;
1725 if (bw > rs->max_bw[j])
1726 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001727
Elliott Hugheseda3a602017-05-19 18:53:02 -07001728 rs->iobytes[j] += ts->io_bytes[j];
Jens Axboe94370ac2007-03-08 15:28:10 +01001729 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001730 }
1731
1732 for (i = 0; i < groupid + 1; i++) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001733 int ddir;
1734
Jens Axboe3c39a372006-06-06 20:56:12 +02001735 rs = &runstats[i];
1736
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001737 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1738 if (rs->max_run[ddir])
Elliott Hugheseda3a602017-05-19 18:53:02 -07001739 rs->agg[ddir] = (rs->iobytes[ddir] * 1000) /
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001740 rs->max_run[ddir];
1741 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001742 }
1743
Elliott Hugheseda3a602017-05-19 18:53:02 -07001744 for (i = 0; i < FIO_OUTPUT_NR; i++)
1745 buf_output_init(&output[i]);
1746
Jens Axboe3c39a372006-06-06 20:56:12 +02001747 /*
1748 * don't overwrite last signal output
1749 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001750 if (output_format & FIO_OUTPUT_NORMAL)
1751 log_buf(&output[__FIO_OUTPUT_NORMAL], "\n");
1752 if (output_format & FIO_OUTPUT_JSON) {
1753 struct thread_data *global;
Jens Axboeffb17c02015-01-06 12:03:09 -07001754 char time_buf[32];
Elliott Hugheseda3a602017-05-19 18:53:02 -07001755 struct timeval now;
1756 unsigned long long ms_since_epoch;
Steve ODriscoll0a24a732015-01-06 12:00:27 -07001757
Elliott Hugheseda3a602017-05-19 18:53:02 -07001758 gettimeofday(&now, NULL);
1759 ms_since_epoch = (unsigned long long)(now.tv_sec) * 1000 +
1760 (unsigned long long)(now.tv_usec) / 1000;
1761
1762 os_ctime_r((const time_t *) &now.tv_sec, time_buf,
Steve ODriscoll0a24a732015-01-06 12:00:27 -07001763 sizeof(time_buf));
Elliott Hugheseda3a602017-05-19 18:53:02 -07001764 if (time_buf[strlen(time_buf) - 1] == '\n')
1765 time_buf[strlen(time_buf) - 1] = '\0';
Steve ODriscoll0a24a732015-01-06 12:00:27 -07001766
Shaohua Licc372b12012-09-17 09:12:18 +02001767 root = json_create_object();
1768 json_object_add_value_string(root, "fio version", fio_version_string);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001769 json_object_add_value_int(root, "timestamp", now.tv_sec);
1770 json_object_add_value_int(root, "timestamp_ms", ms_since_epoch);
Steve ODriscoll0a24a732015-01-06 12:00:27 -07001771 json_object_add_value_string(root, "time", time_buf);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001772 global = get_global_options();
1773 json_add_job_opts(root, "global options", &global->opt_list, false);
Shaohua Licc372b12012-09-17 09:12:18 +02001774 array = json_create_array();
1775 json_object_add_value_array(root, "jobs", array);
1776 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001777
Elliott Hugheseda3a602017-05-19 18:53:02 -07001778 if (is_backend)
1779 fio_server_send_job_options(&get_global_options()->opt_list, -1U);
1780
Jens Axboe756867b2007-03-06 15:19:24 +01001781 for (i = 0; i < nr_ts; i++) {
1782 ts = &threadstats[i];
1783 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +02001784
Elliott Hugheseda3a602017-05-19 18:53:02 -07001785 if (is_backend) {
1786 fio_server_send_job_options(opt_lists[i], i);
Jens Axboea64e88d2011-10-03 14:20:01 +02001787 fio_server_send_ts(ts, rs);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001788 } else {
1789 if (output_format & FIO_OUTPUT_TERSE)
1790 show_thread_status_terse(ts, rs, &output[__FIO_OUTPUT_TERSE]);
1791 if (output_format & FIO_OUTPUT_JSON) {
1792 struct json_object *tmp = show_thread_status_json(ts, rs, opt_lists[i]);
1793 json_array_add_value_object(array, tmp);
1794 }
1795 if (output_format & FIO_OUTPUT_NORMAL)
1796 show_thread_status_normal(ts, rs, &output[__FIO_OUTPUT_NORMAL]);
1797 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001798 }
Elliott Hugheseda3a602017-05-19 18:53:02 -07001799 if (!is_backend && (output_format & FIO_OUTPUT_JSON)) {
Shaohua Licc372b12012-09-17 09:12:18 +02001800 /* disk util stats, if any */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001801 show_disk_util(1, root, &output[__FIO_OUTPUT_JSON]);
Shaohua Licc372b12012-09-17 09:12:18 +02001802
Elliott Hugheseda3a602017-05-19 18:53:02 -07001803 show_idle_prof_stats(FIO_OUTPUT_JSON, root, &output[__FIO_OUTPUT_JSON]);
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001804
Elliott Hugheseda3a602017-05-19 18:53:02 -07001805 json_print_object(root, &output[__FIO_OUTPUT_JSON]);
1806 log_buf(&output[__FIO_OUTPUT_JSON], "\n");
Shaohua Licc372b12012-09-17 09:12:18 +02001807 json_free_object(root);
1808 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001809
Jens Axboe72c27ff2011-10-16 11:50:31 +02001810 for (i = 0; i < groupid + 1; i++) {
1811 rs = &runstats[i];
Jens Axboea64e88d2011-10-03 14:20:01 +02001812
Jens Axboe72c27ff2011-10-16 11:50:31 +02001813 rs->groupid = i;
Jens Axboed09a64a2011-10-13 11:38:56 +02001814 if (is_backend)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001815 fio_server_send_gs(rs);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001816 else if (output_format & FIO_OUTPUT_NORMAL)
1817 show_group_stats(rs, &output[__FIO_OUTPUT_NORMAL]);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001818 }
Jens Axboeeecf2722006-10-20 14:00:36 +02001819
Jens Axboe72c27ff2011-10-16 11:50:31 +02001820 if (is_backend)
1821 fio_server_send_du();
Elliott Hugheseda3a602017-05-19 18:53:02 -07001822 else if (output_format & FIO_OUTPUT_NORMAL) {
1823 show_disk_util(0, NULL, &output[__FIO_OUTPUT_NORMAL]);
1824 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL, &output[__FIO_OUTPUT_NORMAL]);
Huadong Liu60904002013-02-21 10:24:20 +01001825 }
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001826
Elliott Hugheseda3a602017-05-19 18:53:02 -07001827 for (i = 0; i < FIO_OUTPUT_NR; i++) {
1828 buf_output_flush(&output[i]);
1829 buf_output_free(&output[i]);
Christian Ehrhardt2b8c71b2014-02-20 14:20:04 +01001830 }
1831
Vincent Kang Fufdd5f152013-04-26 16:56:01 -06001832 log_info_flush();
Jens Axboeeecf2722006-10-20 14:00:36 +02001833 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +01001834 free(threadstats);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001835 free(opt_lists);
Jens Axboe3c39a372006-06-06 20:56:12 +02001836}
1837
Jens Axboecef91752013-04-26 17:05:57 -06001838void show_run_stats(void)
1839{
1840 fio_mutex_down(stat_mutex);
1841 __show_run_stats();
1842 fio_mutex_up(stat_mutex);
1843}
1844
Jens Axboe7fe36312014-10-23 23:16:50 -06001845void __show_running_run_stats(void)
Jens Axboeb852e7c2012-03-30 10:30:35 +02001846{
1847 struct thread_data *td;
1848 unsigned long long *rt;
1849 struct timeval tv;
1850 int i;
1851
Jens Axboe560f4612014-07-21 11:32:13 +02001852 fio_mutex_down(stat_mutex);
1853
Jens Axboeb852e7c2012-03-30 10:30:35 +02001854 rt = malloc(thread_number * sizeof(unsigned long long));
1855 fio_gettime(&tv, NULL);
1856
1857 for_each_td(td, i) {
Jens Axboec97f1ad2013-03-28 15:08:49 -06001858 td->update_rusage = 1;
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001859 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1860 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1861 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
Jens Axboeb852e7c2012-03-30 10:30:35 +02001862 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001863
1864 rt[i] = mtime_since(&td->start, &tv);
1865 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
1866 td->ts.runtime[DDIR_READ] += rt[i];
1867 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
1868 td->ts.runtime[DDIR_WRITE] += rt[i];
1869 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
1870 td->ts.runtime[DDIR_TRIM] += rt[i];
Jens Axboeb852e7c2012-03-30 10:30:35 +02001871 }
1872
Jens Axboec97f1ad2013-03-28 15:08:49 -06001873 for_each_td(td, i) {
Jens Axboe04247862014-10-23 23:04:37 -06001874 if (td->runstate >= TD_EXITED)
1875 continue;
Jens Axboec97f1ad2013-03-28 15:08:49 -06001876 if (td->rusage_sem) {
1877 td->update_rusage = 1;
1878 fio_mutex_down(td->rusage_sem);
1879 }
1880 td->update_rusage = 0;
1881 }
1882
Jens Axboecef91752013-04-26 17:05:57 -06001883 __show_run_stats();
Jens Axboeb852e7c2012-03-30 10:30:35 +02001884
1885 for_each_td(td, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001886 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
Jens Axboeb852e7c2012-03-30 10:30:35 +02001887 td->ts.runtime[DDIR_READ] -= rt[i];
Elliott Hugheseda3a602017-05-19 18:53:02 -07001888 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
Jens Axboeb852e7c2012-03-30 10:30:35 +02001889 td->ts.runtime[DDIR_WRITE] -= rt[i];
Elliott Hugheseda3a602017-05-19 18:53:02 -07001890 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001891 td->ts.runtime[DDIR_TRIM] -= rt[i];
Jens Axboeb852e7c2012-03-30 10:30:35 +02001892 }
1893
1894 free(rt);
Jens Axboecef91752013-04-26 17:05:57 -06001895 fio_mutex_up(stat_mutex);
Jens Axboeb852e7c2012-03-30 10:30:35 +02001896}
1897
Jens Axboe06464902013-04-24 20:38:54 -06001898static int status_interval_init;
1899static struct timeval status_time;
Jens Axboe77d99672014-03-13 08:49:28 -06001900static int status_file_disabled;
Jens Axboe06464902013-04-24 20:38:54 -06001901
Jens Axboedac45f22014-03-12 13:40:09 -06001902#define FIO_STATUS_FILE "fio-dump-status"
Jens Axboe06464902013-04-24 20:38:54 -06001903
1904static int check_status_file(void)
1905{
1906 struct stat sb;
Bruce Crana0bafb72013-04-28 17:34:15 +02001907 const char *temp_dir;
1908 char fio_status_file_path[PATH_MAX];
Jens Axboe06464902013-04-24 20:38:54 -06001909
Jens Axboe77d99672014-03-13 08:49:28 -06001910 if (status_file_disabled)
1911 return 0;
1912
Bruce Crana0bafb72013-04-28 17:34:15 +02001913 temp_dir = getenv("TMPDIR");
Jens Axboe48b16e22014-04-14 08:23:23 -06001914 if (temp_dir == NULL) {
Bruce Crana0bafb72013-04-28 17:34:15 +02001915 temp_dir = getenv("TEMP");
Jens Axboe48b16e22014-04-14 08:23:23 -06001916 if (temp_dir && strlen(temp_dir) >= PATH_MAX)
1917 temp_dir = NULL;
1918 }
Bruce Crana0bafb72013-04-28 17:34:15 +02001919 if (temp_dir == NULL)
1920 temp_dir = "/tmp";
1921
1922 snprintf(fio_status_file_path, sizeof(fio_status_file_path), "%s/%s", temp_dir, FIO_STATUS_FILE);
1923
1924 if (stat(fio_status_file_path, &sb))
Jens Axboe06464902013-04-24 20:38:54 -06001925 return 0;
1926
Jens Axboe77d99672014-03-13 08:49:28 -06001927 if (unlink(fio_status_file_path) < 0) {
1928 log_err("fio: failed to unlink %s: %s\n", fio_status_file_path,
1929 strerror(errno));
1930 log_err("fio: disabling status file updates\n");
1931 status_file_disabled = 1;
1932 }
1933
Jens Axboe06464902013-04-24 20:38:54 -06001934 return 1;
1935}
1936
1937void check_for_running_stats(void)
1938{
1939 if (status_interval) {
1940 if (!status_interval_init) {
1941 fio_gettime(&status_time, NULL);
1942 status_interval_init = 1;
1943 } else if (mtime_since_now(&status_time) >= status_interval) {
1944 show_running_run_stats();
1945 fio_gettime(&status_time, NULL);
1946 return;
1947 }
1948 }
1949 if (check_status_file()) {
1950 show_running_run_stats();
1951 return;
1952 }
1953}
1954
Jens Axboe68704082007-01-10 19:56:37 +01001955static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +02001956{
Jens Axboe68704082007-01-10 19:56:37 +01001957 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +01001958 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001959
Jens Axboe68704082007-01-10 19:56:37 +01001960 if (data > is->max_val)
1961 is->max_val = data;
1962 if (data < is->min_val)
1963 is->min_val = data;
1964
Jens Axboe802ad4a2011-10-05 09:51:58 +02001965 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +02001966 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001967 is->mean.u.f += delta / (is->samples + 1.0);
1968 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +02001969 }
Jens Axboe68704082007-01-10 19:56:37 +01001970
Jens Axboe3c39a372006-06-06 20:56:12 +02001971 is->samples++;
1972}
1973
Elliott Hugheseda3a602017-05-19 18:53:02 -07001974/*
1975 * Return a struct io_logs, which is added to the tail of the log
1976 * list for 'iolog'.
1977 */
1978static struct io_logs *get_new_log(struct io_log *iolog)
Jens Axboe3c39a372006-06-06 20:56:12 +02001979{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001980 size_t new_size, new_samples;
1981 struct io_logs *cur_log;
Jens Axboe306ddc92009-05-18 13:08:12 +02001982
Elliott Hugheseda3a602017-05-19 18:53:02 -07001983 /*
1984 * Cap the size at MAX_LOG_ENTRIES, so we don't keep doubling
1985 * forever
1986 */
1987 if (!iolog->cur_log_max)
1988 new_samples = DEF_LOG_ENTRIES;
1989 else {
1990 new_samples = iolog->cur_log_max * 2;
1991 if (new_samples > MAX_LOG_ENTRIES)
1992 new_samples = MAX_LOG_ENTRIES;
1993 }
Jens Axboe3c568232013-09-30 12:17:34 -06001994
Elliott Hugheseda3a602017-05-19 18:53:02 -07001995 new_size = new_samples * log_entry_sz(iolog);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001996
Elliott Hugheseda3a602017-05-19 18:53:02 -07001997 cur_log = smalloc(sizeof(*cur_log));
1998 if (cur_log) {
1999 INIT_FLIST_HEAD(&cur_log->list);
2000 cur_log->log = malloc(new_size);
2001 if (cur_log->log) {
2002 cur_log->nr_samples = 0;
2003 cur_log->max_samples = new_samples;
2004 flist_add_tail(&cur_log->list, &iolog->io_logs);
2005 iolog->cur_log_max = new_samples;
2006 return cur_log;
2007 }
2008 sfree(cur_log);
2009 }
Jens Axboe3c39a372006-06-06 20:56:12 +02002010
Elliott Hugheseda3a602017-05-19 18:53:02 -07002011 return NULL;
2012}
Jens Axboe38a812d2014-07-03 09:10:39 -06002013
Elliott Hugheseda3a602017-05-19 18:53:02 -07002014/*
2015 * Add and return a new log chunk, or return current log if big enough
2016 */
2017static struct io_logs *regrow_log(struct io_log *iolog)
2018{
2019 struct io_logs *cur_log;
2020 int i;
2021
2022 if (!iolog || iolog->disabled)
2023 goto disable;
2024
2025 cur_log = iolog_cur_log(iolog);
2026 if (!cur_log) {
2027 cur_log = get_new_log(iolog);
2028 if (!cur_log)
2029 return NULL;
2030 }
2031
2032 if (cur_log->nr_samples < cur_log->max_samples)
2033 return cur_log;
2034
2035 /*
2036 * No room for a new sample. If we're compressing on the fly, flush
2037 * out the current chunk
2038 */
2039 if (iolog->log_gz) {
2040 if (iolog_cur_flush(iolog, cur_log)) {
2041 log_err("fio: failed flushing iolog! Will stop logging.\n");
2042 return NULL;
Jens Axboe3c568232013-09-30 12:17:34 -06002043 }
Jens Axboe3c39a372006-06-06 20:56:12 +02002044 }
2045
Elliott Hugheseda3a602017-05-19 18:53:02 -07002046 /*
2047 * Get a new log array, and add to our list
2048 */
2049 cur_log = get_new_log(iolog);
2050 if (!cur_log) {
2051 log_err("fio: failed extending iolog! Will stop logging.\n");
2052 return NULL;
Jens Axboeccefd5f2014-06-30 20:59:03 -06002053 }
2054
Elliott Hugheseda3a602017-05-19 18:53:02 -07002055 if (!iolog->pending || !iolog->pending->nr_samples)
2056 return cur_log;
2057
2058 /*
2059 * Flush pending items to new log
2060 */
2061 for (i = 0; i < iolog->pending->nr_samples; i++) {
2062 struct io_sample *src, *dst;
2063
2064 src = get_sample(iolog, iolog->pending, i);
2065 dst = get_sample(iolog, cur_log, i);
2066 memcpy(dst, src, log_entry_sz(iolog));
2067 }
2068 cur_log->nr_samples = iolog->pending->nr_samples;
2069
2070 iolog->pending->nr_samples = 0;
2071 return cur_log;
2072disable:
2073 if (iolog)
2074 iolog->disabled = true;
2075 return NULL;
2076}
2077
2078void regrow_logs(struct thread_data *td)
2079{
2080 regrow_log(td->slat_log);
2081 regrow_log(td->clat_log);
2082 regrow_log(td->clat_hist_log);
2083 regrow_log(td->lat_log);
2084 regrow_log(td->bw_log);
2085 regrow_log(td->iops_log);
2086 td->flags &= ~TD_F_REGROW_LOGS;
2087}
2088
2089static struct io_logs *get_cur_log(struct io_log *iolog)
2090{
2091 struct io_logs *cur_log;
2092
2093 cur_log = iolog_cur_log(iolog);
2094 if (!cur_log) {
2095 cur_log = get_new_log(iolog);
2096 if (!cur_log)
2097 return NULL;
2098 }
2099
2100 if (cur_log->nr_samples < cur_log->max_samples)
2101 return cur_log;
2102
2103 /*
2104 * Out of space. If we're in IO offload mode, or we're not doing
2105 * per unit logging (hence logging happens outside of the IO thread
2106 * as well), add a new log chunk inline. If we're doing inline
2107 * submissions, flag 'td' as needing a log regrow and we'll take
2108 * care of it on the submission side.
2109 */
2110 if (iolog->td->o.io_submit_mode == IO_MODE_OFFLOAD ||
2111 !per_unit_log(iolog))
2112 return regrow_log(iolog);
2113
2114 iolog->td->flags |= TD_F_REGROW_LOGS;
2115 assert(iolog->pending->nr_samples < iolog->pending->max_samples);
2116 return iolog->pending;
2117}
2118
2119static void __add_log_sample(struct io_log *iolog, union io_sample_data data,
2120 enum fio_ddir ddir, unsigned int bs,
2121 unsigned long t, uint64_t offset)
2122{
2123 struct io_logs *cur_log;
2124
2125 if (iolog->disabled)
2126 return;
2127 if (flist_empty(&iolog->io_logs))
2128 iolog->avg_last = t;
2129
2130 cur_log = get_cur_log(iolog);
2131 if (cur_log) {
2132 struct io_sample *s;
2133
2134 s = get_sample(iolog, cur_log, cur_log->nr_samples);
2135
2136 s->data = data;
2137 s->time = t + (iolog->td ? iolog->td->unix_epoch : 0);
2138 io_sample_set_ddir(iolog, s, ddir);
2139 s->bs = bs;
2140
2141 if (iolog->log_offset) {
2142 struct io_sample_offset *so = (void *) s;
2143
2144 so->offset = offset;
2145 }
2146
2147 cur_log->nr_samples++;
2148 return;
2149 }
2150
2151 iolog->disabled = true;
Jens Axboe3c39a372006-06-06 20:56:12 +02002152}
2153
Jens Axboe7fb28d32011-12-01 15:17:24 +01002154static inline void reset_io_stat(struct io_stat *ios)
2155{
2156 ios->max_val = ios->min_val = ios->samples = 0;
2157 ios->mean.u.f = ios->S.u.f = 0;
2158}
2159
Jens Axboe6bb58212014-02-21 13:55:31 -08002160void reset_io_stats(struct thread_data *td)
2161{
2162 struct thread_stat *ts = &td->ts;
2163 int i, j;
2164
2165 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2166 reset_io_stat(&ts->clat_stat[i]);
2167 reset_io_stat(&ts->slat_stat[i]);
2168 reset_io_stat(&ts->lat_stat[i]);
2169 reset_io_stat(&ts->bw_stat[i]);
2170 reset_io_stat(&ts->iops_stat[i]);
2171
2172 ts->io_bytes[i] = 0;
2173 ts->runtime[i] = 0;
Elliott Hugheseda3a602017-05-19 18:53:02 -07002174 ts->total_io_u[i] = 0;
2175 ts->short_io_u[i] = 0;
2176 ts->drop_io_u[i] = 0;
Jens Axboe6bb58212014-02-21 13:55:31 -08002177
2178 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
2179 ts->io_u_plat[i][j] = 0;
2180 }
2181
2182 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
2183 ts->io_u_map[i] = 0;
2184 ts->io_u_submit[i] = 0;
2185 ts->io_u_complete[i] = 0;
Jens Axboe6bb58212014-02-21 13:55:31 -08002186 }
2187
Elliott Hugheseda3a602017-05-19 18:53:02 -07002188 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
2189 ts->io_u_lat_u[i] = 0;
2190 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
2191 ts->io_u_lat_m[i] = 0;
2192
2193 ts->total_submit = 0;
2194 ts->total_complete = 0;
Jens Axboe6bb58212014-02-21 13:55:31 -08002195}
2196
Elliott Hugheseda3a602017-05-19 18:53:02 -07002197static void __add_stat_to_log(struct io_log *iolog, enum fio_ddir ddir,
2198 unsigned long elapsed, bool log_max)
Peter Oberparleiter99007062014-02-20 14:20:05 +01002199{
2200 /*
2201 * Note an entry in the log. Use the mean from the logged samples,
2202 * making sure to properly round up. Only write a log entry if we
2203 * had actual samples done.
2204 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07002205 if (iolog->avg_window[ddir].samples) {
2206 union io_sample_data data;
Peter Oberparleiter99007062014-02-20 14:20:05 +01002207
Elliott Hugheseda3a602017-05-19 18:53:02 -07002208 if (log_max)
2209 data.val = iolog->avg_window[ddir].max_val;
2210 else
2211 data.val = iolog->avg_window[ddir].mean.u.f + 0.50;
Peter Oberparleiter99007062014-02-20 14:20:05 +01002212
Elliott Hugheseda3a602017-05-19 18:53:02 -07002213 __add_log_sample(iolog, data, ddir, 0, elapsed, 0);
Peter Oberparleiter99007062014-02-20 14:20:05 +01002214 }
2215
Elliott Hugheseda3a602017-05-19 18:53:02 -07002216 reset_io_stat(&iolog->avg_window[ddir]);
Peter Oberparleiter99007062014-02-20 14:20:05 +01002217}
2218
Elliott Hugheseda3a602017-05-19 18:53:02 -07002219static void _add_stat_to_log(struct io_log *iolog, unsigned long elapsed,
2220 bool log_max)
2221{
2222 int ddir;
2223
2224 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
2225 __add_stat_to_log(iolog, ddir, elapsed, log_max);
2226}
2227
2228static long add_log_sample(struct thread_data *td, struct io_log *iolog,
2229 union io_sample_data data, enum fio_ddir ddir,
Jens Axboeccefd5f2014-06-30 20:59:03 -06002230 unsigned int bs, uint64_t offset)
Jens Axboebb3884d2007-01-17 17:23:11 +11002231{
Jens Axboe7fb28d32011-12-01 15:17:24 +01002232 unsigned long elapsed, this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002233
Jens Axboeff58fce2010-08-25 12:02:08 +02002234 if (!ddir_rw(ddir))
Elliott Hugheseda3a602017-05-19 18:53:02 -07002235 return 0;
Jens Axboeff58fce2010-08-25 12:02:08 +02002236
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002237 elapsed = mtime_since_now(&td->epoch);
2238
2239 /*
2240 * If no time averaging, just add the log sample.
2241 */
2242 if (!iolog->avg_msec) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07002243 __add_log_sample(iolog, data, ddir, bs, elapsed, offset);
2244 return 0;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002245 }
2246
2247 /*
2248 * Add the sample. If the time period has passed, then
2249 * add that entry to the log and clear.
2250 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07002251 add_stat_sample(&iolog->avg_window[ddir], data.val);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002252
Jens Axboe7fb28d32011-12-01 15:17:24 +01002253 /*
2254 * If period hasn't passed, adding the above sample is all we
2255 * need to do.
2256 */
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002257 this_window = elapsed - iolog->avg_last;
Elliott Hugheseda3a602017-05-19 18:53:02 -07002258 if (elapsed < iolog->avg_last)
2259 return iolog->avg_last - elapsed;
2260 else if (this_window < iolog->avg_msec) {
2261 int diff = iolog->avg_msec - this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002262
Elliott Hugheseda3a602017-05-19 18:53:02 -07002263 if (inline_log(iolog) || diff > LOG_MSEC_SLACK)
2264 return diff;
2265 }
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01002266
Elliott Hugheseda3a602017-05-19 18:53:02 -07002267 _add_stat_to_log(iolog, elapsed, td->o.log_max != 0);
2268
2269 iolog->avg_last = elapsed - (this_window - iolog->avg_msec);
2270 return iolog->avg_msec;
Jens Axboebb3884d2007-01-17 17:23:11 +11002271}
2272
Elliott Hugheseda3a602017-05-19 18:53:02 -07002273void finalize_logs(struct thread_data *td, bool unit_logs)
Peter Oberparleiter99007062014-02-20 14:20:05 +01002274{
2275 unsigned long elapsed;
2276
2277 elapsed = mtime_since_now(&td->epoch);
2278
Elliott Hugheseda3a602017-05-19 18:53:02 -07002279 if (td->clat_log && unit_logs)
2280 _add_stat_to_log(td->clat_log, elapsed, td->o.log_max != 0);
2281 if (td->slat_log && unit_logs)
2282 _add_stat_to_log(td->slat_log, elapsed, td->o.log_max != 0);
2283 if (td->lat_log && unit_logs)
2284 _add_stat_to_log(td->lat_log, elapsed, td->o.log_max != 0);
2285 if (td->bw_log && (unit_logs == per_unit_log(td->bw_log)))
2286 _add_stat_to_log(td->bw_log, elapsed, td->o.log_max != 0);
2287 if (td->iops_log && (unit_logs == per_unit_log(td->iops_log)))
2288 _add_stat_to_log(td->iops_log, elapsed, td->o.log_max != 0);
Peter Oberparleiter99007062014-02-20 14:20:05 +01002289}
2290
Elliott Hugheseda3a602017-05-19 18:53:02 -07002291void add_agg_sample(union io_sample_data data, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11002292{
Jens Axboeff58fce2010-08-25 12:02:08 +02002293 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +11002294
Jens Axboeff58fce2010-08-25 12:02:08 +02002295 if (!ddir_rw(ddir))
2296 return;
2297
2298 iolog = agg_io_log[ddir];
Elliott Hugheseda3a602017-05-19 18:53:02 -07002299 __add_log_sample(iolog, data, ddir, bs, mtime_since_genesis(), 0);
Jens Axboebb3884d2007-01-17 17:23:11 +11002300}
2301
Yu-ju Hong83349192011-08-13 00:53:44 +02002302static void add_clat_percentile_sample(struct thread_stat *ts,
2303 unsigned long usec, enum fio_ddir ddir)
2304{
2305 unsigned int idx = plat_val_to_idx(usec);
2306 assert(idx < FIO_IO_U_PLAT_NR);
2307
2308 ts->io_u_plat[ddir][idx]++;
2309}
2310
Jens Axboe1e97cce2006-12-05 11:44:16 +01002311void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboeccefd5f2014-06-30 20:59:03 -06002312 unsigned long usec, unsigned int bs, uint64_t offset)
Jens Axboe3c39a372006-06-06 20:56:12 +02002313{
Elliott Hugheseda3a602017-05-19 18:53:02 -07002314 unsigned long elapsed, this_window;
Jens Axboe756867b2007-03-06 15:19:24 +01002315 struct thread_stat *ts = &td->ts;
Elliott Hugheseda3a602017-05-19 18:53:02 -07002316 struct io_log *iolog = td->clat_hist_log;
Jens Axboe3c39a372006-06-06 20:56:12 +02002317
Elliott Hugheseda3a602017-05-19 18:53:02 -07002318 td_io_u_lock(td);
Jens Axboeff58fce2010-08-25 12:02:08 +02002319
Jens Axboed85f5112007-06-18 09:41:23 +02002320 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01002321
Jens Axboe7b9f7332011-10-03 10:06:44 +02002322 if (td->clat_log)
Elliott Hugheseda3a602017-05-19 18:53:02 -07002323 add_log_sample(td, td->clat_log, sample_val(usec), ddir, bs,
2324 offset);
Yu-ju Hong83349192011-08-13 00:53:44 +02002325
2326 if (ts->clat_percentiles)
2327 add_clat_percentile_sample(ts, usec, ddir);
Elliott Hugheseda3a602017-05-19 18:53:02 -07002328
2329 if (iolog && iolog->hist_msec) {
2330 struct io_hist *hw = &iolog->hist_window[ddir];
2331
2332 hw->samples++;
2333 elapsed = mtime_since_now(&td->epoch);
2334 if (!hw->hist_last)
2335 hw->hist_last = elapsed;
2336 this_window = elapsed - hw->hist_last;
2337
2338 if (this_window >= iolog->hist_msec) {
2339 unsigned int *io_u_plat;
2340 struct io_u_plat_entry *dst;
2341
2342 /*
2343 * Make a byte-for-byte copy of the latency histogram
2344 * stored in td->ts.io_u_plat[ddir], recording it in a
2345 * log sample. Note that the matching call to free() is
2346 * located in iolog.c after printing this sample to the
2347 * log file.
2348 */
2349 io_u_plat = (unsigned int *) td->ts.io_u_plat[ddir];
2350 dst = malloc(sizeof(struct io_u_plat_entry));
2351 memcpy(&(dst->io_u_plat), io_u_plat,
2352 FIO_IO_U_PLAT_NR * sizeof(unsigned int));
2353 flist_add(&dst->list, &hw->list);
2354 __add_log_sample(iolog, sample_plat(dst), ddir, bs,
2355 elapsed, offset);
2356
2357 /*
2358 * Update the last time we recorded as being now, minus
2359 * any drift in time we encountered before actually
2360 * making the record.
2361 */
2362 hw->hist_last = elapsed - (this_window - iolog->hist_msec);
2363 hw->samples = 0;
2364 }
2365 }
2366
2367 td_io_u_unlock(td);
Jens Axboe3c39a372006-06-06 20:56:12 +02002368}
2369
Jens Axboe1e97cce2006-12-05 11:44:16 +01002370void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboeccefd5f2014-06-30 20:59:03 -06002371 unsigned long usec, unsigned int bs, uint64_t offset)
Jens Axboe3c39a372006-06-06 20:56:12 +02002372{
Jens Axboe756867b2007-03-06 15:19:24 +01002373 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02002374
Jens Axboeff58fce2010-08-25 12:02:08 +02002375 if (!ddir_rw(ddir))
2376 return;
2377
Elliott Hugheseda3a602017-05-19 18:53:02 -07002378 td_io_u_lock(td);
2379
Jens Axboed85f5112007-06-18 09:41:23 +02002380 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01002381
Jens Axboe7b9f7332011-10-03 10:06:44 +02002382 if (td->slat_log)
Elliott Hugheseda3a602017-05-19 18:53:02 -07002383 add_log_sample(td, td->slat_log, sample_val(usec), ddir, bs, offset);
2384
2385 td_io_u_unlock(td);
Jens Axboe3c39a372006-06-06 20:56:12 +02002386}
2387
Jens Axboe02af0982010-06-24 09:59:34 +02002388void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboeccefd5f2014-06-30 20:59:03 -06002389 unsigned long usec, unsigned int bs, uint64_t offset)
Jens Axboe02af0982010-06-24 09:59:34 +02002390{
2391 struct thread_stat *ts = &td->ts;
2392
Jens Axboeff58fce2010-08-25 12:02:08 +02002393 if (!ddir_rw(ddir))
2394 return;
2395
Elliott Hugheseda3a602017-05-19 18:53:02 -07002396 td_io_u_lock(td);
2397
Jens Axboe02af0982010-06-24 09:59:34 +02002398 add_stat_sample(&ts->lat_stat[ddir], usec);
2399
Jens Axboe7b9f7332011-10-03 10:06:44 +02002400 if (td->lat_log)
Elliott Hugheseda3a602017-05-19 18:53:02 -07002401 add_log_sample(td, td->lat_log, sample_val(usec), ddir, bs,
2402 offset);
2403
2404 td_io_u_unlock(td);
Jens Axboe02af0982010-06-24 09:59:34 +02002405}
2406
Elliott Hugheseda3a602017-05-19 18:53:02 -07002407void add_bw_sample(struct thread_data *td, struct io_u *io_u,
2408 unsigned int bytes, unsigned long spent)
Jens Axboe3c39a372006-06-06 20:56:12 +02002409{
Jens Axboe756867b2007-03-06 15:19:24 +01002410 struct thread_stat *ts = &td->ts;
Elliott Hugheseda3a602017-05-19 18:53:02 -07002411 unsigned long rate;
2412
2413 if (spent)
2414 rate = bytes * 1000 / spent;
2415 else
2416 rate = 0;
2417
2418 td_io_u_lock(td);
2419
2420 add_stat_sample(&ts->bw_stat[io_u->ddir], rate);
2421
2422 if (td->bw_log)
2423 add_log_sample(td, td->bw_log, sample_val(rate), io_u->ddir,
2424 bytes, io_u->offset);
2425
2426 td->stat_io_bytes[io_u->ddir] = td->this_io_bytes[io_u->ddir];
2427 td_io_u_unlock(td);
2428}
2429
2430static int __add_samples(struct thread_data *td, struct timeval *parent_tv,
2431 struct timeval *t, unsigned int avg_time,
2432 uint64_t *this_io_bytes, uint64_t *stat_io_bytes,
2433 struct io_stat *stat, struct io_log *log,
2434 bool is_kb)
2435{
Jens Axboeff58fce2010-08-25 12:02:08 +02002436 unsigned long spent, rate;
Elliott Hugheseda3a602017-05-19 18:53:02 -07002437 enum fio_ddir ddir;
2438 unsigned int next, next_log;
Jens Axboe3c39a372006-06-06 20:56:12 +02002439
Elliott Hugheseda3a602017-05-19 18:53:02 -07002440 next_log = avg_time;
Jens Axboeff58fce2010-08-25 12:02:08 +02002441
Elliott Hugheseda3a602017-05-19 18:53:02 -07002442 spent = mtime_since(parent_tv, t);
2443 if (spent < avg_time && avg_time - spent >= LOG_MSEC_SLACK)
2444 return avg_time - spent;
2445
2446 td_io_u_lock(td);
Jens Axboe9602d8d2012-02-20 20:19:28 +01002447
2448 /*
Josh Carter5daa4eb2012-02-20 10:12:22 +01002449 * Compute both read and write rates for the interval.
2450 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07002451 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
Josh Carter5daa4eb2012-02-20 10:12:22 +01002452 uint64_t delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02002453
Elliott Hugheseda3a602017-05-19 18:53:02 -07002454 delta = this_io_bytes[ddir] - stat_io_bytes[ddir];
Josh Carter5daa4eb2012-02-20 10:12:22 +01002455 if (!delta)
2456 continue; /* No entries for interval */
Jens Axboe3c39a372006-06-06 20:56:12 +02002457
Elliott Hugheseda3a602017-05-19 18:53:02 -07002458 if (spent) {
2459 if (is_kb)
2460 rate = delta * 1000 / spent / 1024; /* KiB/s */
2461 else
2462 rate = (delta * 1000) / spent;
2463 } else
Jens Axboe09562642014-04-14 09:49:38 -06002464 rate = 0;
2465
Elliott Hugheseda3a602017-05-19 18:53:02 -07002466 add_stat_sample(&stat[ddir], rate);
Josh Carter5daa4eb2012-02-20 10:12:22 +01002467
Elliott Hugheseda3a602017-05-19 18:53:02 -07002468 if (log) {
2469 unsigned int bs = 0;
Josh Carter5daa4eb2012-02-20 10:12:22 +01002470
Elliott Hugheseda3a602017-05-19 18:53:02 -07002471 if (td->o.min_bs[ddir] == td->o.max_bs[ddir])
2472 bs = td->o.min_bs[ddir];
2473
2474 next = add_log_sample(td, log, sample_val(rate), ddir, bs, 0);
2475 next_log = min(next_log, next);
2476 }
2477
2478 stat_io_bytes[ddir] = this_io_bytes[ddir];
Josh Carter5daa4eb2012-02-20 10:12:22 +01002479 }
Jens Axboe3c39a372006-06-06 20:56:12 +02002480
Elliott Hugheseda3a602017-05-19 18:53:02 -07002481 timeval_add_msec(parent_tv, avg_time);
2482
2483 td_io_u_unlock(td);
2484
2485 if (spent <= avg_time)
2486 next = avg_time;
2487 else
2488 next = avg_time - (1 + spent - avg_time);
2489
2490 return min(next, next_log);
Jens Axboe3c39a372006-06-06 20:56:12 +02002491}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002492
Elliott Hugheseda3a602017-05-19 18:53:02 -07002493static int add_bw_samples(struct thread_data *td, struct timeval *t)
2494{
2495 return __add_samples(td, &td->bw_sample_time, t, td->o.bw_avg_time,
2496 td->this_io_bytes, td->stat_io_bytes,
2497 td->ts.bw_stat, td->bw_log, true);
2498}
2499
2500void add_iops_sample(struct thread_data *td, struct io_u *io_u,
2501 unsigned int bytes)
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002502{
2503 struct thread_stat *ts = &td->ts;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002504
Elliott Hugheseda3a602017-05-19 18:53:02 -07002505 td_io_u_lock(td);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002506
Elliott Hugheseda3a602017-05-19 18:53:02 -07002507 add_stat_sample(&ts->iops_stat[io_u->ddir], 1);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002508
Elliott Hugheseda3a602017-05-19 18:53:02 -07002509 if (td->iops_log)
2510 add_log_sample(td, td->iops_log, sample_val(1), io_u->ddir,
2511 bytes, io_u->offset);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002512
Elliott Hugheseda3a602017-05-19 18:53:02 -07002513 td->stat_io_blocks[io_u->ddir] = td->this_io_blocks[io_u->ddir];
2514 td_io_u_unlock(td);
2515}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002516
Elliott Hugheseda3a602017-05-19 18:53:02 -07002517static int add_iops_samples(struct thread_data *td, struct timeval *t)
2518{
2519 return __add_samples(td, &td->iops_sample_time, t, td->o.iops_avg_time,
2520 td->this_io_blocks, td->stat_io_blocks,
2521 td->ts.iops_stat, td->iops_log, false);
2522}
Jens Axboe09562642014-04-14 09:49:38 -06002523
Elliott Hugheseda3a602017-05-19 18:53:02 -07002524/*
2525 * Returns msecs to next event
2526 */
2527int calc_log_samples(void)
2528{
2529 struct thread_data *td;
2530 unsigned int next = ~0U, tmp;
2531 struct timeval now;
2532 int i;
Jens Axboe9602d8d2012-02-20 20:19:28 +01002533
Elliott Hugheseda3a602017-05-19 18:53:02 -07002534 fio_gettime(&now, NULL);
Jens Axboe9602d8d2012-02-20 20:19:28 +01002535
Elliott Hugheseda3a602017-05-19 18:53:02 -07002536 for_each_td(td, i) {
2537 if (!td->o.stats)
2538 continue;
2539 if (in_ramp_time(td) ||
2540 !(td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING)) {
2541 next = min(td->o.iops_avg_time, td->o.bw_avg_time);
2542 continue;
2543 }
2544 if (!td->bw_log ||
2545 (td->bw_log && !per_unit_log(td->bw_log))) {
2546 tmp = add_bw_samples(td, &now);
2547 if (tmp < next)
2548 next = tmp;
2549 }
2550 if (!td->iops_log ||
2551 (td->iops_log && !per_unit_log(td->iops_log))) {
2552 tmp = add_iops_samples(td, &now);
2553 if (tmp < next)
2554 next = tmp;
2555 }
Jens Axboe9602d8d2012-02-20 20:19:28 +01002556 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002557
Elliott Hugheseda3a602017-05-19 18:53:02 -07002558 return next == ~0U ? 0 : next;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02002559}
Jens Axboecef91752013-04-26 17:05:57 -06002560
2561void stat_init(void)
2562{
2563 stat_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
2564}
2565
2566void stat_exit(void)
2567{
2568 /*
2569 * When we have the mutex, we know out-of-band access to it
2570 * have ended.
2571 */
2572 fio_mutex_down(stat_mutex);
2573 fio_mutex_remove(stat_mutex);
2574}
Jens Axboefdb0da82014-10-23 09:15:20 -06002575
Jens Axboefdb0da82014-10-23 09:15:20 -06002576/*
2577 * Called from signal handler. Wake up status thread.
2578 */
2579void show_running_run_stats(void)
2580{
Elliott Hugheseda3a602017-05-19 18:53:02 -07002581 helper_do_stat();
2582}
2583
2584uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u)
2585{
2586 /* Ignore io_u's which span multiple blocks--they will just get
2587 * inaccurate counts. */
2588 int idx = (io_u->offset - io_u->file->file_offset)
2589 / td->o.bs[DDIR_TRIM];
2590 uint32_t *info = &td->ts.block_infos[idx];
2591 assert(idx < td->ts.nr_block_infos);
2592 return info;
Jens Axboefdb0da82014-10-23 09:15:20 -06002593}