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