Add support for multiple output formats
[fio.git] / stat.c
... / ...
CommitLineData
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
5#include <sys/stat.h>
6#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
11#include "diskutil.h"
12#include "lib/ieee754.h"
13#include "json.h"
14#include "lib/getrusage.h"
15#include "idletime.h"
16#include "lib/pow2.h"
17
18struct fio_mutex *stat_mutex;
19
20void update_rusage_stat(struct thread_data *td)
21{
22 struct thread_stat *ts = &td->ts;
23
24 fio_getrusage(&td->ru_end);
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;
33
34 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
35}
36
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
56 /*
57 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
58 * all bits of the sample as index
59 */
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
69 /*
70 * Discard the error bits and apply the mask to find the
71 * index for the buckets in the group
72 */
73 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
74
75 /* Make sure the index does not exceed (array size - 1) */
76 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1) ?
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 */
94 if (idx < (FIO_IO_U_PLAT_VAL << 1))
95 return idx;
96
97 /* Find the group and compute the minimum value of that group */
98 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
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{
110 const fio_fp64_t fa = *(const fio_fp64_t *) a;
111 const fio_fp64_t fb = *(const fio_fp64_t *) b;
112 int cmp = 0;
113
114 if (fa.u.f > fb.u.f)
115 cmp = 1;
116 else if (fa.u.f < fb.u.f)
117 cmp = -1;
118
119 return cmp;
120}
121
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)
125{
126 unsigned long sum = 0;
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;
134
135 len = 0;
136 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
137 len++;
138
139 if (!len)
140 return 0;
141
142 /*
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.
146 */
147 if (len > 1)
148 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
149
150 /*
151 * Calculate bucket values, note down max and min values
152 */
153 is_last = 0;
154 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
155 sum += io_u_plat[i];
156 while (sum >= (plist[j].u.f / 100.0 * nr)) {
157 assert(plist[j].u.f <= 100.0);
158
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);
165 if (ovals[j] < *minv)
166 *minv = ovals[j];
167 if (ovals[j] > *maxv)
168 *maxv = ovals[j];
169
170 is_last = (j == len - 1);
171 if (is_last)
172 break;
173
174 j++;
175 }
176 }
177
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,
186 fio_fp64_t *plist, unsigned int precision)
187{
188 unsigned int len, j = 0, minv, maxv;
189 unsigned int *ovals;
190 int is_last, per_line, scale_down;
191 char fmt[32];
192
193 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
194 if (!len)
195 goto out;
196
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 }
208
209 snprintf(fmt, sizeof(fmt), "%%1.%uf", precision);
210 per_line = (80 - 7) / (precision + 14);
211
212 for (j = 0; j < len; j++) {
213 char fbuf[16], *ptr = fbuf;
214
215 /* for formatting */
216 if (j != 0 && (j % per_line) == 0)
217 log_info(" |");
218
219 /* end of the list */
220 is_last = (j == len - 1);
221
222 if (plist[j].u.f < 10.0)
223 ptr += sprintf(fbuf, " ");
224
225 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f);
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
235 if ((j % per_line) == per_line - 1) /* for formatting */
236 log_info("\n");
237 }
238
239out:
240 if (ovals)
241 free(ovals);
242}
243
244int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
245 double *mean, double *dev)
246{
247 double n = (double) is->samples;
248
249 if (n == 0)
250 return 0;
251
252 *min = is->min_val;
253 *max = is->max_val;
254 *mean = is->mean.u.f;
255
256 if (n > 1.0)
257 *dev = sqrt(is->S.u.f / (n - 1.0));
258 else
259 *dev = 0;
260
261 return 1;
262}
263
264void show_group_stats(struct group_run_stats *rs)
265{
266 char *p1, *p2, *p3, *p4;
267 const char *str[] = { " READ", " WRITE" , " TRIM"};
268 int i;
269
270 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
271
272 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
273 const int i2p = is_power_of_2(rs->kb_base);
274
275 if (!rs->max_run[i])
276 continue;
277
278 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p, 8);
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);
282
283 log_info("%s: io=%s, aggrb=%s/s, minb=%s/s, maxb=%s/s,"
284 " mint=%llumsec, maxt=%llumsec\n",
285 rs->unified_rw_rep ? " MIXED" : str[i],
286 p1, p2, p3, p4,
287 (unsigned long long) rs->min_run[i],
288 (unsigned long long) rs->max_run[i]);
289
290 free(p1);
291 free(p2);
292 free(p3);
293 free(p4);
294 }
295}
296
297void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist)
298{
299 int i;
300
301 /*
302 * Do depth distribution calculations
303 */
304 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
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;
312 }
313}
314
315static void stat_calc_lat(struct thread_stat *ts, double *dst,
316 unsigned int *src, int nr)
317{
318 unsigned long total = ddir_rw_sum(ts->total_io_u);
319 int i;
320
321 /*
322 * Do latency distribution calculations
323 */
324 for (i = 0; i < nr; i++) {
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;
332 }
333}
334
335void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
336{
337 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
338}
339
340void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
341{
342 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
343}
344
345static void display_lat(const char *name, unsigned long min, unsigned long max,
346 double mean, double dev)
347{
348 const char *base = "(usec)";
349 char *minp, *maxp;
350
351 if (!usec_to_msec(&min, &max, &mean, &dev))
352 base = "(msec)";
353
354 minp = num2str(min, 6, 1, 0, 0);
355 maxp = num2str(max, 6, 1, 0, 0);
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);
362}
363
364static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
365 int ddir)
366{
367 const char *str[] = { "read ", "write", "trim" };
368 unsigned long min, max, runt;
369 unsigned long long bw, iops;
370 double mean, dev;
371 char *io_p, *bw_p, *iops_p;
372 int i2p;
373
374 assert(ddir_rw(ddir));
375
376 if (!ts->runtime[ddir])
377 return;
378
379 i2p = is_power_of_2(rs->kb_base);
380 runt = ts->runtime[ddir];
381
382 bw = (1000 * ts->io_bytes[ddir]) / runt;
383 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p, 8);
384 bw_p = num2str(bw, 6, 1, i2p, ts->unit_base);
385
386 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
387 iops_p = num2str(iops, 6, 1, 0, 0);
388
389 log_info(" %s: io=%s, bw=%s/s, iops=%s, runt=%6llumsec\n",
390 rs->unified_rw_rep ? "mixed" : str[ddir],
391 io_p, bw_p, iops_p,
392 (unsigned long long) ts->runtime[ddir]);
393
394 free(io_p);
395 free(bw_p);
396 free(iops_p);
397
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);
404
405 if (ts->clat_percentiles) {
406 show_clat_percentiles(ts->io_u_plat[ddir],
407 ts->clat_stat[ddir].samples,
408 ts->percentile_list,
409 ts->percentile_precision);
410 }
411 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
412 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
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 }
421
422 if (rs->agg[ddir]) {
423 p_of_agg = mean * 100 / (double) rs->agg[ddir];
424 if (p_of_agg > 100.0)
425 p_of_agg = 100.0;
426 }
427
428 if (mean > fkb_base * fkb_base) {
429 min /= fkb_base;
430 max /= fkb_base;
431 mean /= fkb_base;
432 dev /= fkb_base;
433 bw_str = (rs->unit_base == 1 ? "Mbit" : "MB");
434 }
435
436 log_info(" bw (%-4s/s): min=%5lu, max=%5lu, per=%3.2f%%,"
437 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
438 p_of_agg, mean, dev);
439 }
440}
441
442static int show_lat(double *io_u_lat, int nr, const char **ranges,
443 const char *msg)
444{
445 int new_line = 1, i, line = 0, shown = 0;
446
447 for (i = 0; i < nr; i++) {
448 if (io_u_lat[i] <= 0.0)
449 continue;
450 shown = 1;
451 if (new_line) {
452 if (line)
453 log_info("\n");
454 log_info(" lat (%s) : ", msg);
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 }
465
466 if (shown)
467 log_info("\n");
468
469 return shown;
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
489static void show_latencies(struct thread_stat *ts)
490{
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
494 stat_calc_lat_u(ts, io_u_lat_u);
495 stat_calc_lat_m(ts, io_u_lat_m);
496
497 show_lat_u(io_u_lat_u);
498 show_lat_m(io_u_lat_m);
499}
500
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:
513 /* Silence compile warning on some BSDs and have a return */
514 assert(0);
515 return -1;
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
644static void show_thread_status_normal(struct thread_stat *ts,
645 struct group_run_stats *rs)
646{
647 double usr_cpu, sys_cpu;
648 unsigned long runtime;
649 double io_u_dist[FIO_IO_U_MAP_NR];
650 time_t time_p;
651 char time_buf[32];
652
653 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u))
654 return;
655
656 time(&time_p);
657 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
658
659 if (!ts->error) {
660 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
661 ts->name, ts->groupid, ts->members,
662 ts->error, (int) ts->pid, time_buf);
663 } else {
664 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
665 ts->name, ts->groupid, ts->members,
666 ts->error, ts->verror, (int) ts->pid,
667 time_buf);
668 }
669
670 if (strlen(ts->description))
671 log_info(" Description : [%s]\n", ts->description);
672
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);
677 if (ts->io_bytes[DDIR_TRIM])
678 show_ddir_status(rs, ts, DDIR_TRIM);
679
680 show_latencies(ts);
681
682 runtime = ts->total_run_time;
683 if (runtime) {
684 double runt = (double) runtime;
685
686 usr_cpu = (double) ts->usr_time * 100 / runt;
687 sys_cpu = (double) ts->sys_time * 100 / runt;
688 } else {
689 usr_cpu = 0;
690 sys_cpu = 0;
691 }
692
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);
698
699 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
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]);
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]);
718 log_info(" issued : total=r=%llu/w=%llu/d=%llu,"
719 " short=r=%llu/w=%llu/d=%llu,"
720 " drop=r=%llu/w=%llu/d=%llu\n",
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],
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]);
730 if (ts->continue_on_error) {
731 log_info(" errors : total=%llu, first_error=%d/<%s>\n",
732 (unsigned long long)ts->total_err_count,
733 ts->first_error,
734 strerror(ts->first_error));
735 }
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 }
743
744 if (ts->nr_block_infos)
745 show_block_infos(ts->nr_block_infos, ts->block_infos,
746 ts->percentile_list);
747}
748
749static void show_ddir_status_terse(struct thread_stat *ts,
750 struct group_run_stats *rs, int ddir)
751{
752 unsigned long min, max;
753 unsigned long long bw, iops;
754 unsigned int *ovals = NULL;
755 double mean, dev;
756 unsigned int len, minv, maxv;
757 int i;
758
759 assert(ddir_rw(ddir));
760
761 iops = bw = 0;
762 if (ts->runtime[ddir]) {
763 uint64_t runt = ts->runtime[ddir];
764
765 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
766 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
767 }
768
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]);
772
773 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
774 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
775 else
776 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
777
778 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
779 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
780 else
781 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
782
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 }
796 log_info(";%f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
797 }
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
804 if (ovals)
805 free(ovals);
806
807 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
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 }
815
816 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
817 } else
818 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
819}
820
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;
825 unsigned long long bw;
826 unsigned int *ovals = NULL;
827 double mean, dev, iops;
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
837 if (ts->unified_rw_rep && ddir != DDIR_READ)
838 return;
839
840 dir_object = json_create_object();
841 json_object_add_value_object(parent,
842 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
843
844 bw = 0;
845 iops = 0.0;
846 if (ts->runtime[ddir]) {
847 uint64_t runt = ts->runtime[ddir];
848
849 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
850 iops = (1000.0 * (uint64_t) ts->total_io_u[ddir]) / runt;
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);
855 json_object_add_value_float(dir_object, "iops", iops);
856 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
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]);
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 }
898 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
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
915 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
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);
927 json_object_add_value_float(dir_object, "bw_agg", p_of_agg);
928 json_object_add_value_float(dir_object, "bw_mean", mean);
929 json_object_add_value_float(dir_object, "bw_dev", dev);
930}
931
932static void show_thread_status_terse_v2(struct thread_stat *ts,
933 struct group_run_stats *rs)
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 */
944 show_ddir_status_terse(ts, rs, DDIR_READ);
945 /* Log Write Status */
946 show_ddir_status_terse(ts, rs, DDIR_WRITE);
947 /* Log Trim Status */
948 show_ddir_status_terse(ts, rs, DDIR_TRIM);
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
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);
965
966 /* Calc % distribution of IO depths, usecond, msecond latency */
967 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
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)
984 log_info(";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
985 log_info("\n");
986
987 /* Additional output if description is set */
988 if (strlen(ts->description))
989 log_info(";%s", ts->description);
990
991 log_info("\n");
992}
993
994static void show_thread_status_terse_v3_v4(struct thread_stat *ts,
995 struct group_run_stats *rs, int ver)
996{
997 double io_u_dist[FIO_IO_U_MAP_NR];
998 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
999 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1000 double usr_cpu, sys_cpu;
1001 int i;
1002
1003 /* General Info */
1004 log_info("%d;%s;%s;%d;%d", ver, fio_version_string,
1005 ts->name, ts->groupid, ts->error);
1006 /* Log Read Status */
1007 show_ddir_status_terse(ts, rs, DDIR_READ);
1008 /* Log Write Status */
1009 show_ddir_status_terse(ts, rs, DDIR_WRITE);
1010 /* Log Trim Status */
1011 if (ver == 4)
1012 show_ddir_status_terse(ts, rs, DDIR_TRIM);
1013
1014 /* CPU Usage */
1015 if (ts->total_run_time) {
1016 double runt = (double) ts->total_run_time;
1017
1018 usr_cpu = (double) ts->usr_time * 100 / runt;
1019 sys_cpu = (double) ts->sys_time * 100 / runt;
1020 } else {
1021 usr_cpu = 0;
1022 sys_cpu = 0;
1023 }
1024
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);
1029
1030 /* Calc % distribution of IO depths, usecond, msecond latency */
1031 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
1032 stat_calc_lat_u(ts, io_u_lat_u);
1033 stat_calc_lat_m(ts, io_u_lat_m);
1034
1035 /* Only show fixed 7 I/O depth levels*/
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]);
1039
1040 /* Microsecond latency */
1041 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
1042 log_info(";%3.2f%%", io_u_lat_u[i]);
1043 /* Millisecond latency */
1044 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
1045 log_info(";%3.2f%%", io_u_lat_m[i]);
1046
1047 /* disk util stats, if any */
1048 show_disk_util(1, NULL);
1049
1050 /* Additional output if continue_on_error set - default off*/
1051 if (ts->continue_on_error)
1052 log_info(";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
1053
1054 /* Additional output if description is set */
1055 if (strlen(ts->description))
1056 log_info(";%s", ts->description);
1057
1058 log_info("\n");
1059}
1060
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;
1065 struct jobs_eta *je;
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;
1071 size_t size;
1072
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
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
1085 add_ddir_status_json(ts, rs, DDIR_READ, root);
1086 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
1087 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
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 */
1107 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
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)
1117 snprintf(name, 20, "%d", 1 << i);
1118 else
1119 snprintf(name, 20, ">=%d", 1 << i);
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);
1144 json_object_add_value_int(root, "first_error", ts->first_error);
1145 }
1146
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
1154 /* Additional output if description is set */
1155 if (strlen(ts->description))
1156 json_object_add_value_string(root, "desc", ts->description);
1157
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
1197 return root;
1198}
1199
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);
1205 else if (terse_version == 3 || terse_version == 4)
1206 show_thread_status_terse_v3_v4(ts, rs, terse_version);
1207 else
1208 log_err("fio: bad terse version!? %d\n", terse_version);
1209}
1210
1211struct json_object *show_thread_status(struct thread_stat *ts,
1212 struct group_run_stats *rs)
1213{
1214 struct json_object *ret = NULL;
1215
1216 if (output_format & FIO_OUTPUT_TERSE)
1217 show_thread_status_terse(ts, rs);
1218 if (output_format & FIO_OUTPUT_JSON)
1219 ret = show_thread_status_json(ts, rs);
1220 if (output_format & FIO_OUTPUT_NORMAL)
1221 show_thread_status_normal(ts, rs);
1222
1223 return ret;
1224}
1225
1226static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
1227{
1228 double mean, S;
1229
1230 if (src->samples == 0)
1231 return;
1232
1233 dst->min_val = min(dst->min_val, src->min_val);
1234 dst->max_val = max(dst->max_val, src->max_val);
1235
1236 /*
1237 * Compute new mean and S after the merge
1238 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1239 * #Parallel_algorithm>
1240 */
1241 if (nr == 1) {
1242 mean = src->mean.u.f;
1243 S = src->S.u.f;
1244 } else {
1245 double delta = src->mean.u.f - dst->mean.u.f;
1246
1247 mean = ((src->mean.u.f * src->samples) +
1248 (dst->mean.u.f * dst->samples)) /
1249 (dst->samples + src->samples);
1250
1251 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
1252 (dst->samples * src->samples) /
1253 (dst->samples + src->samples);
1254 }
1255
1256 dst->samples += src->samples;
1257 dst->mean.u.f = mean;
1258 dst->S.u.f = S;
1259}
1260
1261void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1262{
1263 int i;
1264
1265 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1266 if (dst->max_run[i] < src->max_run[i])
1267 dst->max_run[i] = src->max_run[i];
1268 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1269 dst->min_run[i] = src->min_run[i];
1270 if (dst->max_bw[i] < src->max_bw[i])
1271 dst->max_bw[i] = src->max_bw[i];
1272 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1273 dst->min_bw[i] = src->min_bw[i];
1274
1275 dst->io_kb[i] += src->io_kb[i];
1276 dst->agg[i] += src->agg[i];
1277 }
1278
1279 if (!dst->kb_base)
1280 dst->kb_base = src->kb_base;
1281 if (!dst->unit_base)
1282 dst->unit_base = src->unit_base;
1283}
1284
1285void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
1286{
1287 int l, k;
1288
1289 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
1290 if (!dst->unified_rw_rep) {
1291 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
1292 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
1293 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
1294 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
1295
1296 dst->io_bytes[l] += src->io_bytes[l];
1297
1298 if (dst->runtime[l] < src->runtime[l])
1299 dst->runtime[l] = src->runtime[l];
1300 } else {
1301 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], nr);
1302 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], nr);
1303 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], nr);
1304 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], nr);
1305
1306 dst->io_bytes[0] += src->io_bytes[l];
1307
1308 if (dst->runtime[0] < src->runtime[l])
1309 dst->runtime[0] = src->runtime[l];
1310 }
1311 }
1312
1313 dst->usr_time += src->usr_time;
1314 dst->sys_time += src->sys_time;
1315 dst->ctx += src->ctx;
1316 dst->majf += src->majf;
1317 dst->minf += src->minf;
1318
1319 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1320 dst->io_u_map[k] += src->io_u_map[k];
1321 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1322 dst->io_u_submit[k] += src->io_u_submit[k];
1323 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1324 dst->io_u_complete[k] += src->io_u_complete[k];
1325 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1326 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1327 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1328 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1329
1330 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
1331 if (!dst->unified_rw_rep) {
1332 dst->total_io_u[k] += src->total_io_u[k];
1333 dst->short_io_u[k] += src->short_io_u[k];
1334 dst->drop_io_u[k] += src->drop_io_u[k];
1335 } else {
1336 dst->total_io_u[0] += src->total_io_u[k];
1337 dst->short_io_u[0] += src->short_io_u[k];
1338 dst->drop_io_u[0] += src->drop_io_u[k];
1339 }
1340 }
1341
1342 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
1343 int m;
1344
1345 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1346 if (!dst->unified_rw_rep)
1347 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1348 else
1349 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1350 }
1351 }
1352
1353 dst->total_run_time += src->total_run_time;
1354 dst->total_submit += src->total_submit;
1355 dst->total_complete += src->total_complete;
1356}
1357
1358void init_group_run_stat(struct group_run_stats *gs)
1359{
1360 int i;
1361 memset(gs, 0, sizeof(*gs));
1362
1363 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1364 gs->min_bw[i] = gs->min_run[i] = ~0UL;
1365}
1366
1367void init_thread_stat(struct thread_stat *ts)
1368{
1369 int j;
1370
1371 memset(ts, 0, sizeof(*ts));
1372
1373 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
1374 ts->lat_stat[j].min_val = -1UL;
1375 ts->clat_stat[j].min_val = -1UL;
1376 ts->slat_stat[j].min_val = -1UL;
1377 ts->bw_stat[j].min_val = -1UL;
1378 }
1379 ts->groupid = -1;
1380}
1381
1382void __show_run_stats(void)
1383{
1384 struct group_run_stats *runstats, *rs;
1385 struct thread_data *td;
1386 struct thread_stat *threadstats, *ts;
1387 int i, j, k, nr_ts, last_ts, idx;
1388 int kb_base_warned = 0;
1389 int unit_base_warned = 0;
1390 struct json_object *root = NULL;
1391 struct json_array *array = NULL;
1392 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1393
1394 for (i = 0; i < groupid + 1; i++)
1395 init_group_run_stat(&runstats[i]);
1396
1397 /*
1398 * find out how many threads stats we need. if group reporting isn't
1399 * enabled, it's one-per-td.
1400 */
1401 nr_ts = 0;
1402 last_ts = -1;
1403 for_each_td(td, i) {
1404 if (!td->o.group_reporting) {
1405 nr_ts++;
1406 continue;
1407 }
1408 if (last_ts == td->groupid)
1409 continue;
1410
1411 last_ts = td->groupid;
1412 nr_ts++;
1413 }
1414
1415 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
1416
1417 for (i = 0; i < nr_ts; i++)
1418 init_thread_stat(&threadstats[i]);
1419
1420 j = 0;
1421 last_ts = -1;
1422 idx = 0;
1423 for_each_td(td, i) {
1424 if (idx && (!td->o.group_reporting ||
1425 (td->o.group_reporting && last_ts != td->groupid))) {
1426 idx = 0;
1427 j++;
1428 }
1429
1430 last_ts = td->groupid;
1431
1432 ts = &threadstats[j];
1433
1434 ts->clat_percentiles = td->o.clat_percentiles;
1435 ts->percentile_precision = td->o.percentile_precision;
1436 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
1437
1438 idx++;
1439 ts->members++;
1440
1441 if (ts->groupid == -1) {
1442 /*
1443 * These are per-group shared already
1444 */
1445 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE - 1);
1446 if (td->o.description)
1447 strncpy(ts->description, td->o.description,
1448 FIO_JOBDESC_SIZE - 1);
1449 else
1450 memset(ts->description, 0, FIO_JOBDESC_SIZE);
1451
1452 /*
1453 * If multiple entries in this group, this is
1454 * the first member.
1455 */
1456 ts->thread_number = td->thread_number;
1457 ts->groupid = td->groupid;
1458
1459 /*
1460 * first pid in group, not very useful...
1461 */
1462 ts->pid = td->pid;
1463
1464 ts->kb_base = td->o.kb_base;
1465 ts->unit_base = td->o.unit_base;
1466 ts->unified_rw_rep = td->o.unified_rw_rep;
1467 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1468 log_info("fio: kb_base differs for jobs in group, using"
1469 " %u as the base\n", ts->kb_base);
1470 kb_base_warned = 1;
1471 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1472 log_info("fio: unit_base differs for jobs in group, using"
1473 " %u as the base\n", ts->unit_base);
1474 unit_base_warned = 1;
1475 }
1476
1477 ts->continue_on_error = td->o.continue_on_error;
1478 ts->total_err_count += td->total_err_count;
1479 ts->first_error = td->first_error;
1480 if (!ts->error) {
1481 if (!td->error && td->o.continue_on_error &&
1482 td->first_error) {
1483 ts->error = td->first_error;
1484 ts->verror[sizeof(ts->verror) - 1] = '\0';
1485 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
1486 } else if (td->error) {
1487 ts->error = td->error;
1488 ts->verror[sizeof(ts->verror) - 1] = '\0';
1489 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
1490 }
1491 }
1492
1493 ts->latency_depth = td->latency_qd;
1494 ts->latency_target = td->o.latency_target;
1495 ts->latency_percentile = td->o.latency_percentile;
1496 ts->latency_window = td->o.latency_window;
1497
1498 ts->nr_block_infos = td->ts.nr_block_infos;
1499 for (k = 0; k < ts->nr_block_infos; k++)
1500 ts->block_infos[k] = td->ts.block_infos[k];
1501
1502 sum_thread_stats(ts, &td->ts, idx);
1503 }
1504
1505 for (i = 0; i < nr_ts; i++) {
1506 unsigned long long bw;
1507
1508 ts = &threadstats[i];
1509 rs = &runstats[ts->groupid];
1510 rs->kb_base = ts->kb_base;
1511 rs->unit_base = ts->unit_base;
1512 rs->unified_rw_rep += ts->unified_rw_rep;
1513
1514 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
1515 if (!ts->runtime[j])
1516 continue;
1517 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1518 rs->min_run[j] = ts->runtime[j];
1519 if (ts->runtime[j] > rs->max_run[j])
1520 rs->max_run[j] = ts->runtime[j];
1521
1522 bw = 0;
1523 if (ts->runtime[j]) {
1524 unsigned long runt = ts->runtime[j];
1525 unsigned long long kb;
1526
1527 kb = ts->io_bytes[j] / rs->kb_base;
1528 bw = kb * 1000 / runt;
1529 }
1530 if (bw < rs->min_bw[j])
1531 rs->min_bw[j] = bw;
1532 if (bw > rs->max_bw[j])
1533 rs->max_bw[j] = bw;
1534
1535 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
1536 }
1537 }
1538
1539 for (i = 0; i < groupid + 1; i++) {
1540 int ddir;
1541
1542 rs = &runstats[i];
1543
1544 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1545 if (rs->max_run[ddir])
1546 rs->agg[ddir] = (rs->io_kb[ddir] * 1000) /
1547 rs->max_run[ddir];
1548 }
1549 }
1550
1551 /*
1552 * don't overwrite last signal output
1553 */
1554 if (output_format & FIO_OUTPUT_NORMAL)
1555 log_info("\n");
1556 if (output_format & FIO_OUTPUT_JSON) {
1557 char time_buf[32];
1558 time_t time_p;
1559
1560 time(&time_p);
1561 os_ctime_r((const time_t *) &time_p, time_buf,
1562 sizeof(time_buf));
1563 time_buf[strlen(time_buf) - 1] = '\0';
1564
1565 root = json_create_object();
1566 json_object_add_value_string(root, "fio version", fio_version_string);
1567 json_object_add_value_int(root, "timestamp", time_p);
1568 json_object_add_value_string(root, "time", time_buf);
1569 array = json_create_array();
1570 json_object_add_value_array(root, "jobs", array);
1571 }
1572
1573 for (i = 0; i < nr_ts; i++) {
1574 ts = &threadstats[i];
1575 rs = &runstats[ts->groupid];
1576
1577 if (is_backend)
1578 fio_server_send_ts(ts, rs);
1579 else {
1580 if (output_format & FIO_OUTPUT_TERSE)
1581 show_thread_status_terse(ts, rs);
1582 if (output_format & FIO_OUTPUT_JSON) {
1583 struct json_object *tmp = show_thread_status_json(ts, rs);
1584 json_array_add_value_object(array, tmp);
1585 }
1586 if (output_format & FIO_OUTPUT_NORMAL)
1587 show_thread_status_normal(ts, rs);
1588 }
1589 }
1590 if (output_format & FIO_OUTPUT_JSON) {
1591 /* disk util stats, if any */
1592 show_disk_util(1, root);
1593
1594 show_idle_prof_stats(FIO_OUTPUT_JSON, root);
1595
1596 json_print_object(root);
1597 log_info("\n");
1598 json_free_object(root);
1599 }
1600
1601 for (i = 0; i < groupid + 1; i++) {
1602 rs = &runstats[i];
1603
1604 rs->groupid = i;
1605 if (is_backend)
1606 fio_server_send_gs(rs);
1607 else if (output_format & FIO_OUTPUT_NORMAL)
1608 show_group_stats(rs);
1609 }
1610
1611 if (is_backend)
1612 fio_server_send_du();
1613 else if (output_format & FIO_OUTPUT_NORMAL) {
1614 show_disk_util(0, NULL);
1615 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL);
1616 }
1617
1618 if ( !(output_format & FIO_OUTPUT_TERSE) && append_terse_output) {
1619 log_info("\nAdditional Terse Output:\n");
1620
1621 for (i = 0; i < nr_ts; i++) {
1622 ts = &threadstats[i];
1623 rs = &runstats[ts->groupid];
1624 show_thread_status_terse(ts, rs);
1625 }
1626 }
1627
1628 log_info_flush();
1629 free(runstats);
1630 free(threadstats);
1631}
1632
1633void show_run_stats(void)
1634{
1635 fio_mutex_down(stat_mutex);
1636 __show_run_stats();
1637 fio_mutex_up(stat_mutex);
1638}
1639
1640void __show_running_run_stats(void)
1641{
1642 struct thread_data *td;
1643 unsigned long long *rt;
1644 struct timeval tv;
1645 int i;
1646
1647 fio_mutex_down(stat_mutex);
1648
1649 rt = malloc(thread_number * sizeof(unsigned long long));
1650 fio_gettime(&tv, NULL);
1651
1652 for_each_td(td, i) {
1653 rt[i] = mtime_since(&td->start, &tv);
1654 if (td_read(td) && td->io_bytes[DDIR_READ])
1655 td->ts.runtime[DDIR_READ] += rt[i];
1656 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1657 td->ts.runtime[DDIR_WRITE] += rt[i];
1658 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1659 td->ts.runtime[DDIR_TRIM] += rt[i];
1660
1661 td->update_rusage = 1;
1662 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1663 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1664 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
1665 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
1666 }
1667
1668 for_each_td(td, i) {
1669 if (td->runstate >= TD_EXITED)
1670 continue;
1671 if (td->rusage_sem) {
1672 td->update_rusage = 1;
1673 fio_mutex_down(td->rusage_sem);
1674 }
1675 td->update_rusage = 0;
1676 }
1677
1678 __show_run_stats();
1679
1680 for_each_td(td, i) {
1681 if (td_read(td) && td->io_bytes[DDIR_READ])
1682 td->ts.runtime[DDIR_READ] -= rt[i];
1683 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1684 td->ts.runtime[DDIR_WRITE] -= rt[i];
1685 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1686 td->ts.runtime[DDIR_TRIM] -= rt[i];
1687 }
1688
1689 free(rt);
1690 fio_mutex_up(stat_mutex);
1691}
1692
1693static int status_interval_init;
1694static struct timeval status_time;
1695static int status_file_disabled;
1696
1697#define FIO_STATUS_FILE "fio-dump-status"
1698
1699static int check_status_file(void)
1700{
1701 struct stat sb;
1702 const char *temp_dir;
1703 char fio_status_file_path[PATH_MAX];
1704
1705 if (status_file_disabled)
1706 return 0;
1707
1708 temp_dir = getenv("TMPDIR");
1709 if (temp_dir == NULL) {
1710 temp_dir = getenv("TEMP");
1711 if (temp_dir && strlen(temp_dir) >= PATH_MAX)
1712 temp_dir = NULL;
1713 }
1714 if (temp_dir == NULL)
1715 temp_dir = "/tmp";
1716
1717 snprintf(fio_status_file_path, sizeof(fio_status_file_path), "%s/%s", temp_dir, FIO_STATUS_FILE);
1718
1719 if (stat(fio_status_file_path, &sb))
1720 return 0;
1721
1722 if (unlink(fio_status_file_path) < 0) {
1723 log_err("fio: failed to unlink %s: %s\n", fio_status_file_path,
1724 strerror(errno));
1725 log_err("fio: disabling status file updates\n");
1726 status_file_disabled = 1;
1727 }
1728
1729 return 1;
1730}
1731
1732void check_for_running_stats(void)
1733{
1734 if (status_interval) {
1735 if (!status_interval_init) {
1736 fio_gettime(&status_time, NULL);
1737 status_interval_init = 1;
1738 } else if (mtime_since_now(&status_time) >= status_interval) {
1739 show_running_run_stats();
1740 fio_gettime(&status_time, NULL);
1741 return;
1742 }
1743 }
1744 if (check_status_file()) {
1745 show_running_run_stats();
1746 return;
1747 }
1748}
1749
1750static inline void add_stat_sample(struct io_stat *is, unsigned long data)
1751{
1752 double val = data;
1753 double delta;
1754
1755 if (data > is->max_val)
1756 is->max_val = data;
1757 if (data < is->min_val)
1758 is->min_val = data;
1759
1760 delta = val - is->mean.u.f;
1761 if (delta) {
1762 is->mean.u.f += delta / (is->samples + 1.0);
1763 is->S.u.f += delta * (val - is->mean.u.f);
1764 }
1765
1766 is->samples++;
1767}
1768
1769static void __add_log_sample(struct io_log *iolog, unsigned long val,
1770 enum fio_ddir ddir, unsigned int bs,
1771 unsigned long t, uint64_t offset)
1772{
1773 uint64_t nr_samples = iolog->nr_samples;
1774 struct io_sample *s;
1775
1776 if (iolog->disabled)
1777 return;
1778
1779 if (!iolog->nr_samples)
1780 iolog->avg_last = t;
1781
1782 if (iolog->nr_samples == iolog->max_samples) {
1783 size_t new_size;
1784 void *new_log;
1785
1786 new_size = 2 * iolog->max_samples * log_entry_sz(iolog);
1787
1788 if (iolog->log_gz && (new_size > iolog->log_gz)) {
1789 if (iolog_flush(iolog, 0)) {
1790 log_err("fio: failed flushing iolog! Will stop logging.\n");
1791 iolog->disabled = 1;
1792 return;
1793 }
1794 nr_samples = iolog->nr_samples;
1795 } else {
1796 new_log = realloc(iolog->log, new_size);
1797 if (!new_log) {
1798 log_err("fio: failed extending iolog! Will stop logging.\n");
1799 iolog->disabled = 1;
1800 return;
1801 }
1802 iolog->log = new_log;
1803 iolog->max_samples <<= 1;
1804 }
1805 }
1806
1807 s = get_sample(iolog, nr_samples);
1808
1809 s->val = val;
1810 s->time = t;
1811 io_sample_set_ddir(iolog, s, ddir);
1812 s->bs = bs;
1813
1814 if (iolog->log_offset) {
1815 struct io_sample_offset *so = (void *) s;
1816
1817 so->offset = offset;
1818 }
1819
1820 iolog->nr_samples++;
1821}
1822
1823static inline void reset_io_stat(struct io_stat *ios)
1824{
1825 ios->max_val = ios->min_val = ios->samples = 0;
1826 ios->mean.u.f = ios->S.u.f = 0;
1827}
1828
1829void reset_io_stats(struct thread_data *td)
1830{
1831 struct thread_stat *ts = &td->ts;
1832 int i, j;
1833
1834 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1835 reset_io_stat(&ts->clat_stat[i]);
1836 reset_io_stat(&ts->slat_stat[i]);
1837 reset_io_stat(&ts->lat_stat[i]);
1838 reset_io_stat(&ts->bw_stat[i]);
1839 reset_io_stat(&ts->iops_stat[i]);
1840
1841 ts->io_bytes[i] = 0;
1842 ts->runtime[i] = 0;
1843
1844 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1845 ts->io_u_plat[i][j] = 0;
1846 }
1847
1848 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1849 ts->io_u_map[i] = 0;
1850 ts->io_u_submit[i] = 0;
1851 ts->io_u_complete[i] = 0;
1852 ts->io_u_lat_u[i] = 0;
1853 ts->io_u_lat_m[i] = 0;
1854 ts->total_submit = 0;
1855 ts->total_complete = 0;
1856 }
1857
1858 for (i = 0; i < 3; i++) {
1859 ts->total_io_u[i] = 0;
1860 ts->short_io_u[i] = 0;
1861 ts->drop_io_u[i] = 0;
1862 }
1863}
1864
1865static void _add_stat_to_log(struct io_log *iolog, unsigned long elapsed)
1866{
1867 /*
1868 * Note an entry in the log. Use the mean from the logged samples,
1869 * making sure to properly round up. Only write a log entry if we
1870 * had actual samples done.
1871 */
1872 if (iolog->avg_window[DDIR_READ].samples) {
1873 unsigned long mr;
1874
1875 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
1876 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed, 0);
1877 }
1878 if (iolog->avg_window[DDIR_WRITE].samples) {
1879 unsigned long mw;
1880
1881 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
1882 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed, 0);
1883 }
1884 if (iolog->avg_window[DDIR_TRIM].samples) {
1885 unsigned long mw;
1886
1887 mw = iolog->avg_window[DDIR_TRIM].mean.u.f + 0.50;
1888 __add_log_sample(iolog, mw, DDIR_TRIM, 0, elapsed, 0);
1889 }
1890
1891 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1892 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
1893 reset_io_stat(&iolog->avg_window[DDIR_TRIM]);
1894}
1895
1896static void add_log_sample(struct thread_data *td, struct io_log *iolog,
1897 unsigned long val, enum fio_ddir ddir,
1898 unsigned int bs, uint64_t offset)
1899{
1900 unsigned long elapsed, this_window;
1901
1902 if (!ddir_rw(ddir))
1903 return;
1904
1905 elapsed = mtime_since_now(&td->epoch);
1906
1907 /*
1908 * If no time averaging, just add the log sample.
1909 */
1910 if (!iolog->avg_msec) {
1911 __add_log_sample(iolog, val, ddir, bs, elapsed, offset);
1912 return;
1913 }
1914
1915 /*
1916 * Add the sample. If the time period has passed, then
1917 * add that entry to the log and clear.
1918 */
1919 add_stat_sample(&iolog->avg_window[ddir], val);
1920
1921 /*
1922 * If period hasn't passed, adding the above sample is all we
1923 * need to do.
1924 */
1925 this_window = elapsed - iolog->avg_last;
1926 if (this_window < iolog->avg_msec)
1927 return;
1928
1929 _add_stat_to_log(iolog, elapsed);
1930
1931 iolog->avg_last = elapsed;
1932}
1933
1934void finalize_logs(struct thread_data *td)
1935{
1936 unsigned long elapsed;
1937
1938 elapsed = mtime_since_now(&td->epoch);
1939
1940 if (td->clat_log)
1941 _add_stat_to_log(td->clat_log, elapsed);
1942 if (td->slat_log)
1943 _add_stat_to_log(td->slat_log, elapsed);
1944 if (td->lat_log)
1945 _add_stat_to_log(td->lat_log, elapsed);
1946 if (td->bw_log)
1947 _add_stat_to_log(td->bw_log, elapsed);
1948 if (td->iops_log)
1949 _add_stat_to_log(td->iops_log, elapsed);
1950}
1951
1952void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
1953{
1954 struct io_log *iolog;
1955
1956 if (!ddir_rw(ddir))
1957 return;
1958
1959 iolog = agg_io_log[ddir];
1960 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis(), 0);
1961}
1962
1963static void add_clat_percentile_sample(struct thread_stat *ts,
1964 unsigned long usec, enum fio_ddir ddir)
1965{
1966 unsigned int idx = plat_val_to_idx(usec);
1967 assert(idx < FIO_IO_U_PLAT_NR);
1968
1969 ts->io_u_plat[ddir][idx]++;
1970}
1971
1972void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
1973 unsigned long usec, unsigned int bs, uint64_t offset)
1974{
1975 struct thread_stat *ts = &td->ts;
1976
1977 if (!ddir_rw(ddir))
1978 return;
1979
1980 td_io_u_lock(td);
1981
1982 add_stat_sample(&ts->clat_stat[ddir], usec);
1983
1984 if (td->clat_log)
1985 add_log_sample(td, td->clat_log, usec, ddir, bs, offset);
1986
1987 if (ts->clat_percentiles)
1988 add_clat_percentile_sample(ts, usec, ddir);
1989
1990 td_io_u_unlock(td);
1991}
1992
1993void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
1994 unsigned long usec, unsigned int bs, uint64_t offset)
1995{
1996 struct thread_stat *ts = &td->ts;
1997
1998 if (!ddir_rw(ddir))
1999 return;
2000
2001 td_io_u_lock(td);
2002
2003 add_stat_sample(&ts->slat_stat[ddir], usec);
2004
2005 if (td->slat_log)
2006 add_log_sample(td, td->slat_log, usec, ddir, bs, offset);
2007
2008 td_io_u_unlock(td);
2009}
2010
2011void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
2012 unsigned long usec, unsigned int bs, uint64_t offset)
2013{
2014 struct thread_stat *ts = &td->ts;
2015
2016 if (!ddir_rw(ddir))
2017 return;
2018
2019 td_io_u_lock(td);
2020
2021 add_stat_sample(&ts->lat_stat[ddir], usec);
2022
2023 if (td->lat_log)
2024 add_log_sample(td, td->lat_log, usec, ddir, bs, offset);
2025
2026 td_io_u_unlock(td);
2027}
2028
2029void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
2030 struct timeval *t)
2031{
2032 struct thread_stat *ts = &td->ts;
2033 unsigned long spent, rate;
2034
2035 if (!ddir_rw(ddir))
2036 return;
2037
2038 spent = mtime_since(&td->bw_sample_time, t);
2039 if (spent < td->o.bw_avg_time)
2040 return;
2041
2042 td_io_u_lock(td);
2043
2044 /*
2045 * Compute both read and write rates for the interval.
2046 */
2047 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
2048 uint64_t delta;
2049
2050 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
2051 if (!delta)
2052 continue; /* No entries for interval */
2053
2054 if (spent)
2055 rate = delta * 1000 / spent / 1024;
2056 else
2057 rate = 0;
2058
2059 add_stat_sample(&ts->bw_stat[ddir], rate);
2060
2061 if (td->bw_log)
2062 add_log_sample(td, td->bw_log, rate, ddir, bs, 0);
2063
2064 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
2065 }
2066
2067 fio_gettime(&td->bw_sample_time, NULL);
2068 td_io_u_unlock(td);
2069}
2070
2071void add_iops_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
2072 struct timeval *t)
2073{
2074 struct thread_stat *ts = &td->ts;
2075 unsigned long spent, iops;
2076
2077 if (!ddir_rw(ddir))
2078 return;
2079
2080 spent = mtime_since(&td->iops_sample_time, t);
2081 if (spent < td->o.iops_avg_time)
2082 return;
2083
2084 td_io_u_lock(td);
2085
2086 /*
2087 * Compute both read and write rates for the interval.
2088 */
2089 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
2090 uint64_t delta;
2091
2092 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
2093 if (!delta)
2094 continue; /* No entries for interval */
2095
2096 if (spent)
2097 iops = (delta * 1000) / spent;
2098 else
2099 iops = 0;
2100
2101 add_stat_sample(&ts->iops_stat[ddir], iops);
2102
2103 if (td->iops_log)
2104 add_log_sample(td, td->iops_log, iops, ddir, bs, 0);
2105
2106 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
2107 }
2108
2109 fio_gettime(&td->iops_sample_time, NULL);
2110 td_io_u_unlock(td);
2111}
2112
2113void stat_init(void)
2114{
2115 stat_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
2116}
2117
2118void stat_exit(void)
2119{
2120 /*
2121 * When we have the mutex, we know out-of-band access to it
2122 * have ended.
2123 */
2124 fio_mutex_down(stat_mutex);
2125 fio_mutex_remove(stat_mutex);
2126}
2127
2128/*
2129 * Called from signal handler. Wake up status thread.
2130 */
2131void show_running_run_stats(void)
2132{
2133 helper_do_stat = 1;
2134 pthread_cond_signal(&helper_cond);
2135}
2136
2137uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u)
2138{
2139 /* Ignore io_u's which span multiple blocks--they will just get
2140 * inaccurate counts. */
2141 int idx = (io_u->offset - io_u->file->file_offset)
2142 / td->o.bs[DDIR_TRIM];
2143 uint32_t *info = &td->ts.block_infos[idx];
2144 assert(idx < td->ts.nr_block_infos);
2145 return info;
2146}