HOWTO: fix long line
[fio.git] / stat.c
CommitLineData
3c39a379
JA
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
5c4e1dbc 5#include <sys/stat.h>
3c39a379
JA
6#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
7c9b1bce 11#include "diskutil.h"
c7c6cb4c 12#include "lib/ieee754.h"
cc372b17 13#include "json.h"
44404c5a 14#include "lib/getrusage.h"
f2a2ce0e 15#include "idletime.h"
0f38bbef 16#include "lib/pow2.h"
3c39a379 17
e5437a07 18struct fio_mutex *stat_mutex;
cef9175e 19
3c39a379
JA
20void update_rusage_stat(struct thread_data *td)
21{
756867bd 22 struct thread_stat *ts = &td->ts;
3c39a379 23
44404c5a 24 fio_getrusage(&td->ru_end);
c8aaba19
JA
25 ts->usr_time += mtime_since(&td->ru_start.ru_utime,
26 &td->ru_end.ru_utime);
27 ts->sys_time += mtime_since(&td->ru_start.ru_stime,
28 &td->ru_end.ru_stime);
29 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
30 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
31 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
32 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
5ec10eaa 33
c8aaba19 34 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
3c39a379
JA
35}
36
83349190
YH
37/*
38 * Given a latency, return the index of the corresponding bucket in
39 * the structure tracking percentiles.
40 *
41 * (1) find the group (and error bits) that the value (latency)
42 * belongs to by looking at its MSB. (2) find the bucket number in the
43 * group by looking at the index bits.
44 *
45 */
46static unsigned int plat_val_to_idx(unsigned int val)
47{
48 unsigned int msb, error_bits, base, offset, idx;
49
50 /* Find MSB starting from bit 0 */
51 if (val == 0)
52 msb = 0;
53 else
54 msb = (sizeof(val)*8) - __builtin_clz(val) - 1;
55
716050f2
JA
56 /*
57 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
58 * all bits of the sample as index
59 */
83349190
YH
60 if (msb <= FIO_IO_U_PLAT_BITS)
61 return val;
62
63 /* Compute the number of error bits to discard*/
64 error_bits = msb - FIO_IO_U_PLAT_BITS;
65
66 /* Compute the number of buckets before the group */
67 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
68
716050f2
JA
69 /*
70 * Discard the error bits and apply the mask to find the
3c3ed070 71 * index for the buckets in the group
716050f2 72 */
83349190
YH
73 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
74
75 /* Make sure the index does not exceed (array size - 1) */
3c3ed070 76 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1) ?
83349190
YH
77 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
78
79 return idx;
80}
81
82/*
83 * Convert the given index of the bucket array to the value
84 * represented by the bucket
85 */
86static unsigned int plat_idx_to_val(unsigned int idx)
87{
88 unsigned int error_bits, k, base;
89
90 assert(idx < FIO_IO_U_PLAT_NR);
91
92 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
93 * all bits of the sample as index */
3c3ed070 94 if (idx < (FIO_IO_U_PLAT_VAL << 1))
83349190
YH
95 return idx;
96
97 /* Find the group and compute the minimum value of that group */
3c3ed070 98 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
83349190
YH
99 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
100
101 /* Find its bucket number of the group */
102 k = idx % FIO_IO_U_PLAT_VAL;
103
104 /* Return the mean of the range of the bucket */
105 return base + ((k + 0.5) * (1 << error_bits));
106}
107
108static int double_cmp(const void *a, const void *b)
109{
802ad4a8
JA
110 const fio_fp64_t fa = *(const fio_fp64_t *) a;
111 const fio_fp64_t fb = *(const fio_fp64_t *) b;
83349190
YH
112 int cmp = 0;
113
802ad4a8 114 if (fa.u.f > fb.u.f)
83349190 115 cmp = 1;
802ad4a8 116 else if (fa.u.f < fb.u.f)
83349190
YH
117 cmp = -1;
118
119 return cmp;
120}
121
a269790c
JA
122unsigned int calc_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
123 fio_fp64_t *plist, unsigned int **output,
124 unsigned int *maxv, unsigned int *minv)
83349190
YH
125{
126 unsigned long sum = 0;
1db92cb6
JA
127 unsigned int len, i, j = 0;
128 unsigned int oval_len = 0;
129 unsigned int *ovals = NULL;
130 int is_last;
131
132 *minv = -1U;
133 *maxv = 0;
83349190 134
802ad4a8
JA
135 len = 0;
136 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
137 len++;
716050f2 138
351de8de 139 if (!len)
1db92cb6 140 return 0;
351de8de 141
716050f2 142 /*
802ad4a8
JA
143 * Sort the percentile list. Note that it may already be sorted if
144 * we are using the default values, but since it's a short list this
145 * isn't a worry. Also note that this does not work for NaN values.
716050f2 146 */
802ad4a8 147 if (len > 1)
3c3ed070 148 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
83349190 149
4f6f8298
JA
150 /*
151 * Calculate bucket values, note down max and min values
152 */
07511a63
JA
153 is_last = 0;
154 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
83349190 155 sum += io_u_plat[i];
802ad4a8
JA
156 while (sum >= (plist[j].u.f / 100.0 * nr)) {
157 assert(plist[j].u.f <= 100.0);
83349190 158
4f6f8298
JA
159 if (j == oval_len) {
160 oval_len += 100;
161 ovals = realloc(ovals, oval_len * sizeof(unsigned int));
162 }
163
164 ovals[j] = plat_idx_to_val(i);
1db92cb6
JA
165 if (ovals[j] < *minv)
166 *minv = ovals[j];
167 if (ovals[j] > *maxv)
168 *maxv = ovals[j];
07511a63
JA
169
170 is_last = (j == len - 1);
171 if (is_last)
172 break;
173
4f6f8298
JA
174 j++;
175 }
176 }
83349190 177
1db92cb6
JA
178 *output = ovals;
179 return len;
180}
181
182/*
183 * Find and display the p-th percentile of clat
184 */
185static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
3dc1e5b2 186 fio_fp64_t *plist, unsigned int precision)
1db92cb6
JA
187{
188 unsigned int len, j = 0, minv, maxv;
189 unsigned int *ovals;
eef02441
JA
190 int is_last, per_line, scale_down;
191 char fmt[32];
1db92cb6
JA
192
193 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
194 if (!len)
195 goto out;
196
4f6f8298
JA
197 /*
198 * We default to usecs, but if the value range is such that we
199 * should scale down to msecs, do that.
200 */
201 if (minv > 2000 && maxv > 99999) {
202 scale_down = 1;
203 log_info(" clat percentiles (msec):\n |");
204 } else {
205 scale_down = 0;
206 log_info(" clat percentiles (usec):\n |");
207 }
83349190 208
3dc1e5b2 209 snprintf(fmt, sizeof(fmt), "%%1.%uf", precision);
eef02441 210 per_line = (80 - 7) / (precision + 14);
619adf9c 211
4f6f8298 212 for (j = 0; j < len; j++) {
619adf9c 213 char fbuf[16], *ptr = fbuf;
81ab0b3a 214
4f6f8298 215 /* for formatting */
eef02441 216 if (j != 0 && (j % per_line) == 0)
4f6f8298 217 log_info(" |");
83349190 218
4f6f8298
JA
219 /* end of the list */
220 is_last = (j == len - 1);
83349190 221
4f6f8298 222 if (plist[j].u.f < 10.0)
619adf9c
JA
223 ptr += sprintf(fbuf, " ");
224
eef02441 225 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f);
4f6f8298
JA
226
227 if (scale_down)
228 ovals[j] = (ovals[j] + 999) / 1000;
229
230 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
231
232 if (is_last)
233 break;
234
eef02441 235 if ((j % per_line) == per_line - 1) /* for formatting */
4f6f8298 236 log_info("\n");
83349190 237 }
4f6f8298 238
1db92cb6 239out:
4f6f8298
JA
240 if (ovals)
241 free(ovals);
83349190
YH
242}
243
b29ad562
JA
244int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
245 double *mean, double *dev)
3c39a379 246{
ee0ccb79 247 double n = (double) is->samples;
3c39a379 248
ee0ccb79 249 if (n == 0)
3c39a379
JA
250 return 0;
251
252 *min = is->min_val;
253 *max = is->max_val;
802ad4a8 254 *mean = is->mean.u.f;
e6d276f2 255
68704084 256 if (n > 1.0)
802ad4a8 257 *dev = sqrt(is->S.u.f / (n - 1.0));
ef9c5c40 258 else
4b43f54e 259 *dev = 0;
ef9c5c40 260
3c39a379
JA
261 return 1;
262}
263
a64e88da 264void show_group_stats(struct group_run_stats *rs)
3c39a379 265{
dbe1125e 266 char *p1, *p2, *p3, *p4;
42da5c8b 267 const char *str[] = { " READ", " WRITE" , " TRIM"};
dbe1125e
JA
268 int i;
269
7e1773ba 270 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
3c39a379 271
6eaf09d6 272 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
90fef2d1
JA
273 const int i2p = is_power_of_2(rs->kb_base);
274
dbe1125e
JA
275 if (!rs->max_run[i])
276 continue;
277
73798eb2 278 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p, 8);
ad705bcb
SN
279 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p, rs->unit_base);
280 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p, rs->unit_base);
281 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p, rs->unit_base);
dbe1125e 282
73798eb2 283 log_info("%s: io=%s, aggrb=%s/s, minb=%s/s, maxb=%s/s,"
771e58be 284 " mint=%llumsec, maxt=%llumsec\n",
42da5c8b 285 rs->unified_rw_rep ? " MIXED" : str[i],
4e0a8fa2
JA
286 p1, p2, p3, p4,
287 (unsigned long long) rs->min_run[i],
288 (unsigned long long) rs->max_run[i]);
dbe1125e
JA
289
290 free(p1);
291 free(p2);
292 free(p3);
293 free(p4);
294 }
3c39a379
JA
295}
296
2e33101f 297void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist)
2270890c
JA
298{
299 int i;
300
301 /*
302 * Do depth distribution calculations
303 */
304 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
838bc709
JA
305 if (total) {
306 io_u_dist[i] = (double) map[i] / (double) total;
307 io_u_dist[i] *= 100.0;
308 if (io_u_dist[i] < 0.1 && map[i])
309 io_u_dist[i] = 0.1;
310 } else
311 io_u_dist[i] = 0.0;
2270890c
JA
312 }
313}
314
04a0feae
JA
315static void stat_calc_lat(struct thread_stat *ts, double *dst,
316 unsigned int *src, int nr)
2270890c 317{
d79db122 318 unsigned long total = ddir_rw_sum(ts->total_io_u);
2270890c
JA
319 int i;
320
321 /*
322 * Do latency distribution calculations
323 */
04a0feae 324 for (i = 0; i < nr; i++) {
838bc709
JA
325 if (total) {
326 dst[i] = (double) src[i] / (double) total;
327 dst[i] *= 100.0;
328 if (dst[i] < 0.01 && src[i])
329 dst[i] = 0.01;
330 } else
331 dst[i] = 0.0;
2270890c
JA
332 }
333}
334
e5bd1347 335void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
336{
337 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
338}
339
e5bd1347 340void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
341{
342 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
343}
344
b29ad562
JA
345static void display_lat(const char *name, unsigned long min, unsigned long max,
346 double mean, double dev)
ea2accc5 347{
b29ad562
JA
348 const char *base = "(usec)";
349 char *minp, *maxp;
ea2accc5 350
b29ad562
JA
351 if (!usec_to_msec(&min, &max, &mean, &dev))
352 base = "(msec)";
353
22f80458
JA
354 minp = num2str(min, 6, 1, 0, 0);
355 maxp = num2str(max, 6, 1, 0, 0);
b29ad562
JA
356
357 log_info(" %s %s: min=%s, max=%s, avg=%5.02f,"
358 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
359
360 free(minp);
361 free(maxp);
ea2accc5
JA
362}
363
756867bd 364static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
3c39a379
JA
365 int ddir)
366{
42da5c8b 367 const char *str[] = { "read ", "write", "trim" };
8879fd15 368 unsigned long min, max, runt;
b3605062 369 unsigned long long bw, iops;
3c39a379 370 double mean, dev;
b3605062 371 char *io_p, *bw_p, *iops_p;
90fef2d1 372 int i2p;
3c39a379 373
ff58fced
JA
374 assert(ddir_rw(ddir));
375
756867bd 376 if (!ts->runtime[ddir])
3c39a379
JA
377 return;
378
90fef2d1 379 i2p = is_power_of_2(rs->kb_base);
8879fd15
JA
380 runt = ts->runtime[ddir];
381
382 bw = (1000 * ts->io_bytes[ddir]) / runt;
73798eb2 383 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p, 8);
ad705bcb 384 bw_p = num2str(bw, 6, 1, i2p, ts->unit_base);
8879fd15 385
0aacc50c 386 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
73798eb2 387 iops_p = num2str(iops, 6, 1, 0, 0);
dbe1125e 388
73798eb2 389 log_info(" %s: io=%s, bw=%s/s, iops=%s, runt=%6llumsec\n",
42da5c8b 390 rs->unified_rw_rep ? "mixed" : str[ddir],
4e0a8fa2
JA
391 io_p, bw_p, iops_p,
392 (unsigned long long) ts->runtime[ddir]);
dbe1125e
JA
393
394 free(io_p);
395 free(bw_p);
b3605062 396 free(iops_p);
3c39a379 397
b29ad562
JA
398 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
399 display_lat("slat", min, max, mean, dev);
400 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
401 display_lat("clat", min, max, mean, dev);
402 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
403 display_lat(" lat", min, max, mean, dev);
02af0988 404
83349190
YH
405 if (ts->clat_percentiles) {
406 show_clat_percentiles(ts->io_u_plat[ddir],
407 ts->clat_stat[ddir].samples,
435d195a
VKF
408 ts->percentile_list,
409 ts->percentile_precision);
83349190 410 }
079ad09b 411 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
142c7f2d 412 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
d686990a
SN
413 const char *bw_str = (rs->unit_base == 1 ? "Kbit" : "KB");
414
415 if (rs->unit_base == 1) {
416 min *= 8.0;
417 max *= 8.0;
418 mean *= 8.0;
419 dev *= 8.0;
420 }
3c39a379 421
2f2c6924 422 if (rs->agg[ddir]) {
19d3e967
JA
423 p_of_agg = mean * 100 / (double) rs->agg[ddir];
424 if (p_of_agg > 100.0)
425 p_of_agg = 100.0;
426 }
b7017e32 427
142c7f2d
SN
428 if (mean > fkb_base * fkb_base) {
429 min /= fkb_base;
430 max /= fkb_base;
431 mean /= fkb_base;
432 dev /= fkb_base;
d686990a 433 bw_str = (rs->unit_base == 1 ? "Mbit" : "MB");
b7017e32
JA
434 }
435
d686990a 436 log_info(" bw (%-4s/s): min=%5lu, max=%5lu, per=%3.2f%%,"
b7017e32
JA
437 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
438 p_of_agg, mean, dev);
3c39a379
JA
439 }
440}
441
7e1773ba
JA
442static int show_lat(double *io_u_lat, int nr, const char **ranges,
443 const char *msg)
04a0feae 444{
7e1773ba 445 int new_line = 1, i, line = 0, shown = 0;
04a0feae
JA
446
447 for (i = 0; i < nr; i++) {
448 if (io_u_lat[i] <= 0.0)
449 continue;
7e1773ba 450 shown = 1;
04a0feae 451 if (new_line) {
4539ed73
JA
452 if (line)
453 log_info("\n");
7e1773ba 454 log_info(" lat (%s) : ", msg);
04a0feae
JA
455 new_line = 0;
456 line = 0;
457 }
458 if (line)
459 log_info(", ");
460 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
461 line++;
462 if (line == 5)
463 new_line = 1;
464 }
7e1773ba
JA
465
466 if (shown)
467 log_info("\n");
468
469 return shown;
04a0feae
JA
470}
471
472static void show_lat_u(double *io_u_lat_u)
473{
474 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
475 "250=", "500=", "750=", "1000=", };
476
477 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
478}
479
480static void show_lat_m(double *io_u_lat_m)
481{
482 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
483 "250=", "500=", "750=", "1000=", "2000=",
484 ">=2000=", };
485
486 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
487}
488
c551f65a 489static void show_latencies(struct thread_stat *ts)
04a0feae 490{
c551f65a
JA
491 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
492 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
493
5a18988e
JA
494 stat_calc_lat_u(ts, io_u_lat_u);
495 stat_calc_lat_m(ts, io_u_lat_m);
496
04a0feae
JA
497 show_lat_u(io_u_lat_u);
498 show_lat_m(io_u_lat_m);
04a0feae
JA
499}
500
66347cfa
DE
501static int block_state_category(int block_state)
502{
503 switch (block_state) {
504 case BLOCK_STATE_UNINIT:
505 return 0;
506 case BLOCK_STATE_TRIMMED:
507 case BLOCK_STATE_WRITTEN:
508 return 1;
509 case BLOCK_STATE_WRITE_FAILURE:
510 case BLOCK_STATE_TRIM_FAILURE:
511 return 2;
512 default:
081c2dc3 513 /* Silence compile warning on some BSDs and have a return */
66347cfa 514 assert(0);
07ff5841 515 return -1;
66347cfa
DE
516 }
517}
518
519static int compare_block_infos(const void *bs1, const void *bs2)
520{
521 uint32_t block1 = *(uint32_t *)bs1;
522 uint32_t block2 = *(uint32_t *)bs2;
523 int state1 = BLOCK_INFO_STATE(block1);
524 int state2 = BLOCK_INFO_STATE(block2);
525 int bscat1 = block_state_category(state1);
526 int bscat2 = block_state_category(state2);
527 int cycles1 = BLOCK_INFO_TRIMS(block1);
528 int cycles2 = BLOCK_INFO_TRIMS(block2);
529
530 if (bscat1 < bscat2)
531 return -1;
532 if (bscat1 > bscat2)
533 return 1;
534
535 if (cycles1 < cycles2)
536 return -1;
537 if (cycles1 > cycles2)
538 return 1;
539
540 if (state1 < state2)
541 return -1;
542 if (state1 > state2)
543 return 1;
544
545 assert(block1 == block2);
546 return 0;
547}
548
549static int calc_block_percentiles(int nr_block_infos, uint32_t *block_infos,
550 fio_fp64_t *plist, unsigned int **percentiles,
551 unsigned int *types)
552{
553 int len = 0;
554 int i, nr_uninit;
555
556 qsort(block_infos, nr_block_infos, sizeof(uint32_t), compare_block_infos);
557
558 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
559 len++;
560
561 if (!len)
562 return 0;
563
564 /*
565 * Sort the percentile list. Note that it may already be sorted if
566 * we are using the default values, but since it's a short list this
567 * isn't a worry. Also note that this does not work for NaN values.
568 */
569 if (len > 1)
570 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
571
572 nr_uninit = 0;
573 /* Start only after the uninit entries end */
574 for (nr_uninit = 0;
575 nr_uninit < nr_block_infos
576 && BLOCK_INFO_STATE(block_infos[nr_uninit]) == BLOCK_STATE_UNINIT;
577 nr_uninit ++)
578 ;
579
580 if (nr_uninit == nr_block_infos)
581 return 0;
582
583 *percentiles = calloc(len, sizeof(**percentiles));
584
585 for (i = 0; i < len; i++) {
586 int idx = (plist[i].u.f * (nr_block_infos - nr_uninit) / 100)
587 + nr_uninit;
588 (*percentiles)[i] = BLOCK_INFO_TRIMS(block_infos[idx]);
589 }
590
591 memset(types, 0, sizeof(*types) * BLOCK_STATE_COUNT);
592 for (i = 0; i < nr_block_infos; i++)
593 types[BLOCK_INFO_STATE(block_infos[i])]++;
594
595 return len;
596}
597
598static const char *block_state_names[] = {
599 [BLOCK_STATE_UNINIT] = "unwritten",
600 [BLOCK_STATE_TRIMMED] = "trimmed",
601 [BLOCK_STATE_WRITTEN] = "written",
602 [BLOCK_STATE_TRIM_FAILURE] = "trim failure",
603 [BLOCK_STATE_WRITE_FAILURE] = "write failure",
604};
605
606static void show_block_infos(int nr_block_infos, uint32_t *block_infos,
607 fio_fp64_t *plist)
608{
609 int len, pos, i;
610 unsigned int *percentiles = NULL;
611 unsigned int block_state_counts[BLOCK_STATE_COUNT];
612
613 len = calc_block_percentiles(nr_block_infos, block_infos, plist,
614 &percentiles, block_state_counts);
615
616 log_info(" block lifetime percentiles :\n |");
617 pos = 0;
618 for (i = 0; i < len; i++) {
619 uint32_t block_info = percentiles[i];
620#define LINE_LENGTH 75
621 char str[LINE_LENGTH];
622 int strln = snprintf(str, LINE_LENGTH, " %3.2fth=%u%c",
623 plist[i].u.f, block_info,
624 i == len - 1 ? '\n' : ',');
625 assert(strln < LINE_LENGTH);
626 if (pos + strln > LINE_LENGTH) {
627 pos = 0;
628 log_info("\n |");
629 }
630 log_info("%s", str);
631 pos += strln;
632#undef LINE_LENGTH
633 }
634 if (percentiles)
635 free(percentiles);
636
637 log_info(" states :");
638 for (i = 0; i < BLOCK_STATE_COUNT; i++)
639 log_info(" %s=%u%c",
640 block_state_names[i], block_state_counts[i],
641 i == BLOCK_STATE_COUNT - 1 ? '\n' : ',');
642}
643
10aa136b
JA
644static void show_thread_status_normal(struct thread_stat *ts,
645 struct group_run_stats *rs)
3c39a379
JA
646{
647 double usr_cpu, sys_cpu;
69008999 648 unsigned long runtime;
71619dc2 649 double io_u_dist[FIO_IO_U_MAP_NR];
57a64324 650 time_t time_p;
35326842 651 char time_buf[32];
3c39a379 652
9966af7b 653 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u))
3c39a379
JA
654 return;
655
57a64324 656 time(&time_p);
45054cbe 657 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
57a64324 658
5ec10eaa 659 if (!ts->error) {
57a64324 660 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
5ec10eaa 661 ts->name, ts->groupid, ts->members,
57a64324 662 ts->error, (int) ts->pid, time_buf);
5ec10eaa 663 } else {
57a64324 664 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
5ec10eaa 665 ts->name, ts->groupid, ts->members,
57a64324
JA
666 ts->error, ts->verror, (int) ts->pid,
667 time_buf);
5ec10eaa 668 }
3c39a379 669
259e47de 670 if (strlen(ts->description))
6d86144d 671 log_info(" Description : [%s]\n", ts->description);
7bdce1bd 672
756867bd
JA
673 if (ts->io_bytes[DDIR_READ])
674 show_ddir_status(rs, ts, DDIR_READ);
675 if (ts->io_bytes[DDIR_WRITE])
676 show_ddir_status(rs, ts, DDIR_WRITE);
6eaf09d6
SL
677 if (ts->io_bytes[DDIR_TRIM])
678 show_ddir_status(rs, ts, DDIR_TRIM);
3c39a379 679
c551f65a 680 show_latencies(ts);
7e1773ba 681
756867bd 682 runtime = ts->total_run_time;
69008999 683 if (runtime) {
1e97cce9 684 double runt = (double) runtime;
3c39a379 685
756867bd
JA
686 usr_cpu = (double) ts->usr_time * 100 / runt;
687 sys_cpu = (double) ts->sys_time * 100 / runt;
3c39a379
JA
688 } else {
689 usr_cpu = 0;
690 sys_cpu = 0;
691 }
692
4e0a8fa2
JA
693 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%llu,"
694 " majf=%llu, minf=%llu\n", usr_cpu, sys_cpu,
695 (unsigned long long) ts->ctx,
696 (unsigned long long) ts->majf,
697 (unsigned long long) ts->minf);
71619dc2 698
d79db122 699 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
5ec10eaa
JA
700 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
701 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
702 io_u_dist[1], io_u_dist[2],
703 io_u_dist[3], io_u_dist[4],
704 io_u_dist[5], io_u_dist[6]);
838bc709
JA
705
706 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
707 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
708 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
709 io_u_dist[1], io_u_dist[2],
710 io_u_dist[3], io_u_dist[4],
711 io_u_dist[5], io_u_dist[6]);
712 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
713 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
714 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
715 io_u_dist[1], io_u_dist[2],
716 io_u_dist[3], io_u_dist[4],
717 io_u_dist[5], io_u_dist[6]);
4e0a8fa2 718 log_info(" issued : total=r=%llu/w=%llu/d=%llu,"
3bcb9d94
JA
719 " short=r=%llu/w=%llu/d=%llu,"
720 " drop=r=%llu/w=%llu/d=%llu\n",
4e0a8fa2
JA
721 (unsigned long long) ts->total_io_u[0],
722 (unsigned long long) ts->total_io_u[1],
723 (unsigned long long) ts->total_io_u[2],
724 (unsigned long long) ts->short_io_u[0],
725 (unsigned long long) ts->short_io_u[1],
3bcb9d94
JA
726 (unsigned long long) ts->short_io_u[2],
727 (unsigned long long) ts->drop_io_u[0],
728 (unsigned long long) ts->drop_io_u[1],
729 (unsigned long long) ts->drop_io_u[2]);
f2bba182 730 if (ts->continue_on_error) {
e9d806fa 731 log_info(" errors : total=%llu, first_error=%d/<%s>\n",
4e0a8fa2 732 (unsigned long long)ts->total_err_count,
1ec99eea
JA
733 ts->first_error,
734 strerror(ts->first_error));
f2bba182 735 }
3e260a46
JA
736 if (ts->latency_depth) {
737 log_info(" latency : target=%llu, window=%llu, percentile=%.2f%%, depth=%u\n",
738 (unsigned long long)ts->latency_target,
739 (unsigned long long)ts->latency_window,
740 ts->latency_percentile.u.f,
741 ts->latency_depth);
742 }
66347cfa
DE
743
744 if (ts->nr_block_infos)
745 show_block_infos(ts->nr_block_infos, ts->block_infos,
746 ts->percentile_list);
3c39a379
JA
747}
748
756867bd 749static void show_ddir_status_terse(struct thread_stat *ts,
c6ae0a5b
JA
750 struct group_run_stats *rs, int ddir)
751{
752 unsigned long min, max;
312b4af2 753 unsigned long long bw, iops;
1db92cb6 754 unsigned int *ovals = NULL;
c6ae0a5b 755 double mean, dev;
1db92cb6
JA
756 unsigned int len, minv, maxv;
757 int i;
c6ae0a5b 758
ff58fced
JA
759 assert(ddir_rw(ddir));
760
312b4af2
JA
761 iops = bw = 0;
762 if (ts->runtime[ddir]) {
763 uint64_t runt = ts->runtime[ddir];
764
033bbb51 765 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
312b4af2
JA
766 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
767 }
c6ae0a5b 768
4e0a8fa2
JA
769 log_info(";%llu;%llu;%llu;%llu",
770 (unsigned long long) ts->io_bytes[ddir] >> 10, bw, iops,
771 (unsigned long long) ts->runtime[ddir]);
c6ae0a5b 772
079ad09b 773 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
6d86144d 774 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
c6ae0a5b 775 else
6d86144d 776 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
c6ae0a5b 777
079ad09b 778 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
6d86144d 779 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
c6ae0a5b 780 else
6d86144d 781 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
c6ae0a5b 782
1db92cb6
JA
783 if (ts->clat_percentiles) {
784 len = calc_clat_percentiles(ts->io_u_plat[ddir],
785 ts->clat_stat[ddir].samples,
786 ts->percentile_list, &ovals, &maxv,
787 &minv);
788 } else
789 len = 0;
790
791 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
792 if (i >= len) {
793 log_info(";0%%=0");
794 continue;
795 }
435d195a 796 log_info(";%f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
1db92cb6 797 }
2341a37a
K
798
799 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
800 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
801 else
802 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
803
1db92cb6
JA
804 if (ovals)
805 free(ovals);
806
079ad09b 807 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
19d3e967
JA
808 double p_of_agg = 100.0;
809
810 if (rs->agg[ddir]) {
811 p_of_agg = mean * 100 / (double) rs->agg[ddir];
812 if (p_of_agg > 100.0)
813 p_of_agg = 100.0;
814 }
c6ae0a5b 815
6d86144d 816 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
c6ae0a5b 817 } else
6d86144d 818 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
c6ae0a5b
JA
819}
820
cc372b17
SL
821static void add_ddir_status_json(struct thread_stat *ts,
822 struct group_run_stats *rs, int ddir, struct json_object *parent)
823{
824 unsigned long min, max;
9f68fe3a 825 unsigned long long bw;
cc372b17 826 unsigned int *ovals = NULL;
9f68fe3a 827 double mean, dev, iops;
cc372b17
SL
828 unsigned int len, minv, maxv;
829 int i;
830 const char *ddirname[] = {"read", "write", "trim"};
831 struct json_object *dir_object, *tmp_object, *percentile_object;
832 char buf[120];
833 double p_of_agg = 100.0;
834
835 assert(ddir_rw(ddir));
836
771e58be
JA
837 if (ts->unified_rw_rep && ddir != DDIR_READ)
838 return;
839
cc372b17 840 dir_object = json_create_object();
771e58be
JA
841 json_object_add_value_object(parent,
842 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
cc372b17 843
9f68fe3a
BE
844 bw = 0;
845 iops = 0.0;
cc372b17
SL
846 if (ts->runtime[ddir]) {
847 uint64_t runt = ts->runtime[ddir];
848
849 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
9f68fe3a 850 iops = (1000.0 * (uint64_t) ts->total_io_u[ddir]) / runt;
cc372b17
SL
851 }
852
853 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir] >> 10);
854 json_object_add_value_int(dir_object, "bw", bw);
9f68fe3a 855 json_object_add_value_float(dir_object, "iops", iops);
cc372b17 856 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
9966af7b
JA
857 json_object_add_value_int(dir_object, "total_ios", ts->total_io_u[ddir]);
858 json_object_add_value_int(dir_object, "short_ios", ts->short_io_u[ddir]);
859 json_object_add_value_int(dir_object, "drop_ios", ts->drop_io_u[ddir]);
cc372b17
SL
860
861 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
862 min = max = 0;
863 mean = dev = 0.0;
864 }
865 tmp_object = json_create_object();
866 json_object_add_value_object(dir_object, "slat", tmp_object);
867 json_object_add_value_int(tmp_object, "min", min);
868 json_object_add_value_int(tmp_object, "max", max);
869 json_object_add_value_float(tmp_object, "mean", mean);
870 json_object_add_value_float(tmp_object, "stddev", dev);
871
872 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
873 min = max = 0;
874 mean = dev = 0.0;
875 }
876 tmp_object = json_create_object();
877 json_object_add_value_object(dir_object, "clat", tmp_object);
878 json_object_add_value_int(tmp_object, "min", min);
879 json_object_add_value_int(tmp_object, "max", max);
880 json_object_add_value_float(tmp_object, "mean", mean);
881 json_object_add_value_float(tmp_object, "stddev", dev);
882
883 if (ts->clat_percentiles) {
884 len = calc_clat_percentiles(ts->io_u_plat[ddir],
885 ts->clat_stat[ddir].samples,
886 ts->percentile_list, &ovals, &maxv,
887 &minv);
888 } else
889 len = 0;
890
891 percentile_object = json_create_object();
892 json_object_add_value_object(tmp_object, "percentile", percentile_object);
893 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
894 if (i >= len) {
895 json_object_add_value_int(percentile_object, "0.00", 0);
896 continue;
897 }
435d195a 898 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
cc372b17
SL
899 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
900 }
901
902 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
903 min = max = 0;
904 mean = dev = 0.0;
905 }
906 tmp_object = json_create_object();
907 json_object_add_value_object(dir_object, "lat", tmp_object);
908 json_object_add_value_int(tmp_object, "min", min);
909 json_object_add_value_int(tmp_object, "max", max);
910 json_object_add_value_float(tmp_object, "mean", mean);
911 json_object_add_value_float(tmp_object, "stddev", dev);
912 if (ovals)
913 free(ovals);
914
b9e1b491 915 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
cc372b17
SL
916 if (rs->agg[ddir]) {
917 p_of_agg = mean * 100 / (double) rs->agg[ddir];
918 if (p_of_agg > 100.0)
919 p_of_agg = 100.0;
920 }
921 } else {
922 min = max = 0;
923 p_of_agg = mean = dev = 0.0;
924 }
925 json_object_add_value_int(dir_object, "bw_min", min);
926 json_object_add_value_int(dir_object, "bw_max", max);
a806bf2e 927 json_object_add_value_float(dir_object, "bw_agg", p_of_agg);
cc372b17
SL
928 json_object_add_value_float(dir_object, "bw_mean", mean);
929 json_object_add_value_float(dir_object, "bw_dev", dev);
930}
931
4d658652 932static void show_thread_status_terse_v2(struct thread_stat *ts,
3c3ed070 933 struct group_run_stats *rs)
4d658652
JA
934{
935 double io_u_dist[FIO_IO_U_MAP_NR];
936 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
937 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
938 double usr_cpu, sys_cpu;
939 int i;
940
941 /* General Info */
942 log_info("2;%s;%d;%d", ts->name, ts->groupid, ts->error);
943 /* Log Read Status */
6eaf09d6 944 show_ddir_status_terse(ts, rs, DDIR_READ);
4d658652 945 /* Log Write Status */
6eaf09d6
SL
946 show_ddir_status_terse(ts, rs, DDIR_WRITE);
947 /* Log Trim Status */
948 show_ddir_status_terse(ts, rs, DDIR_TRIM);
4d658652
JA
949
950 /* CPU Usage */
951 if (ts->total_run_time) {
952 double runt = (double) ts->total_run_time;
953
954 usr_cpu = (double) ts->usr_time * 100 / runt;
955 sys_cpu = (double) ts->sys_time * 100 / runt;
956 } else {
957 usr_cpu = 0;
958 sys_cpu = 0;
959 }
960
4e0a8fa2
JA
961 log_info(";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
962 (unsigned long long) ts->ctx,
963 (unsigned long long) ts->majf,
964 (unsigned long long) ts->minf);
4d658652
JA
965
966 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 967 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
4d658652
JA
968 stat_calc_lat_u(ts, io_u_lat_u);
969 stat_calc_lat_m(ts, io_u_lat_m);
970
971 /* Only show fixed 7 I/O depth levels*/
972 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
973 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
974 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
975
976 /* Microsecond latency */
977 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
978 log_info(";%3.2f%%", io_u_lat_u[i]);
979 /* Millisecond latency */
980 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
981 log_info(";%3.2f%%", io_u_lat_m[i]);
982 /* Additional output if continue_on_error set - default off*/
983 if (ts->continue_on_error)
4e0a8fa2 984 log_info(";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
4d658652
JA
985 log_info("\n");
986
987 /* Additional output if description is set */
0a3c52f0 988 if (strlen(ts->description))
4d658652
JA
989 log_info(";%s", ts->description);
990
991 log_info("\n");
992}
993
3449ab8c
JA
994static void show_thread_status_terse_v3_v4(struct thread_stat *ts,
995 struct group_run_stats *rs, int ver)
c6ae0a5b 996{
2270890c 997 double io_u_dist[FIO_IO_U_MAP_NR];
04a0feae
JA
998 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
999 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
c6ae0a5b 1000 double usr_cpu, sys_cpu;
04a0feae 1001 int i;
c6ae0a5b 1002
562c2d2f 1003 /* General Info */
f3afa57e 1004 log_info("%d;%s;%s;%d;%d", ver, fio_version_string,
5e726d0a 1005 ts->name, ts->groupid, ts->error);
562c2d2f 1006 /* Log Read Status */
6eaf09d6 1007 show_ddir_status_terse(ts, rs, DDIR_READ);
562c2d2f 1008 /* Log Write Status */
6eaf09d6
SL
1009 show_ddir_status_terse(ts, rs, DDIR_WRITE);
1010 /* Log Trim Status */
3449ab8c
JA
1011 if (ver == 4)
1012 show_ddir_status_terse(ts, rs, DDIR_TRIM);
c6ae0a5b 1013
562c2d2f 1014 /* CPU Usage */
756867bd
JA
1015 if (ts->total_run_time) {
1016 double runt = (double) ts->total_run_time;
c6ae0a5b 1017
756867bd
JA
1018 usr_cpu = (double) ts->usr_time * 100 / runt;
1019 sys_cpu = (double) ts->sys_time * 100 / runt;
c6ae0a5b
JA
1020 } else {
1021 usr_cpu = 0;
1022 sys_cpu = 0;
1023 }
1024
4e0a8fa2
JA
1025 log_info(";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
1026 (unsigned long long) ts->ctx,
1027 (unsigned long long) ts->majf,
1028 (unsigned long long) ts->minf);
2270890c 1029
562c2d2f 1030 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 1031 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
04a0feae
JA
1032 stat_calc_lat_u(ts, io_u_lat_u);
1033 stat_calc_lat_m(ts, io_u_lat_m);
2270890c 1034
562c2d2f 1035 /* Only show fixed 7 I/O depth levels*/
5ec10eaa
JA
1036 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
1037 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
1038 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
2270890c 1039
562c2d2f 1040 /* Microsecond latency */
04a0feae
JA
1041 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
1042 log_info(";%3.2f%%", io_u_lat_u[i]);
562c2d2f 1043 /* Millisecond latency */
04a0feae
JA
1044 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
1045 log_info(";%3.2f%%", io_u_lat_m[i]);
f2f788dd
JA
1046
1047 /* disk util stats, if any */
bf2921f0 1048 show_disk_util(1, NULL);
f2f788dd 1049
562c2d2f 1050 /* Additional output if continue_on_error set - default off*/
f2bba182 1051 if (ts->continue_on_error)
4e0a8fa2 1052 log_info(";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
2270890c 1053
562c2d2f 1054 /* Additional output if description is set */
4b0f2258 1055 if (strlen(ts->description))
6d86144d 1056 log_info(";%s", ts->description);
946e4276
JA
1057
1058 log_info("\n");
756867bd
JA
1059}
1060
cc372b17
SL
1061static struct json_object *show_thread_status_json(struct thread_stat *ts,
1062 struct group_run_stats *rs)
1063{
1064 struct json_object *root, *tmp;
b01af66b 1065 struct jobs_eta *je;
cc372b17
SL
1066 double io_u_dist[FIO_IO_U_MAP_NR];
1067 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1068 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1069 double usr_cpu, sys_cpu;
1070 int i;
b01af66b
CJ
1071 size_t size;
1072
cc372b17
SL
1073
1074 root = json_create_object();
1075 json_object_add_value_string(root, "jobname", ts->name);
1076 json_object_add_value_int(root, "groupid", ts->groupid);
1077 json_object_add_value_int(root, "error", ts->error);
1078
b01af66b
CJ
1079 /* ETA Info */
1080 je = get_jobs_eta(1, &size);
1081 json_object_add_value_int(root, "eta", je->eta_sec);
1082 json_object_add_value_int(root, "elapsed", je->elapsed_sec);
1083
1084
cc372b17
SL
1085 add_ddir_status_json(ts, rs, DDIR_READ, root);
1086 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
f3afa57e 1087 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
cc372b17
SL
1088
1089 /* CPU Usage */
1090 if (ts->total_run_time) {
1091 double runt = (double) ts->total_run_time;
1092
1093 usr_cpu = (double) ts->usr_time * 100 / runt;
1094 sys_cpu = (double) ts->sys_time * 100 / runt;
1095 } else {
1096 usr_cpu = 0;
1097 sys_cpu = 0;
1098 }
1099 json_object_add_value_float(root, "usr_cpu", usr_cpu);
1100 json_object_add_value_float(root, "sys_cpu", sys_cpu);
1101 json_object_add_value_int(root, "ctx", ts->ctx);
1102 json_object_add_value_int(root, "majf", ts->majf);
1103 json_object_add_value_int(root, "minf", ts->minf);
1104
1105
1106 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 1107 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
cc372b17
SL
1108 stat_calc_lat_u(ts, io_u_lat_u);
1109 stat_calc_lat_m(ts, io_u_lat_m);
1110
1111 tmp = json_create_object();
1112 json_object_add_value_object(root, "iodepth_level", tmp);
1113 /* Only show fixed 7 I/O depth levels*/
1114 for (i = 0; i < 7; i++) {
1115 char name[20];
1116 if (i < 6)
98ffb8f3 1117 snprintf(name, 20, "%d", 1 << i);
cc372b17 1118 else
98ffb8f3 1119 snprintf(name, 20, ">=%d", 1 << i);
cc372b17
SL
1120 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1121 }
1122
1123 tmp = json_create_object();
1124 json_object_add_value_object(root, "latency_us", tmp);
1125 /* Microsecond latency */
1126 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1127 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1128 "250", "500", "750", "1000", };
1129 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
1130 }
1131 /* Millisecond latency */
1132 tmp = json_create_object();
1133 json_object_add_value_object(root, "latency_ms", tmp);
1134 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
1135 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1136 "250", "500", "750", "1000", "2000",
1137 ">=2000", };
1138 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
1139 }
1140
1141 /* Additional output if continue_on_error set - default off*/
1142 if (ts->continue_on_error) {
1143 json_object_add_value_int(root, "total_err", ts->total_err_count);
952b05e0 1144 json_object_add_value_int(root, "first_error", ts->first_error);
cc372b17
SL
1145 }
1146
3e260a46
JA
1147 if (ts->latency_depth) {
1148 json_object_add_value_int(root, "latency_depth", ts->latency_depth);
1149 json_object_add_value_int(root, "latency_target", ts->latency_target);
1150 json_object_add_value_float(root, "latency_percentile", ts->latency_percentile.u.f);
1151 json_object_add_value_int(root, "latency_window", ts->latency_window);
1152 }
1153
cc372b17
SL
1154 /* Additional output if description is set */
1155 if (strlen(ts->description))
1156 json_object_add_value_string(root, "desc", ts->description);
1157
66347cfa
DE
1158 if (ts->nr_block_infos) {
1159 /* Block error histogram and types */
1160 int len;
1161 unsigned int *percentiles = NULL;
1162 unsigned int block_state_counts[BLOCK_STATE_COUNT];
1163
1164 len = calc_block_percentiles(ts->nr_block_infos, ts->block_infos,
1165 ts->percentile_list,
1166 &percentiles, block_state_counts);
1167
1168 if (len) {
1169 struct json_object *block, *percentile_object, *states;
1170 int state, i;
1171 block = json_create_object();
1172 json_object_add_value_object(root, "block", block);
1173
1174 percentile_object = json_create_object();
1175 json_object_add_value_object(block, "percentiles",
1176 percentile_object);
1177 for (i = 0; i < len; i++) {
1178 char buf[20];
1179 snprintf(buf, sizeof(buf), "%f",
1180 ts->percentile_list[i].u.f);
1181 json_object_add_value_int(percentile_object,
1182 (const char *)buf,
1183 percentiles[i]);
1184 }
1185
1186 states = json_create_object();
1187 json_object_add_value_object(block, "states", states);
1188 for (state = 0; state < BLOCK_STATE_COUNT; state++) {
1189 json_object_add_value_int(states,
1190 block_state_names[state],
1191 block_state_counts[state]);
1192 }
1193 free(percentiles);
1194 }
1195 }
1196
cc372b17
SL
1197 return root;
1198}
1199
4d658652
JA
1200static void show_thread_status_terse(struct thread_stat *ts,
1201 struct group_run_stats *rs)
1202{
1203 if (terse_version == 2)
1204 show_thread_status_terse_v2(ts, rs);
3449ab8c
JA
1205 else if (terse_version == 3 || terse_version == 4)
1206 show_thread_status_terse_v3_v4(ts, rs, terse_version);
4d658652
JA
1207 else
1208 log_err("fio: bad terse version!? %d\n", terse_version);
1209}
1210
952b05e0
CF
1211struct json_object *show_thread_status(struct thread_stat *ts,
1212 struct group_run_stats *rs)
1213{
1214 if (output_format == FIO_OUTPUT_TERSE)
1215 show_thread_status_terse(ts, rs);
1216 else if (output_format == FIO_OUTPUT_JSON)
10aa136b 1217 return show_thread_status_json(ts, rs);
952b05e0
CF
1218 else
1219 show_thread_status_normal(ts, rs);
1220 return NULL;
1221}
1222
197574e4 1223static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
756867bd
JA
1224{
1225 double mean, S;
1226
e09231c2
ZL
1227 if (src->samples == 0)
1228 return;
1229
756867bd
JA
1230 dst->min_val = min(dst->min_val, src->min_val);
1231 dst->max_val = max(dst->max_val, src->max_val);
756867bd
JA
1232
1233 /*
cdcac5cf
YH
1234 * Compute new mean and S after the merge
1235 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1236 * #Parallel_algorithm>
756867bd
JA
1237 */
1238 if (nr == 1) {
802ad4a8
JA
1239 mean = src->mean.u.f;
1240 S = src->S.u.f;
756867bd 1241 } else {
802ad4a8 1242 double delta = src->mean.u.f - dst->mean.u.f;
cdcac5cf 1243
802ad4a8
JA
1244 mean = ((src->mean.u.f * src->samples) +
1245 (dst->mean.u.f * dst->samples)) /
cdcac5cf
YH
1246 (dst->samples + src->samples);
1247
802ad4a8 1248 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
cdcac5cf
YH
1249 (dst->samples * src->samples) /
1250 (dst->samples + src->samples);
756867bd
JA
1251 }
1252
cdcac5cf 1253 dst->samples += src->samples;
802ad4a8
JA
1254 dst->mean.u.f = mean;
1255 dst->S.u.f = S;
756867bd
JA
1256}
1257
37f0c1ae
JA
1258void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1259{
1260 int i;
1261
6eaf09d6 1262 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
37f0c1ae
JA
1263 if (dst->max_run[i] < src->max_run[i])
1264 dst->max_run[i] = src->max_run[i];
1265 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1266 dst->min_run[i] = src->min_run[i];
1267 if (dst->max_bw[i] < src->max_bw[i])
1268 dst->max_bw[i] = src->max_bw[i];
1269 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1270 dst->min_bw[i] = src->min_bw[i];
1271
1272 dst->io_kb[i] += src->io_kb[i];
1273 dst->agg[i] += src->agg[i];
1274 }
1275
dbae1bd6
JA
1276 if (!dst->kb_base)
1277 dst->kb_base = src->kb_base;
1278 if (!dst->unit_base)
1279 dst->unit_base = src->unit_base;
37f0c1ae
JA
1280}
1281
5b9babb7
JA
1282void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
1283{
1284 int l, k;
1285
6eaf09d6 1286 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
771e58be
JA
1287 if (!dst->unified_rw_rep) {
1288 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
1289 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
1290 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
1291 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
1292
1293 dst->io_bytes[l] += src->io_bytes[l];
1294
1295 if (dst->runtime[l] < src->runtime[l])
1296 dst->runtime[l] = src->runtime[l];
1297 } else {
1298 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], nr);
1299 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], nr);
1300 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], nr);
1301 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], nr);
1302
1303 dst->io_bytes[0] += src->io_bytes[l];
1304
1305 if (dst->runtime[0] < src->runtime[l])
1306 dst->runtime[0] = src->runtime[l];
1307 }
5b9babb7
JA
1308 }
1309
1310 dst->usr_time += src->usr_time;
1311 dst->sys_time += src->sys_time;
1312 dst->ctx += src->ctx;
1313 dst->majf += src->majf;
1314 dst->minf += src->minf;
1315
1316 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1317 dst->io_u_map[k] += src->io_u_map[k];
1318 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1319 dst->io_u_submit[k] += src->io_u_submit[k];
1320 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1321 dst->io_u_complete[k] += src->io_u_complete[k];
1322 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1323 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1324 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1325 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1326
6eaf09d6 1327 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
771e58be
JA
1328 if (!dst->unified_rw_rep) {
1329 dst->total_io_u[k] += src->total_io_u[k];
1330 dst->short_io_u[k] += src->short_io_u[k];
3bcb9d94 1331 dst->drop_io_u[k] += src->drop_io_u[k];
771e58be
JA
1332 } else {
1333 dst->total_io_u[0] += src->total_io_u[k];
1334 dst->short_io_u[0] += src->short_io_u[k];
3bcb9d94 1335 dst->drop_io_u[0] += src->drop_io_u[k];
771e58be 1336 }
5b9babb7
JA
1337 }
1338
6eaf09d6 1339 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
5b9babb7 1340 int m;
771e58be
JA
1341
1342 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1343 if (!dst->unified_rw_rep)
1344 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1345 else
1346 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1347 }
5b9babb7
JA
1348 }
1349
1350 dst->total_run_time += src->total_run_time;
1351 dst->total_submit += src->total_submit;
1352 dst->total_complete += src->total_complete;
1353}
1354
37f0c1ae
JA
1355void init_group_run_stat(struct group_run_stats *gs)
1356{
6eaf09d6 1357 int i;
37f0c1ae 1358 memset(gs, 0, sizeof(*gs));
6eaf09d6
SL
1359
1360 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1361 gs->min_bw[i] = gs->min_run[i] = ~0UL;
37f0c1ae
JA
1362}
1363
1364void init_thread_stat(struct thread_stat *ts)
1365{
1366 int j;
1367
1368 memset(ts, 0, sizeof(*ts));
1369
6eaf09d6 1370 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
37f0c1ae
JA
1371 ts->lat_stat[j].min_val = -1UL;
1372 ts->clat_stat[j].min_val = -1UL;
1373 ts->slat_stat[j].min_val = -1UL;
1374 ts->bw_stat[j].min_val = -1UL;
1375 }
1376 ts->groupid = -1;
1377}
1378
83f7b64e 1379void __show_run_stats(void)
3c39a379
JA
1380{
1381 struct group_run_stats *runstats, *rs;
1382 struct thread_data *td;
756867bd 1383 struct thread_stat *threadstats, *ts;
4da24b69 1384 int i, j, k, nr_ts, last_ts, idx;
90fef2d1 1385 int kb_base_warned = 0;
ad705bcb 1386 int unit_base_warned = 0;
cc372b17
SL
1387 struct json_object *root = NULL;
1388 struct json_array *array = NULL;
3c39a379
JA
1389 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1390
37f0c1ae
JA
1391 for (i = 0; i < groupid + 1; i++)
1392 init_group_run_stat(&runstats[i]);
3c39a379 1393
756867bd
JA
1394 /*
1395 * find out how many threads stats we need. if group reporting isn't
1396 * enabled, it's one-per-td.
1397 */
1398 nr_ts = 0;
1399 last_ts = -1;
1400 for_each_td(td, i) {
2dc1bbeb 1401 if (!td->o.group_reporting) {
756867bd
JA
1402 nr_ts++;
1403 continue;
1404 }
1405 if (last_ts == td->groupid)
1406 continue;
1407
1408 last_ts = td->groupid;
1409 nr_ts++;
1410 }
1411
1412 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
1413
37f0c1ae
JA
1414 for (i = 0; i < nr_ts; i++)
1415 init_thread_stat(&threadstats[i]);
756867bd
JA
1416
1417 j = 0;
1418 last_ts = -1;
197574e4 1419 idx = 0;
34572e28 1420 for_each_td(td, i) {
2dc1bbeb
JA
1421 if (idx && (!td->o.group_reporting ||
1422 (td->o.group_reporting && last_ts != td->groupid))) {
7abd0e3a
JA
1423 idx = 0;
1424 j++;
1425 }
1426
1427 last_ts = td->groupid;
1428
756867bd
JA
1429 ts = &threadstats[j];
1430
83349190 1431 ts->clat_percentiles = td->o.clat_percentiles;
435d195a 1432 ts->percentile_precision = td->o.percentile_precision;
fd112d34 1433 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
83349190 1434
197574e4 1435 idx++;
6586ee89 1436 ts->members++;
756867bd 1437
7abd0e3a 1438 if (ts->groupid == -1) {
2dc84ba7
JA
1439 /*
1440 * These are per-group shared already
1441 */
4e59d0f3 1442 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE - 1);
a64e88da
JA
1443 if (td->o.description)
1444 strncpy(ts->description, td->o.description,
4e59d0f3 1445 FIO_JOBDESC_SIZE - 1);
a64e88da 1446 else
4e59d0f3 1447 memset(ts->description, 0, FIO_JOBDESC_SIZE);
a64e88da 1448
2f122b13
JA
1449 /*
1450 * If multiple entries in this group, this is
1451 * the first member.
1452 */
1453 ts->thread_number = td->thread_number;
756867bd 1454 ts->groupid = td->groupid;
2dc84ba7
JA
1455
1456 /*
1457 * first pid in group, not very useful...
1458 */
756867bd 1459 ts->pid = td->pid;
90fef2d1
JA
1460
1461 ts->kb_base = td->o.kb_base;
ad705bcb 1462 ts->unit_base = td->o.unit_base;
771e58be 1463 ts->unified_rw_rep = td->o.unified_rw_rep;
90fef2d1
JA
1464 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1465 log_info("fio: kb_base differs for jobs in group, using"
1466 " %u as the base\n", ts->kb_base);
1467 kb_base_warned = 1;
ad705bcb
SN
1468 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1469 log_info("fio: unit_base differs for jobs in group, using"
1470 " %u as the base\n", ts->unit_base);
1471 unit_base_warned = 1;
2dc84ba7
JA
1472 }
1473
f2bba182
RR
1474 ts->continue_on_error = td->o.continue_on_error;
1475 ts->total_err_count += td->total_err_count;
1476 ts->first_error = td->first_error;
1477 if (!ts->error) {
1478 if (!td->error && td->o.continue_on_error &&
1479 td->first_error) {
1480 ts->error = td->first_error;
3660ceae
JA
1481 ts->verror[sizeof(ts->verror) - 1] = '\0';
1482 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182
RR
1483 } else if (td->error) {
1484 ts->error = td->error;
3660ceae
JA
1485 ts->verror[sizeof(ts->verror) - 1] = '\0';
1486 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182 1487 }
756867bd
JA
1488 }
1489
3e260a46
JA
1490 ts->latency_depth = td->latency_qd;
1491 ts->latency_target = td->o.latency_target;
1492 ts->latency_percentile = td->o.latency_percentile;
1493 ts->latency_window = td->o.latency_window;
1494
0e4dd95c 1495 ts->nr_block_infos = td->ts.nr_block_infos;
4da24b69
JA
1496 for (k = 0; k < ts->nr_block_infos; k++)
1497 ts->block_infos[k] = td->ts.block_infos[k];
0e4dd95c 1498
5b9babb7 1499 sum_thread_stats(ts, &td->ts, idx);
756867bd
JA
1500 }
1501
1502 for (i = 0; i < nr_ts; i++) {
94370ac4 1503 unsigned long long bw;
3c39a379 1504
756867bd
JA
1505 ts = &threadstats[i];
1506 rs = &runstats[ts->groupid];
90fef2d1 1507 rs->kb_base = ts->kb_base;
ad705bcb 1508 rs->unit_base = ts->unit_base;
771e58be 1509 rs->unified_rw_rep += ts->unified_rw_rep;
3c39a379 1510
6eaf09d6 1511 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
94370ac4
JA
1512 if (!ts->runtime[j])
1513 continue;
1514 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1515 rs->min_run[j] = ts->runtime[j];
1516 if (ts->runtime[j] > rs->max_run[j])
1517 rs->max_run[j] = ts->runtime[j];
1518
1519 bw = 0;
8879fd15 1520 if (ts->runtime[j]) {
c857cfeb
JA
1521 unsigned long runt = ts->runtime[j];
1522 unsigned long long kb;
8879fd15 1523
c857cfeb
JA
1524 kb = ts->io_bytes[j] / rs->kb_base;
1525 bw = kb * 1000 / runt;
8879fd15 1526 }
94370ac4
JA
1527 if (bw < rs->min_bw[j])
1528 rs->min_bw[j] = bw;
1529 if (bw > rs->max_bw[j])
1530 rs->max_bw[j] = bw;
1531
90fef2d1 1532 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
94370ac4 1533 }
3c39a379
JA
1534 }
1535
1536 for (i = 0; i < groupid + 1; i++) {
6eaf09d6
SL
1537 int ddir;
1538
3c39a379
JA
1539 rs = &runstats[i];
1540
6eaf09d6
SL
1541 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1542 if (rs->max_run[ddir])
1543 rs->agg[ddir] = (rs->io_kb[ddir] * 1000) /
1544 rs->max_run[ddir];
1545 }
3c39a379
JA
1546 }
1547
1548 /*
1549 * don't overwrite last signal output
1550 */
f3afa57e 1551 if (output_format == FIO_OUTPUT_NORMAL)
4ceb30d4 1552 log_info("\n");
f3afa57e 1553 else if (output_format == FIO_OUTPUT_JSON) {
35326842 1554 char time_buf[32];
91e53870
SO
1555 time_t time_p;
1556
1557 time(&time_p);
1558 os_ctime_r((const time_t *) &time_p, time_buf,
1559 sizeof(time_buf));
1560 time_buf[strlen(time_buf) - 1] = '\0';
1561
cc372b17
SL
1562 root = json_create_object();
1563 json_object_add_value_string(root, "fio version", fio_version_string);
91e53870
SO
1564 json_object_add_value_int(root, "timestamp", time_p);
1565 json_object_add_value_string(root, "time", time_buf);
cc372b17
SL
1566 array = json_create_array();
1567 json_object_add_value_array(root, "jobs", array);
1568 }
3c39a379 1569
756867bd
JA
1570 for (i = 0; i < nr_ts; i++) {
1571 ts = &threadstats[i];
1572 rs = &runstats[ts->groupid];
3c39a379 1573
a64e88da
JA
1574 if (is_backend)
1575 fio_server_send_ts(ts, rs);
f3afa57e 1576 else if (output_format == FIO_OUTPUT_TERSE)
756867bd 1577 show_thread_status_terse(ts, rs);
f3afa57e
JA
1578 else if (output_format == FIO_OUTPUT_JSON) {
1579 struct json_object *tmp = show_thread_status_json(ts, rs);
1580 json_array_add_value_object(array, tmp);
cc372b17 1581 } else
952b05e0 1582 show_thread_status_normal(ts, rs);
3c39a379 1583 }
f3afa57e 1584 if (output_format == FIO_OUTPUT_JSON) {
cc372b17
SL
1585 /* disk util stats, if any */
1586 show_disk_util(1, root);
1587
f2a2ce0e
HL
1588 show_idle_prof_stats(FIO_OUTPUT_JSON, root);
1589
cc372b17
SL
1590 json_print_object(root);
1591 log_info("\n");
1592 json_free_object(root);
1593 }
3c39a379 1594
72c27ff8
JA
1595 for (i = 0; i < groupid + 1; i++) {
1596 rs = &runstats[i];
3c39a379 1597
72c27ff8 1598 rs->groupid = i;
d09a64a0 1599 if (is_backend)
72c27ff8 1600 fio_server_send_gs(rs);
f3afa57e 1601 else if (output_format == FIO_OUTPUT_NORMAL)
72c27ff8 1602 show_group_stats(rs);
c6ae0a5b 1603 }
eecf272f 1604
72c27ff8
JA
1605 if (is_backend)
1606 fio_server_send_du();
60904003 1607 else if (output_format == FIO_OUTPUT_NORMAL) {
cc372b17 1608 show_disk_util(0, NULL);
60904003
HL
1609 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL);
1610 }
f2a2ce0e 1611
2b8c71b0
CE
1612 if ( !(output_format == FIO_OUTPUT_TERSE) && append_terse_output) {
1613 log_info("\nAdditional Terse Output:\n");
1614
1615 for (i = 0; i < nr_ts; i++) {
1616 ts = &threadstats[i];
1617 rs = &runstats[ts->groupid];
1618 show_thread_status_terse(ts, rs);
1619 }
1620 }
1621
fdd5f15f 1622 log_info_flush();
eecf272f 1623 free(runstats);
756867bd 1624 free(threadstats);
3c39a379
JA
1625}
1626
cef9175e
JA
1627void show_run_stats(void)
1628{
1629 fio_mutex_down(stat_mutex);
1630 __show_run_stats();
1631 fio_mutex_up(stat_mutex);
1632}
1633
5ddc6707 1634void __show_running_run_stats(void)
b852e7cf
JA
1635{
1636 struct thread_data *td;
1637 unsigned long long *rt;
1638 struct timeval tv;
1639 int i;
1640
90811930
JA
1641 fio_mutex_down(stat_mutex);
1642
b852e7cf
JA
1643 rt = malloc(thread_number * sizeof(unsigned long long));
1644 fio_gettime(&tv, NULL);
1645
1646 for_each_td(td, i) {
1647 rt[i] = mtime_since(&td->start, &tv);
1648 if (td_read(td) && td->io_bytes[DDIR_READ])
1649 td->ts.runtime[DDIR_READ] += rt[i];
1650 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1651 td->ts.runtime[DDIR_WRITE] += rt[i];
6eaf09d6
SL
1652 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1653 td->ts.runtime[DDIR_TRIM] += rt[i];
b852e7cf 1654
c97f1ad6 1655 td->update_rusage = 1;
6eaf09d6
SL
1656 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1657 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1658 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
b852e7cf
JA
1659 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
1660 }
1661
c97f1ad6 1662 for_each_td(td, i) {
fda2cfac
JA
1663 if (td->runstate >= TD_EXITED)
1664 continue;
c97f1ad6
JA
1665 if (td->rusage_sem) {
1666 td->update_rusage = 1;
1667 fio_mutex_down(td->rusage_sem);
1668 }
1669 td->update_rusage = 0;
1670 }
1671
cef9175e 1672 __show_run_stats();
b852e7cf
JA
1673
1674 for_each_td(td, i) {
1675 if (td_read(td) && td->io_bytes[DDIR_READ])
1676 td->ts.runtime[DDIR_READ] -= rt[i];
1677 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1678 td->ts.runtime[DDIR_WRITE] -= rt[i];
6eaf09d6
SL
1679 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1680 td->ts.runtime[DDIR_TRIM] -= rt[i];
b852e7cf
JA
1681 }
1682
1683 free(rt);
cef9175e 1684 fio_mutex_up(stat_mutex);
b852e7cf
JA
1685}
1686
06464907
JA
1687static int status_interval_init;
1688static struct timeval status_time;
77d99675 1689static int status_file_disabled;
06464907 1690
dac45f23 1691#define FIO_STATUS_FILE "fio-dump-status"
06464907
JA
1692
1693static int check_status_file(void)
1694{
1695 struct stat sb;
a0bafb7d
BC
1696 const char *temp_dir;
1697 char fio_status_file_path[PATH_MAX];
06464907 1698
77d99675
JA
1699 if (status_file_disabled)
1700 return 0;
1701
a0bafb7d 1702 temp_dir = getenv("TMPDIR");
48b16e27 1703 if (temp_dir == NULL) {
a0bafb7d 1704 temp_dir = getenv("TEMP");
48b16e27
JA
1705 if (temp_dir && strlen(temp_dir) >= PATH_MAX)
1706 temp_dir = NULL;
1707 }
a0bafb7d
BC
1708 if (temp_dir == NULL)
1709 temp_dir = "/tmp";
1710
1711 snprintf(fio_status_file_path, sizeof(fio_status_file_path), "%s/%s", temp_dir, FIO_STATUS_FILE);
1712
1713 if (stat(fio_status_file_path, &sb))
06464907
JA
1714 return 0;
1715
77d99675
JA
1716 if (unlink(fio_status_file_path) < 0) {
1717 log_err("fio: failed to unlink %s: %s\n", fio_status_file_path,
1718 strerror(errno));
1719 log_err("fio: disabling status file updates\n");
1720 status_file_disabled = 1;
1721 }
1722
06464907
JA
1723 return 1;
1724}
1725
1726void check_for_running_stats(void)
1727{
1728 if (status_interval) {
1729 if (!status_interval_init) {
1730 fio_gettime(&status_time, NULL);
1731 status_interval_init = 1;
1732 } else if (mtime_since_now(&status_time) >= status_interval) {
1733 show_running_run_stats();
1734 fio_gettime(&status_time, NULL);
1735 return;
1736 }
1737 }
1738 if (check_status_file()) {
1739 show_running_run_stats();
1740 return;
1741 }
1742}
1743
68704084 1744static inline void add_stat_sample(struct io_stat *is, unsigned long data)
3c39a379 1745{
68704084 1746 double val = data;
6660cc67 1747 double delta;
68704084
JA
1748
1749 if (data > is->max_val)
1750 is->max_val = data;
1751 if (data < is->min_val)
1752 is->min_val = data;
1753
802ad4a8 1754 delta = val - is->mean.u.f;
ef11d737 1755 if (delta) {
802ad4a8
JA
1756 is->mean.u.f += delta / (is->samples + 1.0);
1757 is->S.u.f += delta * (val - is->mean.u.f);
ef11d737 1758 }
3c39a379 1759
3c39a379
JA
1760 is->samples++;
1761}
1762
bb3884d8 1763static void __add_log_sample(struct io_log *iolog, unsigned long val,
306ddc97 1764 enum fio_ddir ddir, unsigned int bs,
ae588852 1765 unsigned long t, uint64_t offset)
3c39a379 1766{
aee2ab67 1767 uint64_t nr_samples = iolog->nr_samples;
ae588852 1768 struct io_sample *s;
306ddc97 1769
3c568239
JA
1770 if (iolog->disabled)
1771 return;
1772
b8bc8cba
JA
1773 if (!iolog->nr_samples)
1774 iolog->avg_last = t;
1775
3c39a379 1776 if (iolog->nr_samples == iolog->max_samples) {
ae588852 1777 size_t new_size;
3c568239 1778 void *new_log;
3c39a379 1779
ae588852 1780 new_size = 2 * iolog->max_samples * log_entry_sz(iolog);
aee2ab67
JA
1781
1782 if (iolog->log_gz && (new_size > iolog->log_gz)) {
1783 if (iolog_flush(iolog, 0)) {
1784 log_err("fio: failed flushing iolog! Will stop logging.\n");
1785 iolog->disabled = 1;
1786 return;
1787 }
1788 nr_samples = iolog->nr_samples;
1789 } else {
1790 new_log = realloc(iolog->log, new_size);
1791 if (!new_log) {
1792 log_err("fio: failed extending iolog! Will stop logging.\n");
1793 iolog->disabled = 1;
1794 return;
1795 }
1796 iolog->log = new_log;
1797 iolog->max_samples <<= 1;
3c568239 1798 }
3c39a379
JA
1799 }
1800
ae588852
JA
1801 s = get_sample(iolog, nr_samples);
1802
1803 s->val = val;
1804 s->time = t;
b26317c9 1805 io_sample_set_ddir(iolog, s, ddir);
ae588852
JA
1806 s->bs = bs;
1807
1808 if (iolog->log_offset) {
1809 struct io_sample_offset *so = (void *) s;
1810
1811 so->offset = offset;
1812 }
1813
3c39a379
JA
1814 iolog->nr_samples++;
1815}
1816
7fb28d36
JA
1817static inline void reset_io_stat(struct io_stat *ios)
1818{
1819 ios->max_val = ios->min_val = ios->samples = 0;
1820 ios->mean.u.f = ios->S.u.f = 0;
1821}
1822
6bb58215
JA
1823void reset_io_stats(struct thread_data *td)
1824{
1825 struct thread_stat *ts = &td->ts;
1826 int i, j;
1827
1828 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1829 reset_io_stat(&ts->clat_stat[i]);
1830 reset_io_stat(&ts->slat_stat[i]);
1831 reset_io_stat(&ts->lat_stat[i]);
1832 reset_io_stat(&ts->bw_stat[i]);
1833 reset_io_stat(&ts->iops_stat[i]);
1834
1835 ts->io_bytes[i] = 0;
1836 ts->runtime[i] = 0;
1837
1838 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1839 ts->io_u_plat[i][j] = 0;
1840 }
1841
1842 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1843 ts->io_u_map[i] = 0;
1844 ts->io_u_submit[i] = 0;
1845 ts->io_u_complete[i] = 0;
1846 ts->io_u_lat_u[i] = 0;
1847 ts->io_u_lat_m[i] = 0;
1848 ts->total_submit = 0;
1849 ts->total_complete = 0;
1850 }
1851
1852 for (i = 0; i < 3; i++) {
1853 ts->total_io_u[i] = 0;
1854 ts->short_io_u[i] = 0;
3bcb9d94 1855 ts->drop_io_u[i] = 0;
6bb58215
JA
1856 }
1857}
1858
99007068
PO
1859static void _add_stat_to_log(struct io_log *iolog, unsigned long elapsed)
1860{
1861 /*
1862 * Note an entry in the log. Use the mean from the logged samples,
1863 * making sure to properly round up. Only write a log entry if we
1864 * had actual samples done.
1865 */
1866 if (iolog->avg_window[DDIR_READ].samples) {
1867 unsigned long mr;
1868
1869 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
ae588852 1870 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed, 0);
99007068
PO
1871 }
1872 if (iolog->avg_window[DDIR_WRITE].samples) {
1873 unsigned long mw;
1874
1875 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
ae588852 1876 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed, 0);
99007068
PO
1877 }
1878 if (iolog->avg_window[DDIR_TRIM].samples) {
1879 unsigned long mw;
1880
1881 mw = iolog->avg_window[DDIR_TRIM].mean.u.f + 0.50;
ae588852 1882 __add_log_sample(iolog, mw, DDIR_TRIM, 0, elapsed, 0);
99007068
PO
1883 }
1884
1885 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1886 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
1887 reset_io_stat(&iolog->avg_window[DDIR_TRIM]);
1888}
1889
bb3884d8 1890static void add_log_sample(struct thread_data *td, struct io_log *iolog,
306ddc97 1891 unsigned long val, enum fio_ddir ddir,
ae588852 1892 unsigned int bs, uint64_t offset)
bb3884d8 1893{
7fb28d36 1894 unsigned long elapsed, this_window;
b8bc8cba 1895
ff58fced
JA
1896 if (!ddir_rw(ddir))
1897 return;
1898
b8bc8cba
JA
1899 elapsed = mtime_since_now(&td->epoch);
1900
1901 /*
1902 * If no time averaging, just add the log sample.
1903 */
1904 if (!iolog->avg_msec) {
ae588852 1905 __add_log_sample(iolog, val, ddir, bs, elapsed, offset);
b8bc8cba
JA
1906 return;
1907 }
1908
1909 /*
1910 * Add the sample. If the time period has passed, then
1911 * add that entry to the log and clear.
1912 */
1913 add_stat_sample(&iolog->avg_window[ddir], val);
1914
7fb28d36
JA
1915 /*
1916 * If period hasn't passed, adding the above sample is all we
1917 * need to do.
1918 */
b8bc8cba
JA
1919 this_window = elapsed - iolog->avg_last;
1920 if (this_window < iolog->avg_msec)
1921 return;
1922
99007068 1923 _add_stat_to_log(iolog, elapsed);
b8bc8cba 1924
99007068
PO
1925 iolog->avg_last = elapsed;
1926}
6eaf09d6 1927
99007068
PO
1928void finalize_logs(struct thread_data *td)
1929{
1930 unsigned long elapsed;
6eaf09d6 1931
99007068 1932 elapsed = mtime_since_now(&td->epoch);
b8bc8cba 1933
99007068
PO
1934 if (td->clat_log)
1935 _add_stat_to_log(td->clat_log, elapsed);
1936 if (td->slat_log)
1937 _add_stat_to_log(td->slat_log, elapsed);
1938 if (td->lat_log)
1939 _add_stat_to_log(td->lat_log, elapsed);
1940 if (td->bw_log)
1941 _add_stat_to_log(td->bw_log, elapsed);
1942 if (td->iops_log)
1943 _add_stat_to_log(td->iops_log, elapsed);
bb3884d8
JA
1944}
1945
306ddc97 1946void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
bb3884d8 1947{
ff58fced 1948 struct io_log *iolog;
bb3884d8 1949
ff58fced
JA
1950 if (!ddir_rw(ddir))
1951 return;
1952
1953 iolog = agg_io_log[ddir];
ae588852 1954 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis(), 0);
bb3884d8
JA
1955}
1956
83349190
YH
1957static void add_clat_percentile_sample(struct thread_stat *ts,
1958 unsigned long usec, enum fio_ddir ddir)
1959{
1960 unsigned int idx = plat_val_to_idx(usec);
1961 assert(idx < FIO_IO_U_PLAT_NR);
1962
1963 ts->io_u_plat[ddir][idx]++;
1964}
1965
1e97cce9 1966void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
ae588852 1967 unsigned long usec, unsigned int bs, uint64_t offset)
3c39a379 1968{
756867bd 1969 struct thread_stat *ts = &td->ts;
079ad09b 1970
ff58fced
JA
1971 if (!ddir_rw(ddir))
1972 return;
1973
75dc383e
JA
1974 td_io_u_lock(td);
1975
d85f5118 1976 add_stat_sample(&ts->clat_stat[ddir], usec);
3c39a379 1977
7b9f733a 1978 if (td->clat_log)
ae588852 1979 add_log_sample(td, td->clat_log, usec, ddir, bs, offset);
83349190
YH
1980
1981 if (ts->clat_percentiles)
1982 add_clat_percentile_sample(ts, usec, ddir);
75dc383e
JA
1983
1984 td_io_u_unlock(td);
3c39a379
JA
1985}
1986
1e97cce9 1987void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
ae588852 1988 unsigned long usec, unsigned int bs, uint64_t offset)
3c39a379 1989{
756867bd 1990 struct thread_stat *ts = &td->ts;
079ad09b 1991
ff58fced
JA
1992 if (!ddir_rw(ddir))
1993 return;
1994
75dc383e
JA
1995 td_io_u_lock(td);
1996
d85f5118 1997 add_stat_sample(&ts->slat_stat[ddir], usec);
3c39a379 1998
7b9f733a 1999 if (td->slat_log)
ae588852 2000 add_log_sample(td, td->slat_log, usec, ddir, bs, offset);
75dc383e
JA
2001
2002 td_io_u_unlock(td);
3c39a379
JA
2003}
2004
02af0988 2005void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
ae588852 2006 unsigned long usec, unsigned int bs, uint64_t offset)
02af0988
JA
2007{
2008 struct thread_stat *ts = &td->ts;
2009
ff58fced
JA
2010 if (!ddir_rw(ddir))
2011 return;
2012
75dc383e
JA
2013 td_io_u_lock(td);
2014
02af0988
JA
2015 add_stat_sample(&ts->lat_stat[ddir], usec);
2016
7b9f733a 2017 if (td->lat_log)
ae588852 2018 add_log_sample(td, td->lat_log, usec, ddir, bs, offset);
75dc383e
JA
2019
2020 td_io_u_unlock(td);
02af0988
JA
2021}
2022
306ddc97 2023void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
1e97cce9 2024 struct timeval *t)
3c39a379 2025{
756867bd 2026 struct thread_stat *ts = &td->ts;
ff58fced
JA
2027 unsigned long spent, rate;
2028
2029 if (!ddir_rw(ddir))
2030 return;
3c39a379 2031
c8eeb9df 2032 spent = mtime_since(&td->bw_sample_time, t);
2dc1bbeb 2033 if (spent < td->o.bw_avg_time)
3c39a379 2034 return;
9602d8df 2035
a9da8ab2
JA
2036 td_io_u_lock(td);
2037
9602d8df 2038 /*
5daa4ebe
JC
2039 * Compute both read and write rates for the interval.
2040 */
6eaf09d6 2041 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
5daa4ebe
JC
2042 uint64_t delta;
2043
2044 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
2045 if (!delta)
2046 continue; /* No entries for interval */
3c39a379 2047
0956264f
JA
2048 if (spent)
2049 rate = delta * 1000 / spent / 1024;
2050 else
2051 rate = 0;
2052
5daa4ebe 2053 add_stat_sample(&ts->bw_stat[ddir], rate);
3c39a379 2054
5daa4ebe 2055 if (td->bw_log)
ae588852 2056 add_log_sample(td, td->bw_log, rate, ddir, bs, 0);
5daa4ebe
JC
2057
2058 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
2059 }
3c39a379 2060
c8eeb9df 2061 fio_gettime(&td->bw_sample_time, NULL);
a9da8ab2 2062 td_io_u_unlock(td);
3c39a379 2063}
c8eeb9df 2064
9b7e600d 2065void add_iops_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
c8eeb9df
JA
2066 struct timeval *t)
2067{
2068 struct thread_stat *ts = &td->ts;
2069 unsigned long spent, iops;
2070
2071 if (!ddir_rw(ddir))
2072 return;
2073
2074 spent = mtime_since(&td->iops_sample_time, t);
2075 if (spent < td->o.iops_avg_time)
2076 return;
2077
a9da8ab2
JA
2078 td_io_u_lock(td);
2079
9602d8df
JA
2080 /*
2081 * Compute both read and write rates for the interval.
2082 */
6eaf09d6 2083 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
9602d8df 2084 uint64_t delta;
c8eeb9df 2085
9602d8df
JA
2086 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
2087 if (!delta)
2088 continue; /* No entries for interval */
2089
0956264f
JA
2090 if (spent)
2091 iops = (delta * 1000) / spent;
2092 else
2093 iops = 0;
2094
9602d8df 2095 add_stat_sample(&ts->iops_stat[ddir], iops);
c8eeb9df 2096
9602d8df 2097 if (td->iops_log)
ae588852 2098 add_log_sample(td, td->iops_log, iops, ddir, bs, 0);
9602d8df 2099
421f4a82 2100 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
9602d8df 2101 }
c8eeb9df
JA
2102
2103 fio_gettime(&td->iops_sample_time, NULL);
a9da8ab2 2104 td_io_u_unlock(td);
c8eeb9df 2105}
cef9175e
JA
2106
2107void stat_init(void)
2108{
2109 stat_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
2110}
2111
2112void stat_exit(void)
2113{
2114 /*
2115 * When we have the mutex, we know out-of-band access to it
2116 * have ended.
2117 */
2118 fio_mutex_down(stat_mutex);
2119 fio_mutex_remove(stat_mutex);
2120}
b2ee7647 2121
b2ee7647
JA
2122/*
2123 * Called from signal handler. Wake up status thread.
2124 */
2125void show_running_run_stats(void)
2126{
5ddc6707
JA
2127 helper_do_stat = 1;
2128 pthread_cond_signal(&helper_cond);
b2ee7647 2129}
66347cfa
DE
2130
2131uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u)
2132{
2133 /* Ignore io_u's which span multiple blocks--they will just get
2134 * inaccurate counts. */
2135 int idx = (io_u->offset - io_u->file->file_offset)
2136 / td->o.bs[DDIR_TRIM];
2137 uint32_t *info = &td->ts.block_infos[idx];
2138 assert(idx < td->ts.nr_block_infos);
2139 return info;
2140}