stat: clean up calc_clat_percentiles
[fio.git] / stat.c
CommitLineData
3c39a379
JA
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
5c4e1dbc 4#include <sys/stat.h>
3c39a379
JA
5#include <math.h>
6
7#include "fio.h"
7c9b1bce 8#include "diskutil.h"
c7c6cb4c 9#include "lib/ieee754.h"
cc372b17 10#include "json.h"
44404c5a 11#include "lib/getrusage.h"
f2a2ce0e 12#include "idletime.h"
0f38bbef 13#include "lib/pow2.h"
a666cab8 14#include "lib/output_buffer.h"
a39fb9ea 15#include "helper_thread.h"
90d2d53f 16#include "smalloc.h"
fd5d733f 17#include "zbd.h"
3c39a379 18
674456bf 19#define LOG_MSEC_SLACK 1
d454a205 20
971caeb1 21struct fio_sem *stat_sem;
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);
8b6a404c 38 ts->usr_time += mtime_since_tv(&td->ru_start.ru_utime,
c8aaba19 39 &td->ru_end.ru_utime);
8b6a404c 40 ts->sys_time += mtime_since_tv(&td->ru_start.ru_stime,
c8aaba19
JA
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 */
d6bb626e 59static unsigned int plat_val_to_idx(unsigned long long val)
83349190
YH
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
d6bb626e 67 msb = (sizeof(val)*8) - __builtin_clzll(val) - 1;
83349190 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 */
129e4193 99static unsigned long long plat_idx_to_val(unsigned int idx)
83349190 100{
c8b44cfa
RL
101 unsigned int error_bits;
102 unsigned long long k, base;
83349190
YH
103
104 assert(idx < FIO_IO_U_PLAT_NR);
105
106 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
107 * all bits of the sample as index */
3c3ed070 108 if (idx < (FIO_IO_U_PLAT_VAL << 1))
83349190
YH
109 return idx;
110
111 /* Find the group and compute the minimum value of that group */
3c3ed070 112 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
c8b44cfa 113 base = ((unsigned long long) 1) << (error_bits + FIO_IO_U_PLAT_BITS);
83349190
YH
114
115 /* Find its bucket number of the group */
116 k = idx % FIO_IO_U_PLAT_VAL;
117
118 /* Return the mean of the range of the bucket */
119 return base + ((k + 0.5) * (1 << error_bits));
120}
121
122static int double_cmp(const void *a, const void *b)
123{
802ad4a8
JA
124 const fio_fp64_t fa = *(const fio_fp64_t *) a;
125 const fio_fp64_t fb = *(const fio_fp64_t *) b;
83349190
YH
126 int cmp = 0;
127
802ad4a8 128 if (fa.u.f > fb.u.f)
83349190 129 cmp = 1;
802ad4a8 130 else if (fa.u.f < fb.u.f)
83349190
YH
131 cmp = -1;
132
133 return cmp;
134}
135
6cc0e5aa 136unsigned int calc_clat_percentiles(uint64_t *io_u_plat, unsigned long long nr,
d6bb626e
VF
137 fio_fp64_t *plist, unsigned long long **output,
138 unsigned long long *maxv, unsigned long long *minv)
83349190 139{
447b94e1 140 unsigned long long sum = 0;
1db92cb6 141 unsigned int len, i, j = 0;
d6bb626e 142 unsigned long long *ovals = NULL;
8985b491 143 bool is_last;
1db92cb6 144
d6bb626e 145 *minv = -1ULL;
1db92cb6 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
5d89c625
VF
163 ovals = malloc(len * sizeof(*ovals));
164 if (!ovals)
165 return 0;
166
4f6f8298
JA
167 /*
168 * Calculate bucket values, note down max and min values
169 */
8985b491 170 is_last = false;
07511a63 171 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
83349190 172 sum += io_u_plat[i];
802ad4a8
JA
173 while (sum >= (plist[j].u.f / 100.0 * nr)) {
174 assert(plist[j].u.f <= 100.0);
83349190 175
4f6f8298 176 ovals[j] = plat_idx_to_val(i);
1db92cb6
JA
177 if (ovals[j] < *minv)
178 *minv = ovals[j];
179 if (ovals[j] > *maxv)
180 *maxv = ovals[j];
07511a63 181
8985b491 182 is_last = (j == len - 1) != 0;
07511a63
JA
183 if (is_last)
184 break;
185
4f6f8298
JA
186 j++;
187 }
188 }
83349190 189
1db92cb6
JA
190 *output = ovals;
191 return len;
192}
193
194/*
195 * Find and display the p-th percentile of clat
196 */
6cc0e5aa 197static void show_clat_percentiles(uint64_t *io_u_plat, unsigned long long nr,
a666cab8 198 fio_fp64_t *plist, unsigned int precision,
b2b3eefe 199 const char *pre, struct buf_output *out)
1db92cb6 200{
d6bb626e
VF
201 unsigned int divisor, len, i, j = 0;
202 unsigned long long minv, maxv;
203 unsigned long long *ovals;
8985b491 204 int per_line, scale_down, time_width;
8985b491 205 bool is_last;
eef02441 206 char fmt[32];
1db92cb6
JA
207
208 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
b2b3eefe 209 if (!len || !ovals)
1db92cb6
JA
210 goto out;
211
4f6f8298 212 /*
d6bb626e
VF
213 * We default to nsecs, but if the value range is such that we
214 * should scale down to usecs or msecs, do that.
4f6f8298 215 */
d6bb626e
VF
216 if (minv > 2000000 && maxv > 99999999ULL) {
217 scale_down = 2;
218 divisor = 1000000;
b599759b 219 log_buf(out, " %s percentiles (msec):\n |", pre);
d6bb626e
VF
220 } else if (minv > 2000 && maxv > 99999) {
221 scale_down = 1;
222 divisor = 1000;
b599759b 223 log_buf(out, " %s percentiles (usec):\n |", pre);
4f6f8298
JA
224 } else {
225 scale_down = 0;
d6bb626e 226 divisor = 1;
b599759b 227 log_buf(out, " %s percentiles (nsec):\n |", pre);
4f6f8298 228 }
83349190 229
619adf9c 230
d6bb626e 231 time_width = max(5, (int) (log10(maxv / divisor) + 1));
74558486
JA
232 snprintf(fmt, sizeof(fmt), " %%%u.%ufth=[%%%dllu]%%c", precision + 3,
233 precision, time_width);
234 /* fmt will be something like " %5.2fth=[%4llu]%c" */
d6bb626e 235 per_line = (80 - 7) / (precision + 10 + time_width);
81ab0b3a 236
d6bb626e 237 for (j = 0; j < len; j++) {
4f6f8298 238 /* for formatting */
eef02441 239 if (j != 0 && (j % per_line) == 0)
a666cab8 240 log_buf(out, " |");
83349190 241
4f6f8298 242 /* end of the list */
8985b491 243 is_last = (j == len - 1) != 0;
83349190 244
d6bb626e 245 for (i = 0; i < scale_down; i++)
4f6f8298
JA
246 ovals[j] = (ovals[j] + 999) / 1000;
247
d6bb626e 248 log_buf(out, fmt, plist[j].u.f, ovals[j], is_last ? '\n' : ',');
4f6f8298
JA
249
250 if (is_last)
251 break;
252
eef02441 253 if ((j % per_line) == per_line - 1) /* for formatting */
a666cab8 254 log_buf(out, "\n");
83349190 255 }
4f6f8298 256
1db92cb6 257out:
4f6f8298
JA
258 if (ovals)
259 free(ovals);
83349190
YH
260}
261
74558486
JA
262bool calc_lat(struct io_stat *is, unsigned long long *min,
263 unsigned long long *max, double *mean, double *dev)
3c39a379 264{
ee0ccb79 265 double n = (double) is->samples;
3c39a379 266
ee0ccb79 267 if (n == 0)
8aa89d70 268 return false;
3c39a379
JA
269
270 *min = is->min_val;
271 *max = is->max_val;
802ad4a8 272 *mean = is->mean.u.f;
e6d276f2 273
68704084 274 if (n > 1.0)
802ad4a8 275 *dev = sqrt(is->S.u.f / (n - 1.0));
ef9c5c40 276 else
4b43f54e 277 *dev = 0;
ef9c5c40 278
8aa89d70 279 return true;
3c39a379
JA
280}
281
a666cab8 282void show_group_stats(struct group_run_stats *rs, struct buf_output *out)
3c39a379 283{
d694a6a7
RE
284 char *io, *agg, *min, *max;
285 char *ioalt, *aggalt, *minalt, *maxalt;
42da5c8b 286 const char *str[] = { " READ", " WRITE" , " TRIM"};
dbe1125e
JA
287 int i;
288
a666cab8 289 log_buf(out, "\nRun status group %d (all jobs):\n", rs->groupid);
3c39a379 290
6eaf09d6 291 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
90fef2d1
JA
292 const int i2p = is_power_of_2(rs->kb_base);
293
dbe1125e
JA
294 if (!rs->max_run[i])
295 continue;
296
e883cb35
JF
297 io = num2str(rs->iobytes[i], rs->sig_figs, 1, i2p, N2S_BYTE);
298 ioalt = num2str(rs->iobytes[i], rs->sig_figs, 1, !i2p, N2S_BYTE);
299 agg = num2str(rs->agg[i], rs->sig_figs, 1, i2p, rs->unit_base);
300 aggalt = num2str(rs->agg[i], rs->sig_figs, 1, !i2p, rs->unit_base);
301 min = num2str(rs->min_bw[i], rs->sig_figs, 1, i2p, rs->unit_base);
302 minalt = num2str(rs->min_bw[i], rs->sig_figs, 1, !i2p, rs->unit_base);
303 max = num2str(rs->max_bw[i], rs->sig_figs, 1, i2p, rs->unit_base);
304 maxalt = num2str(rs->max_bw[i], rs->sig_figs, 1, !i2p, rs->unit_base);
d694a6a7 305 log_buf(out, "%s: bw=%s (%s), %s-%s (%s-%s), io=%s (%s), run=%llu-%llumsec\n",
42da5c8b 306 rs->unified_rw_rep ? " MIXED" : str[i],
d694a6a7 307 agg, aggalt, min, max, minalt, maxalt, io, ioalt,
4e0a8fa2
JA
308 (unsigned long long) rs->min_run[i],
309 (unsigned long long) rs->max_run[i]);
dbe1125e 310
d694a6a7
RE
311 free(io);
312 free(agg);
313 free(min);
314 free(max);
315 free(ioalt);
316 free(aggalt);
317 free(minalt);
318 free(maxalt);
dbe1125e 319 }
3c39a379
JA
320}
321
6cc0e5aa 322void stat_calc_dist(uint64_t *map, unsigned long total, double *io_u_dist)
2270890c
JA
323{
324 int i;
325
326 /*
327 * Do depth distribution calculations
328 */
329 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
838bc709
JA
330 if (total) {
331 io_u_dist[i] = (double) map[i] / (double) total;
332 io_u_dist[i] *= 100.0;
333 if (io_u_dist[i] < 0.1 && map[i])
334 io_u_dist[i] = 0.1;
335 } else
336 io_u_dist[i] = 0.0;
2270890c
JA
337 }
338}
339
04a0feae 340static void stat_calc_lat(struct thread_stat *ts, double *dst,
6cc0e5aa 341 uint64_t *src, int nr)
2270890c 342{
d79db122 343 unsigned long total = ddir_rw_sum(ts->total_io_u);
2270890c
JA
344 int i;
345
346 /*
347 * Do latency distribution calculations
348 */
04a0feae 349 for (i = 0; i < nr; i++) {
838bc709
JA
350 if (total) {
351 dst[i] = (double) src[i] / (double) total;
352 dst[i] *= 100.0;
353 if (dst[i] < 0.01 && src[i])
354 dst[i] = 0.01;
355 } else
356 dst[i] = 0.0;
2270890c
JA
357 }
358}
359
247823cc
VF
360/*
361 * To keep the terse format unaltered, add all of the ns latency
362 * buckets to the first us latency bucket
363 */
52e4c651 364static void stat_calc_lat_nu(struct thread_stat *ts, double *io_u_lat_u)
247823cc
VF
365{
366 unsigned long ntotal = 0, total = ddir_rw_sum(ts->total_io_u);
367 int i;
368
369 stat_calc_lat(ts, io_u_lat_u, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
370
371 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++)
372 ntotal += ts->io_u_lat_n[i];
373
374 io_u_lat_u[0] += 100.0 * (double) ntotal / (double) total;
375}
376
d6bb626e
VF
377void stat_calc_lat_n(struct thread_stat *ts, double *io_u_lat)
378{
379 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_n, FIO_IO_U_LAT_N_NR);
380}
381
e5bd1347 382void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
383{
384 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
385}
386
e5bd1347 387void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
388{
389 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
390}
391
74558486
JA
392static void display_lat(const char *name, unsigned long long min,
393 unsigned long long max, double mean, double dev,
394 struct buf_output *out)
ea2accc5 395{
d6bb626e 396 const char *base = "(nsec)";
b29ad562 397 char *minp, *maxp;
ea2accc5 398
d6bb626e 399 if (nsec_to_msec(&min, &max, &mean, &dev))
b29ad562 400 base = "(msec)";
d6bb626e
VF
401 else if (nsec_to_usec(&min, &max, &mean, &dev))
402 base = "(usec)";
b29ad562 403
d694a6a7
RE
404 minp = num2str(min, 6, 1, 0, N2S_NONE);
405 maxp = num2str(max, 6, 1, 0, N2S_NONE);
b29ad562 406
a666cab8 407 log_buf(out, " %s %s: min=%s, max=%s, avg=%5.02f,"
b29ad562
JA
408 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
409
410 free(minp);
411 free(maxp);
ea2accc5
JA
412}
413
756867bd 414static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
a666cab8 415 int ddir, struct buf_output *out)
3c39a379 416{
d6bb626e
VF
417 unsigned long runt;
418 unsigned long long min, max, bw, iops;
3c39a379 419 double mean, dev;
96563db9 420 char *io_p, *bw_p, *bw_p_alt, *iops_p, *post_st = NULL;
90fef2d1 421 int i2p;
3c39a379 422
b2b3eefe
JA
423 if (ddir_sync(ddir)) {
424 if (calc_lat(&ts->sync_stat, &min, &max, &mean, &dev)) {
425 log_buf(out, " %s:\n", "fsync/fdatasync/sync_file_range");
425d3e0e 426 display_lat(io_ddir_name(ddir), min, max, mean, dev, out);
b2b3eefe
JA
427 show_clat_percentiles(ts->io_u_sync_plat,
428 ts->sync_stat.samples,
429 ts->percentile_list,
430 ts->percentile_precision,
425d3e0e 431 io_ddir_name(ddir), out);
b2b3eefe
JA
432 }
433 return;
434 }
435
ff58fced
JA
436 assert(ddir_rw(ddir));
437
756867bd 438 if (!ts->runtime[ddir])
3c39a379
JA
439 return;
440
90fef2d1 441 i2p = is_power_of_2(rs->kb_base);
8879fd15
JA
442 runt = ts->runtime[ddir];
443
444 bw = (1000 * ts->io_bytes[ddir]) / runt;
e883cb35
JF
445 io_p = num2str(ts->io_bytes[ddir], ts->sig_figs, 1, i2p, N2S_BYTE);
446 bw_p = num2str(bw, ts->sig_figs, 1, i2p, ts->unit_base);
447 bw_p_alt = num2str(bw, ts->sig_figs, 1, !i2p, ts->unit_base);
8879fd15 448
0aacc50c 449 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
e883cb35 450 iops_p = num2str(iops, ts->sig_figs, 1, 0, N2S_NONE);
fd5d733f 451 if (ddir == DDIR_WRITE)
96563db9
JA
452 post_st = zbd_write_status(ts);
453 else if (ddir == DDIR_READ && ts->cachehit && ts->cachemiss) {
454 uint64_t total;
455 double hit;
456
457 total = ts->cachehit + ts->cachemiss;
458 hit = (double) ts->cachehit / (double) total;
459 hit *= 100.0;
460 if (asprintf(&post_st, "; Cachehit=%0.2f%%", hit) < 0)
461 post_st = NULL;
462 }
dbe1125e 463
fd5d733f 464 log_buf(out, " %s: IOPS=%s, BW=%s (%s)(%s/%llumsec)%s\n",
425d3e0e 465 rs->unified_rw_rep ? "mixed" : io_ddir_name(ddir),
d694a6a7 466 iops_p, bw_p, bw_p_alt, io_p,
fd5d733f 467 (unsigned long long) ts->runtime[ddir],
96563db9 468 post_st ? : "");
dbe1125e 469
96563db9 470 free(post_st);
dbe1125e
JA
471 free(io_p);
472 free(bw_p);
d694a6a7 473 free(bw_p_alt);
b3605062 474 free(iops_p);
3c39a379 475
b29ad562 476 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 477 display_lat("slat", min, max, mean, dev, out);
b29ad562 478 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 479 display_lat("clat", min, max, mean, dev, out);
b29ad562 480 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 481 display_lat(" lat", min, max, mean, dev, out);
02af0988 482
b599759b 483 if (ts->clat_percentiles || ts->lat_percentiles) {
b2b3eefe 484 const char *name = ts->clat_percentiles ? "clat" : " lat";
af1600c1
SW
485 uint64_t samples;
486
487 if (ts->clat_percentiles)
488 samples = ts->clat_stat[ddir].samples;
489 else
490 samples = ts->lat_stat[ddir].samples;
491
83349190 492 show_clat_percentiles(ts->io_u_plat[ddir],
af1600c1 493 samples,
435d195a 494 ts->percentile_list,
b2b3eefe 495 ts->percentile_precision, name, out);
83349190 496 }
079ad09b 497 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
142c7f2d 498 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
d694a6a7
RE
499 const char *bw_str;
500
501 if ((rs->unit_base == 1) && i2p)
502 bw_str = "Kibit";
503 else if (rs->unit_base == 1)
504 bw_str = "kbit";
505 else if (i2p)
506 bw_str = "KiB";
507 else
508 bw_str = "kB";
d686990a 509
d1707474
SW
510 if (rs->agg[ddir]) {
511 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
512 if (p_of_agg > 100.0)
513 p_of_agg = 100.0;
514 }
515
d686990a
SN
516 if (rs->unit_base == 1) {
517 min *= 8.0;
518 max *= 8.0;
519 mean *= 8.0;
520 dev *= 8.0;
521 }
3c39a379 522
142c7f2d
SN
523 if (mean > fkb_base * fkb_base) {
524 min /= fkb_base;
525 max /= fkb_base;
526 mean /= fkb_base;
527 dev /= fkb_base;
d694a6a7 528 bw_str = (rs->unit_base == 1 ? "Mibit" : "MiB");
b7017e32
JA
529 }
530
54c05828 531 log_buf(out, " bw (%5s/s): min=%5llu, max=%5llu, per=%3.2f%%, "
29eb371b 532 "avg=%5.02f, stdev=%5.02f, samples=%" PRIu64 "\n",
54c05828
AH
533 bw_str, min, max, p_of_agg, mean, dev,
534 (&ts->bw_stat[ddir])->samples);
3c39a379 535 }
188b6016 536 if (calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev)) {
21ba6606 537 log_buf(out, " iops : min=%5llu, max=%5llu, "
29eb371b 538 "avg=%5.02f, stdev=%5.02f, samples=%" PRIu64 "\n",
54c05828 539 min, max, mean, dev, (&ts->iops_stat[ddir])->samples);
188b6016 540 }
3c39a379
JA
541}
542
8985b491
JA
543static bool show_lat(double *io_u_lat, int nr, const char **ranges,
544 const char *msg, struct buf_output *out)
04a0feae 545{
8985b491
JA
546 bool new_line = true, shown = false;
547 int i, line = 0;
04a0feae
JA
548
549 for (i = 0; i < nr; i++) {
550 if (io_u_lat[i] <= 0.0)
551 continue;
8985b491 552 shown = true;
04a0feae 553 if (new_line) {
4539ed73 554 if (line)
a666cab8 555 log_buf(out, "\n");
4a19fcaa 556 log_buf(out, " lat (%s) : ", msg);
8985b491 557 new_line = false;
04a0feae
JA
558 line = 0;
559 }
560 if (line)
a666cab8
JA
561 log_buf(out, ", ");
562 log_buf(out, "%s%3.2f%%", ranges[i], io_u_lat[i]);
04a0feae
JA
563 line++;
564 if (line == 5)
8985b491 565 new_line = true;
04a0feae 566 }
7e1773ba
JA
567
568 if (shown)
a666cab8 569 log_buf(out, "\n");
7e1773ba 570
8985b491 571 return true;
04a0feae
JA
572}
573
d6bb626e
VF
574static void show_lat_n(double *io_u_lat_n, struct buf_output *out)
575{
576 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
577 "250=", "500=", "750=", "1000=", };
578
579 show_lat(io_u_lat_n, FIO_IO_U_LAT_N_NR, ranges, "nsec", out);
580}
581
a666cab8 582static void show_lat_u(double *io_u_lat_u, struct buf_output *out)
04a0feae
JA
583{
584 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
585 "250=", "500=", "750=", "1000=", };
586
a666cab8 587 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec", out);
04a0feae
JA
588}
589
a666cab8 590static void show_lat_m(double *io_u_lat_m, struct buf_output *out)
04a0feae
JA
591{
592 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
593 "250=", "500=", "750=", "1000=", "2000=",
594 ">=2000=", };
595
a666cab8 596 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec", out);
04a0feae
JA
597}
598
a666cab8 599static void show_latencies(struct thread_stat *ts, struct buf_output *out)
04a0feae 600{
d6bb626e 601 double io_u_lat_n[FIO_IO_U_LAT_N_NR];
c551f65a
JA
602 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
603 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
604
d6bb626e 605 stat_calc_lat_n(ts, io_u_lat_n);
5a18988e
JA
606 stat_calc_lat_u(ts, io_u_lat_u);
607 stat_calc_lat_m(ts, io_u_lat_m);
608
d6bb626e 609 show_lat_n(io_u_lat_n, out);
a666cab8
JA
610 show_lat_u(io_u_lat_u, out);
611 show_lat_m(io_u_lat_m, out);
04a0feae
JA
612}
613
66347cfa
DE
614static int block_state_category(int block_state)
615{
616 switch (block_state) {
617 case BLOCK_STATE_UNINIT:
618 return 0;
619 case BLOCK_STATE_TRIMMED:
620 case BLOCK_STATE_WRITTEN:
621 return 1;
622 case BLOCK_STATE_WRITE_FAILURE:
623 case BLOCK_STATE_TRIM_FAILURE:
624 return 2;
625 default:
081c2dc3 626 /* Silence compile warning on some BSDs and have a return */
66347cfa 627 assert(0);
07ff5841 628 return -1;
66347cfa
DE
629 }
630}
631
632static int compare_block_infos(const void *bs1, const void *bs2)
633{
5fff9543
JF
634 uint64_t block1 = *(uint64_t *)bs1;
635 uint64_t block2 = *(uint64_t *)bs2;
66347cfa
DE
636 int state1 = BLOCK_INFO_STATE(block1);
637 int state2 = BLOCK_INFO_STATE(block2);
638 int bscat1 = block_state_category(state1);
639 int bscat2 = block_state_category(state2);
640 int cycles1 = BLOCK_INFO_TRIMS(block1);
641 int cycles2 = BLOCK_INFO_TRIMS(block2);
642
643 if (bscat1 < bscat2)
644 return -1;
645 if (bscat1 > bscat2)
646 return 1;
647
648 if (cycles1 < cycles2)
649 return -1;
650 if (cycles1 > cycles2)
651 return 1;
652
653 if (state1 < state2)
654 return -1;
655 if (state1 > state2)
656 return 1;
657
658 assert(block1 == block2);
659 return 0;
660}
661
662static int calc_block_percentiles(int nr_block_infos, uint32_t *block_infos,
663 fio_fp64_t *plist, unsigned int **percentiles,
664 unsigned int *types)
665{
666 int len = 0;
667 int i, nr_uninit;
668
669 qsort(block_infos, nr_block_infos, sizeof(uint32_t), compare_block_infos);
670
671 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
672 len++;
673
674 if (!len)
675 return 0;
676
677 /*
678 * Sort the percentile list. Note that it may already be sorted if
679 * we are using the default values, but since it's a short list this
680 * isn't a worry. Also note that this does not work for NaN values.
681 */
682 if (len > 1)
683 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
684
66347cfa
DE
685 /* Start only after the uninit entries end */
686 for (nr_uninit = 0;
687 nr_uninit < nr_block_infos
688 && BLOCK_INFO_STATE(block_infos[nr_uninit]) == BLOCK_STATE_UNINIT;
689 nr_uninit ++)
690 ;
691
692 if (nr_uninit == nr_block_infos)
693 return 0;
694
695 *percentiles = calloc(len, sizeof(**percentiles));
696
697 for (i = 0; i < len; i++) {
698 int idx = (plist[i].u.f * (nr_block_infos - nr_uninit) / 100)
699 + nr_uninit;
700 (*percentiles)[i] = BLOCK_INFO_TRIMS(block_infos[idx]);
701 }
702
703 memset(types, 0, sizeof(*types) * BLOCK_STATE_COUNT);
704 for (i = 0; i < nr_block_infos; i++)
705 types[BLOCK_INFO_STATE(block_infos[i])]++;
706
707 return len;
708}
709
710static const char *block_state_names[] = {
711 [BLOCK_STATE_UNINIT] = "unwritten",
712 [BLOCK_STATE_TRIMMED] = "trimmed",
713 [BLOCK_STATE_WRITTEN] = "written",
714 [BLOCK_STATE_TRIM_FAILURE] = "trim failure",
715 [BLOCK_STATE_WRITE_FAILURE] = "write failure",
716};
717
718static void show_block_infos(int nr_block_infos, uint32_t *block_infos,
a666cab8 719 fio_fp64_t *plist, struct buf_output *out)
66347cfa
DE
720{
721 int len, pos, i;
722 unsigned int *percentiles = NULL;
723 unsigned int block_state_counts[BLOCK_STATE_COUNT];
724
725 len = calc_block_percentiles(nr_block_infos, block_infos, plist,
726 &percentiles, block_state_counts);
727
a666cab8 728 log_buf(out, " block lifetime percentiles :\n |");
66347cfa
DE
729 pos = 0;
730 for (i = 0; i < len; i++) {
731 uint32_t block_info = percentiles[i];
732#define LINE_LENGTH 75
733 char str[LINE_LENGTH];
734 int strln = snprintf(str, LINE_LENGTH, " %3.2fth=%u%c",
735 plist[i].u.f, block_info,
736 i == len - 1 ? '\n' : ',');
737 assert(strln < LINE_LENGTH);
738 if (pos + strln > LINE_LENGTH) {
739 pos = 0;
a666cab8 740 log_buf(out, "\n |");
66347cfa 741 }
a666cab8 742 log_buf(out, "%s", str);
66347cfa
DE
743 pos += strln;
744#undef LINE_LENGTH
745 }
746 if (percentiles)
747 free(percentiles);
748
a666cab8 749 log_buf(out, " states :");
66347cfa 750 for (i = 0; i < BLOCK_STATE_COUNT; i++)
a666cab8 751 log_buf(out, " %s=%u%c",
66347cfa
DE
752 block_state_names[i], block_state_counts[i],
753 i == BLOCK_STATE_COUNT - 1 ? '\n' : ',');
754}
755
d685adfb
VF
756static void show_ss_normal(struct thread_stat *ts, struct buf_output *out)
757{
d694a6a7 758 char *p1, *p1alt, *p2;
d685adfb
VF
759 unsigned long long bw_mean, iops_mean;
760 const int i2p = is_power_of_2(ts->kb_base);
761
0c13c969 762 if (!ts->ss_dur)
d685adfb
VF
763 return;
764
bb49c8bd
VF
765 bw_mean = steadystate_bw_mean(ts);
766 iops_mean = steadystate_iops_mean(ts);
d685adfb 767
e883cb35
JF
768 p1 = num2str(bw_mean / ts->kb_base, ts->sig_figs, ts->kb_base, i2p, ts->unit_base);
769 p1alt = num2str(bw_mean / ts->kb_base, ts->sig_figs, ts->kb_base, !i2p, ts->unit_base);
770 p2 = num2str(iops_mean, ts->sig_figs, 1, 0, N2S_NONE);
d685adfb 771
d694a6a7 772 log_buf(out, " steadystate : attained=%s, bw=%s (%s), iops=%s, %s%s=%.3f%s\n",
c8caba48 773 ts->ss_state & FIO_SS_ATTAINED ? "yes" : "no",
d694a6a7 774 p1, p1alt, p2,
c8caba48
JA
775 ts->ss_state & FIO_SS_IOPS ? "iops" : "bw",
776 ts->ss_state & FIO_SS_SLOPE ? " slope": " mean dev",
bb49c8bd 777 ts->ss_criterion.u.f,
c8caba48 778 ts->ss_state & FIO_SS_PCT ? "%" : "");
d685adfb
VF
779
780 free(p1);
d694a6a7 781 free(p1alt);
d685adfb
VF
782 free(p2);
783}
784
10aa136b 785static void show_thread_status_normal(struct thread_stat *ts,
a666cab8
JA
786 struct group_run_stats *rs,
787 struct buf_output *out)
3c39a379
JA
788{
789 double usr_cpu, sys_cpu;
69008999 790 unsigned long runtime;
71619dc2 791 double io_u_dist[FIO_IO_U_MAP_NR];
57a64324 792 time_t time_p;
35326842 793 char time_buf[32];
3c39a379 794
9966af7b 795 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u))
3c39a379 796 return;
33477b4b
JS
797
798 memset(time_buf, 0, sizeof(time_buf));
3c39a379 799
57a64324 800 time(&time_p);
45054cbe 801 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
57a64324 802
5ec10eaa 803 if (!ts->error) {
a666cab8 804 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
5ec10eaa 805 ts->name, ts->groupid, ts->members,
57a64324 806 ts->error, (int) ts->pid, time_buf);
5ec10eaa 807 } else {
a666cab8 808 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
5ec10eaa 809 ts->name, ts->groupid, ts->members,
57a64324
JA
810 ts->error, ts->verror, (int) ts->pid,
811 time_buf);
5ec10eaa 812 }
3c39a379 813
259e47de 814 if (strlen(ts->description))
a666cab8 815 log_buf(out, " Description : [%s]\n", ts->description);
7bdce1bd 816
756867bd 817 if (ts->io_bytes[DDIR_READ])
a666cab8 818 show_ddir_status(rs, ts, DDIR_READ, out);
756867bd 819 if (ts->io_bytes[DDIR_WRITE])
a666cab8 820 show_ddir_status(rs, ts, DDIR_WRITE, out);
6eaf09d6 821 if (ts->io_bytes[DDIR_TRIM])
a666cab8 822 show_ddir_status(rs, ts, DDIR_TRIM, out);
3c39a379 823
a666cab8 824 show_latencies(ts, out);
7e1773ba 825
b2b3eefe
JA
826 if (ts->sync_stat.samples)
827 show_ddir_status(rs, ts, DDIR_SYNC, out);
828
756867bd 829 runtime = ts->total_run_time;
69008999 830 if (runtime) {
1e97cce9 831 double runt = (double) runtime;
3c39a379 832
756867bd
JA
833 usr_cpu = (double) ts->usr_time * 100 / runt;
834 sys_cpu = (double) ts->sys_time * 100 / runt;
3c39a379
JA
835 } else {
836 usr_cpu = 0;
837 sys_cpu = 0;
838 }
839
a666cab8 840 log_buf(out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%llu,"
4e0a8fa2
JA
841 " majf=%llu, minf=%llu\n", usr_cpu, sys_cpu,
842 (unsigned long long) ts->ctx,
843 (unsigned long long) ts->majf,
844 (unsigned long long) ts->minf);
71619dc2 845
d79db122 846 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
a666cab8 847 log_buf(out, " IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
5ec10eaa
JA
848 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
849 io_u_dist[1], io_u_dist[2],
850 io_u_dist[3], io_u_dist[4],
851 io_u_dist[5], io_u_dist[6]);
838bc709
JA
852
853 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
a666cab8 854 log_buf(out, " submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
838bc709
JA
855 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
856 io_u_dist[1], io_u_dist[2],
857 io_u_dist[3], io_u_dist[4],
858 io_u_dist[5], io_u_dist[6]);
859 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
a666cab8 860 log_buf(out, " complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
838bc709
JA
861 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
862 io_u_dist[1], io_u_dist[2],
863 io_u_dist[3], io_u_dist[4],
864 io_u_dist[5], io_u_dist[6]);
7f3ecee2
JA
865 log_buf(out, " issued rwts: total=%llu,%llu,%llu,%llu"
866 " short=%llu,%llu,%llu,0"
867 " dropped=%llu,%llu,%llu,0\n",
4e0a8fa2
JA
868 (unsigned long long) ts->total_io_u[0],
869 (unsigned long long) ts->total_io_u[1],
870 (unsigned long long) ts->total_io_u[2],
7f3ecee2 871 (unsigned long long) ts->total_io_u[3],
4e0a8fa2
JA
872 (unsigned long long) ts->short_io_u[0],
873 (unsigned long long) ts->short_io_u[1],
3bcb9d94
JA
874 (unsigned long long) ts->short_io_u[2],
875 (unsigned long long) ts->drop_io_u[0],
876 (unsigned long long) ts->drop_io_u[1],
877 (unsigned long long) ts->drop_io_u[2]);
f2bba182 878 if (ts->continue_on_error) {
a666cab8 879 log_buf(out, " errors : total=%llu, first_error=%d/<%s>\n",
4e0a8fa2 880 (unsigned long long)ts->total_err_count,
1ec99eea
JA
881 ts->first_error,
882 strerror(ts->first_error));
f2bba182 883 }
3e260a46 884 if (ts->latency_depth) {
a666cab8 885 log_buf(out, " latency : target=%llu, window=%llu, percentile=%.2f%%, depth=%u\n",
3e260a46
JA
886 (unsigned long long)ts->latency_target,
887 (unsigned long long)ts->latency_window,
888 ts->latency_percentile.u.f,
889 ts->latency_depth);
890 }
66347cfa
DE
891
892 if (ts->nr_block_infos)
893 show_block_infos(ts->nr_block_infos, ts->block_infos,
a666cab8 894 ts->percentile_list, out);
d685adfb 895
bb49c8bd 896 if (ts->ss_dur)
d685adfb 897 show_ss_normal(ts, out);
3c39a379
JA
898}
899
756867bd 900static void show_ddir_status_terse(struct thread_stat *ts,
a666cab8 901 struct group_run_stats *rs, int ddir,
a2c95580 902 int ver, struct buf_output *out)
c6ae0a5b 903{
d6bb626e
VF
904 unsigned long long min, max, minv, maxv, bw, iops;
905 unsigned long long *ovals = NULL;
c6ae0a5b 906 double mean, dev;
d6bb626e 907 unsigned int len;
a2c95580 908 int i, bw_stat;
c6ae0a5b 909
ff58fced
JA
910 assert(ddir_rw(ddir));
911
312b4af2
JA
912 iops = bw = 0;
913 if (ts->runtime[ddir]) {
914 uint64_t runt = ts->runtime[ddir];
915
420b104a 916 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; /* KiB/s */
312b4af2
JA
917 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
918 }
c6ae0a5b 919
a666cab8 920 log_buf(out, ";%llu;%llu;%llu;%llu",
4e0a8fa2
JA
921 (unsigned long long) ts->io_bytes[ddir] >> 10, bw, iops,
922 (unsigned long long) ts->runtime[ddir]);
c6ae0a5b 923
079ad09b 924 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
247823cc 925 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
c6ae0a5b 926 else
d6bb626e 927 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
c6ae0a5b 928
079ad09b 929 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
247823cc 930 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
c6ae0a5b 931 else
d6bb626e 932 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
c6ae0a5b 933
b599759b 934 if (ts->clat_percentiles || ts->lat_percentiles) {
1db92cb6
JA
935 len = calc_clat_percentiles(ts->io_u_plat[ddir],
936 ts->clat_stat[ddir].samples,
937 ts->percentile_list, &ovals, &maxv,
938 &minv);
939 } else
940 len = 0;
941
942 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
943 if (i >= len) {
a666cab8 944 log_buf(out, ";0%%=0");
1db92cb6
JA
945 continue;
946 }
247823cc 947 log_buf(out, ";%f%%=%llu", ts->percentile_list[i].u.f, ovals[i]/1000);
1db92cb6 948 }
2341a37a
K
949
950 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
247823cc 951 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
2341a37a 952 else
d6bb626e 953 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
2341a37a 954
1db92cb6
JA
955 if (ovals)
956 free(ovals);
957
a2c95580
AH
958 bw_stat = calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev);
959 if (bw_stat) {
19d3e967
JA
960 double p_of_agg = 100.0;
961
962 if (rs->agg[ddir]) {
d1707474 963 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
19d3e967
JA
964 if (p_of_agg > 100.0)
965 p_of_agg = 100.0;
966 }
c6ae0a5b 967
d6bb626e 968 log_buf(out, ";%llu;%llu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
c6ae0a5b 969 } else
d6bb626e 970 log_buf(out, ";%llu;%llu;%f%%;%f;%f", 0ULL, 0ULL, 0.0, 0.0, 0.0);
a2c95580
AH
971
972 if (ver == 5) {
973 if (bw_stat)
29eb371b 974 log_buf(out, ";%" PRIu64, (&ts->bw_stat[ddir])->samples);
a2c95580
AH
975 else
976 log_buf(out, ";%lu", 0UL);
977
978 if (calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev))
29eb371b 979 log_buf(out, ";%llu;%llu;%f;%f;%" PRIu64, min, max,
a2c95580
AH
980 mean, dev, (&ts->iops_stat[ddir])->samples);
981 else
982 log_buf(out, ";%llu;%llu;%f;%f;%lu", 0ULL, 0ULL, 0.0, 0.0, 0UL);
983 }
c6ae0a5b
JA
984}
985
cc372b17
SL
986static void add_ddir_status_json(struct thread_stat *ts,
987 struct group_run_stats *rs, int ddir, struct json_object *parent)
988{
d6bb626e 989 unsigned long long min, max, minv, maxv;
aedd021d 990 unsigned long long bw_bytes, bw;
d6bb626e 991 unsigned long long *ovals = NULL;
9f68fe3a 992 double mean, dev, iops;
d6bb626e 993 unsigned int len;
cc372b17 994 int i;
24cab44e 995 struct json_object *dir_object, *tmp_object, *percentile_object, *clat_bins_object = NULL;
cc372b17
SL
996 char buf[120];
997 double p_of_agg = 100.0;
998
b2b3eefe 999 assert(ddir_rw(ddir) || ddir_sync(ddir));
cc372b17 1000
771e58be
JA
1001 if (ts->unified_rw_rep && ddir != DDIR_READ)
1002 return;
1003
cc372b17 1004 dir_object = json_create_object();
771e58be 1005 json_object_add_value_object(parent,
425d3e0e 1006 ts->unified_rw_rep ? "mixed" : io_ddir_name(ddir), dir_object);
cc372b17 1007
b2b3eefe
JA
1008 if (ddir_rw(ddir)) {
1009 bw_bytes = 0;
1010 bw = 0;
1011 iops = 0.0;
1012 if (ts->runtime[ddir]) {
1013 uint64_t runt = ts->runtime[ddir];
cc372b17 1014
b2b3eefe
JA
1015 bw_bytes = ((1000 * ts->io_bytes[ddir]) / runt); /* Bytes/s */
1016 bw = bw_bytes / 1024; /* KiB/s */
1017 iops = (1000.0 * (uint64_t) ts->total_io_u[ddir]) / runt;
1018 }
cc372b17 1019
b2b3eefe
JA
1020 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir]);
1021 json_object_add_value_int(dir_object, "io_kbytes", ts->io_bytes[ddir] >> 10);
1022 json_object_add_value_int(dir_object, "bw_bytes", bw_bytes);
1023 json_object_add_value_int(dir_object, "bw", bw);
1024 json_object_add_value_float(dir_object, "iops", iops);
1025 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
1026 json_object_add_value_int(dir_object, "total_ios", ts->total_io_u[ddir]);
1027 json_object_add_value_int(dir_object, "short_ios", ts->short_io_u[ddir]);
1028 json_object_add_value_int(dir_object, "drop_ios", ts->drop_io_u[ddir]);
1029
1030 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
1031 min = max = 0;
1032 mean = dev = 0.0;
1033 }
1034 tmp_object = json_create_object();
1035 json_object_add_value_object(dir_object, "slat_ns", tmp_object);
1036 json_object_add_value_int(tmp_object, "min", min);
1037 json_object_add_value_int(tmp_object, "max", max);
1038 json_object_add_value_float(tmp_object, "mean", mean);
1039 json_object_add_value_float(tmp_object, "stddev", dev);
1040
1041 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
1042 min = max = 0;
1043 mean = dev = 0.0;
1044 }
1045 tmp_object = json_create_object();
1046 json_object_add_value_object(dir_object, "clat_ns", tmp_object);
1047 json_object_add_value_int(tmp_object, "min", min);
1048 json_object_add_value_int(tmp_object, "max", max);
1049 json_object_add_value_float(tmp_object, "mean", mean);
1050 json_object_add_value_float(tmp_object, "stddev", dev);
1051 } else {
1052 if (!calc_lat(&ts->sync_stat, &min, &max, &mean, &dev)) {
1053 min = max = 0;
1054 mean = dev = 0.0;
1055 }
cc372b17 1056
b2b3eefe
JA
1057 tmp_object = json_create_object();
1058 json_object_add_value_object(dir_object, "lat_ns", tmp_object);
f5ec8123 1059 json_object_add_value_int(dir_object, "total_ios", ts->total_io_u[DDIR_SYNC]);
b2b3eefe
JA
1060 json_object_add_value_int(tmp_object, "min", min);
1061 json_object_add_value_int(tmp_object, "max", max);
1062 json_object_add_value_float(tmp_object, "mean", mean);
1063 json_object_add_value_float(tmp_object, "stddev", dev);
cc372b17 1064 }
cc372b17 1065
b599759b 1066 if (ts->clat_percentiles || ts->lat_percentiles) {
b2b3eefe 1067 if (ddir_rw(ddir)) {
9f2cd5e0
JA
1068 uint64_t samples;
1069
1070 if (ts->clat_percentiles)
1071 samples = ts->clat_stat[ddir].samples;
1072 else
1073 samples = ts->lat_stat[ddir].samples;
1074
b2b3eefe 1075 len = calc_clat_percentiles(ts->io_u_plat[ddir],
9f2cd5e0
JA
1076 samples, ts->percentile_list, &ovals,
1077 &maxv, &minv);
b2b3eefe
JA
1078 } else {
1079 len = calc_clat_percentiles(ts->io_u_sync_plat,
1080 ts->sync_stat.samples,
1081 ts->percentile_list, &ovals, &maxv,
1082 &minv);
1083 }
1084
702bd977
JA
1085 if (len > FIO_IO_U_LIST_MAX_LEN)
1086 len = FIO_IO_U_LIST_MAX_LEN;
cc372b17
SL
1087 } else
1088 len = 0;
1089
1090 percentile_object = json_create_object();
1091 json_object_add_value_object(tmp_object, "percentile", percentile_object);
702bd977 1092 for (i = 0; i < len; i++) {
435d195a 1093 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
cc372b17
SL
1094 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
1095 }
1096
513e37ee
VF
1097 if (output_format & FIO_OUTPUT_JSON_PLUS) {
1098 clat_bins_object = json_create_object();
24cab44e
VF
1099 if (ts->clat_percentiles)
1100 json_object_add_value_object(tmp_object, "bins", clat_bins_object);
1101
513e37ee 1102 for(i = 0; i < FIO_IO_U_PLAT_NR; i++) {
b2b3eefe
JA
1103 if (ddir_rw(ddir)) {
1104 if (ts->io_u_plat[ddir][i]) {
1105 snprintf(buf, sizeof(buf), "%llu", plat_idx_to_val(i));
1106 json_object_add_value_int(clat_bins_object, (const char *)buf, ts->io_u_plat[ddir][i]);
1107 }
1108 } else {
1109 if (ts->io_u_sync_plat[i]) {
1110 snprintf(buf, sizeof(buf), "%llu", plat_idx_to_val(i));
1111 json_object_add_value_int(clat_bins_object, (const char *)buf, ts->io_u_sync_plat[i]);
1112 }
129e4193 1113 }
513e37ee 1114 }
513e37ee
VF
1115 }
1116
b2b3eefe
JA
1117 if (!ddir_rw(ddir))
1118 return;
1119
cc372b17
SL
1120 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
1121 min = max = 0;
1122 mean = dev = 0.0;
1123 }
1124 tmp_object = json_create_object();
d6bb626e 1125 json_object_add_value_object(dir_object, "lat_ns", tmp_object);
cc372b17
SL
1126 json_object_add_value_int(tmp_object, "min", min);
1127 json_object_add_value_int(tmp_object, "max", max);
1128 json_object_add_value_float(tmp_object, "mean", mean);
1129 json_object_add_value_float(tmp_object, "stddev", dev);
24cab44e
VF
1130 if (output_format & FIO_OUTPUT_JSON_PLUS && ts->lat_percentiles)
1131 json_object_add_value_object(tmp_object, "bins", clat_bins_object);
1132
cc372b17
SL
1133 if (ovals)
1134 free(ovals);
1135
b9e1b491 1136 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
cc372b17 1137 if (rs->agg[ddir]) {
d1707474 1138 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
cc372b17
SL
1139 if (p_of_agg > 100.0)
1140 p_of_agg = 100.0;
1141 }
1142 } else {
1143 min = max = 0;
1144 p_of_agg = mean = dev = 0.0;
1145 }
1146 json_object_add_value_int(dir_object, "bw_min", min);
1147 json_object_add_value_int(dir_object, "bw_max", max);
a806bf2e 1148 json_object_add_value_float(dir_object, "bw_agg", p_of_agg);
cc372b17
SL
1149 json_object_add_value_float(dir_object, "bw_mean", mean);
1150 json_object_add_value_float(dir_object, "bw_dev", dev);
54c05828
AH
1151 json_object_add_value_int(dir_object, "bw_samples",
1152 (&ts->bw_stat[ddir])->samples);
188b6016
AH
1153
1154 if (!calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev)) {
1155 min = max = 0;
1156 mean = dev = 0.0;
1157 }
1158 json_object_add_value_int(dir_object, "iops_min", min);
1159 json_object_add_value_int(dir_object, "iops_max", max);
1160 json_object_add_value_float(dir_object, "iops_mean", mean);
1161 json_object_add_value_float(dir_object, "iops_stddev", dev);
54c05828
AH
1162 json_object_add_value_int(dir_object, "iops_samples",
1163 (&ts->iops_stat[ddir])->samples);
96563db9
JA
1164
1165 if (ts->cachehit + ts->cachemiss) {
1166 uint64_t total;
1167 double hit;
1168
1169 total = ts->cachehit + ts->cachemiss;
1170 hit = (double) ts->cachehit / (double) total;
1171 hit *= 100.0;
1172 json_object_add_value_float(dir_object, "cachehit", hit);
1173 }
cc372b17
SL
1174}
1175
bef2112b
AH
1176static void show_thread_status_terse_all(struct thread_stat *ts,
1177 struct group_run_stats *rs, int ver,
1178 struct buf_output *out)
4d658652
JA
1179{
1180 double io_u_dist[FIO_IO_U_MAP_NR];
1181 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1182 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1183 double usr_cpu, sys_cpu;
1184 int i;
1185
1186 /* General Info */
bef2112b
AH
1187 if (ver == 2)
1188 log_buf(out, "2;%s;%d;%d", ts->name, ts->groupid, ts->error);
1189 else
1190 log_buf(out, "%d;%s;%s;%d;%d", ver, fio_version_string,
1191 ts->name, ts->groupid, ts->error);
c6ae0a5b 1192
562c2d2f 1193 /* Log Read Status */
a2c95580 1194 show_ddir_status_terse(ts, rs, DDIR_READ, ver, out);
562c2d2f 1195 /* Log Write Status */
a2c95580 1196 show_ddir_status_terse(ts, rs, DDIR_WRITE, ver, out);
6eaf09d6 1197 /* Log Trim Status */
a2c95580
AH
1198 if (ver == 2 || ver == 4 || ver == 5)
1199 show_ddir_status_terse(ts, rs, DDIR_TRIM, ver, out);
c6ae0a5b 1200
562c2d2f 1201 /* CPU Usage */
756867bd
JA
1202 if (ts->total_run_time) {
1203 double runt = (double) ts->total_run_time;
c6ae0a5b 1204
756867bd
JA
1205 usr_cpu = (double) ts->usr_time * 100 / runt;
1206 sys_cpu = (double) ts->sys_time * 100 / runt;
c6ae0a5b
JA
1207 } else {
1208 usr_cpu = 0;
1209 sys_cpu = 0;
1210 }
1211
a666cab8 1212 log_buf(out, ";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
4e0a8fa2
JA
1213 (unsigned long long) ts->ctx,
1214 (unsigned long long) ts->majf,
1215 (unsigned long long) ts->minf);
2270890c 1216
562c2d2f 1217 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 1218 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
247823cc 1219 stat_calc_lat_nu(ts, io_u_lat_u);
04a0feae 1220 stat_calc_lat_m(ts, io_u_lat_m);
2270890c 1221
562c2d2f 1222 /* Only show fixed 7 I/O depth levels*/
a666cab8 1223 log_buf(out, ";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
5ec10eaa
JA
1224 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
1225 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
2270890c 1226
562c2d2f 1227 /* Microsecond latency */
04a0feae 1228 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
a666cab8 1229 log_buf(out, ";%3.2f%%", io_u_lat_u[i]);
562c2d2f 1230 /* Millisecond latency */
04a0feae 1231 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
a666cab8 1232 log_buf(out, ";%3.2f%%", io_u_lat_m[i]);
f2f788dd
JA
1233
1234 /* disk util stats, if any */
24a97130 1235 if (ver >= 3 && is_running_backend())
bef2112b 1236 show_disk_util(1, NULL, out);
f2f788dd 1237
562c2d2f 1238 /* Additional output if continue_on_error set - default off*/
f2bba182 1239 if (ts->continue_on_error)
a666cab8 1240 log_buf(out, ";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
bef2112b
AH
1241 if (ver == 2)
1242 log_buf(out, "\n");
2270890c 1243
562c2d2f 1244 /* Additional output if description is set */
4b0f2258 1245 if (strlen(ts->description))
a666cab8 1246 log_buf(out, ";%s", ts->description);
946e4276 1247
a666cab8 1248 log_buf(out, "\n");
756867bd
JA
1249}
1250
a89ba4b1 1251static void json_add_job_opts(struct json_object *root, const char *name,
0cf542af 1252 struct flist_head *opt_list)
66e19a38
JA
1253{
1254 struct json_object *dir_object;
1255 struct flist_head *entry;
1256 struct print_option *p;
1257
1258 if (flist_empty(opt_list))
1259 return;
1260
1261 dir_object = json_create_object();
1262 json_object_add_value_object(root, name, dir_object);
1263
1264 flist_for_each(entry, opt_list) {
1265 const char *pos = "";
1266
1267 p = flist_entry(entry, struct print_option, list);
1268 if (p->value)
1269 pos = p->value;
1270 json_object_add_value_string(dir_object, p->name, pos);
1271 }
1272}
1273
cc372b17 1274static struct json_object *show_thread_status_json(struct thread_stat *ts,
66e19a38
JA
1275 struct group_run_stats *rs,
1276 struct flist_head *opt_list)
cc372b17
SL
1277{
1278 struct json_object *root, *tmp;
b01af66b 1279 struct jobs_eta *je;
cc372b17 1280 double io_u_dist[FIO_IO_U_MAP_NR];
d6bb626e 1281 double io_u_lat_n[FIO_IO_U_LAT_N_NR];
cc372b17
SL
1282 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1283 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1284 double usr_cpu, sys_cpu;
1285 int i;
b01af66b
CJ
1286 size_t size;
1287
cc372b17
SL
1288 root = json_create_object();
1289 json_object_add_value_string(root, "jobname", ts->name);
1290 json_object_add_value_int(root, "groupid", ts->groupid);
1291 json_object_add_value_int(root, "error", ts->error);
1292
b01af66b 1293 /* ETA Info */
c5103619 1294 je = get_jobs_eta(true, &size);
2de615ad
JA
1295 if (je) {
1296 json_object_add_value_int(root, "eta", je->eta_sec);
1297 json_object_add_value_int(root, "elapsed", je->elapsed_sec);
1298 }
b01af66b 1299
66e19a38 1300 if (opt_list)
0cf542af 1301 json_add_job_opts(root, "job options", opt_list);
66e19a38 1302
cc372b17
SL
1303 add_ddir_status_json(ts, rs, DDIR_READ, root);
1304 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
f3afa57e 1305 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
b2b3eefe 1306 add_ddir_status_json(ts, rs, DDIR_SYNC, root);
cc372b17
SL
1307
1308 /* CPU Usage */
1309 if (ts->total_run_time) {
1310 double runt = (double) ts->total_run_time;
1311
1312 usr_cpu = (double) ts->usr_time * 100 / runt;
1313 sys_cpu = (double) ts->sys_time * 100 / runt;
1314 } else {
1315 usr_cpu = 0;
1316 sys_cpu = 0;
1317 }
bcbb4c6c 1318 json_object_add_value_int(root, "job_runtime", ts->total_run_time);
cc372b17
SL
1319 json_object_add_value_float(root, "usr_cpu", usr_cpu);
1320 json_object_add_value_float(root, "sys_cpu", sys_cpu);
1321 json_object_add_value_int(root, "ctx", ts->ctx);
1322 json_object_add_value_int(root, "majf", ts->majf);
1323 json_object_add_value_int(root, "minf", ts->minf);
1324
ec3e3648 1325 /* Calc % distribution of IO depths */
d79db122 1326 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
cc372b17
SL
1327 tmp = json_create_object();
1328 json_object_add_value_object(root, "iodepth_level", tmp);
1329 /* Only show fixed 7 I/O depth levels*/
1330 for (i = 0; i < 7; i++) {
1331 char name[20];
1332 if (i < 6)
98ffb8f3 1333 snprintf(name, 20, "%d", 1 << i);
cc372b17 1334 else
98ffb8f3 1335 snprintf(name, 20, ">=%d", 1 << i);
cc372b17
SL
1336 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1337 }
1338
ec3e3648
VF
1339 /* Calc % distribution of submit IO depths */
1340 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
1341 tmp = json_create_object();
1342 json_object_add_value_object(root, "iodepth_submit", tmp);
1343 /* Only show fixed 7 I/O depth levels*/
1344 for (i = 0; i < 7; i++) {
1345 char name[20];
1346 if (i == 0)
1347 snprintf(name, 20, "0");
1348 else if (i < 6)
1349 snprintf(name, 20, "%d", 1 << (i+1));
1350 else
1351 snprintf(name, 20, ">=%d", 1 << i);
1352 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1353 }
1354
1355 /* Calc % distribution of completion IO depths */
1356 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
1357 tmp = json_create_object();
1358 json_object_add_value_object(root, "iodepth_complete", tmp);
1359 /* Only show fixed 7 I/O depth levels*/
1360 for (i = 0; i < 7; i++) {
1361 char name[20];
1362 if (i == 0)
1363 snprintf(name, 20, "0");
1364 else if (i < 6)
1365 snprintf(name, 20, "%d", 1 << (i+1));
1366 else
1367 snprintf(name, 20, ">=%d", 1 << i);
1368 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1369 }
1370
1371 /* Calc % distribution of nsecond, usecond, msecond latency */
1372 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
1373 stat_calc_lat_n(ts, io_u_lat_n);
1374 stat_calc_lat_u(ts, io_u_lat_u);
1375 stat_calc_lat_m(ts, io_u_lat_m);
1376
d6bb626e 1377 /* Nanosecond latency */
cc372b17 1378 tmp = json_create_object();
d6bb626e
VF
1379 json_object_add_value_object(root, "latency_ns", tmp);
1380 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++) {
1381 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1382 "250", "500", "750", "1000", };
1383 json_object_add_value_float(tmp, ranges[i], io_u_lat_n[i]);
1384 }
cc372b17 1385 /* Microsecond latency */
d6bb626e
VF
1386 tmp = json_create_object();
1387 json_object_add_value_object(root, "latency_us", tmp);
cc372b17
SL
1388 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1389 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1390 "250", "500", "750", "1000", };
1391 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
1392 }
1393 /* Millisecond latency */
1394 tmp = json_create_object();
1395 json_object_add_value_object(root, "latency_ms", tmp);
1396 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
1397 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1398 "250", "500", "750", "1000", "2000",
1399 ">=2000", };
1400 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
1401 }
1402
1403 /* Additional output if continue_on_error set - default off*/
1404 if (ts->continue_on_error) {
1405 json_object_add_value_int(root, "total_err", ts->total_err_count);
952b05e0 1406 json_object_add_value_int(root, "first_error", ts->first_error);
cc372b17
SL
1407 }
1408
3e260a46
JA
1409 if (ts->latency_depth) {
1410 json_object_add_value_int(root, "latency_depth", ts->latency_depth);
1411 json_object_add_value_int(root, "latency_target", ts->latency_target);
1412 json_object_add_value_float(root, "latency_percentile", ts->latency_percentile.u.f);
1413 json_object_add_value_int(root, "latency_window", ts->latency_window);
1414 }
1415
cc372b17
SL
1416 /* Additional output if description is set */
1417 if (strlen(ts->description))
1418 json_object_add_value_string(root, "desc", ts->description);
1419
66347cfa
DE
1420 if (ts->nr_block_infos) {
1421 /* Block error histogram and types */
1422 int len;
1423 unsigned int *percentiles = NULL;
1424 unsigned int block_state_counts[BLOCK_STATE_COUNT];
1425
1426 len = calc_block_percentiles(ts->nr_block_infos, ts->block_infos,
1427 ts->percentile_list,
1428 &percentiles, block_state_counts);
1429
1430 if (len) {
1431 struct json_object *block, *percentile_object, *states;
8a68c41c 1432 int state;
66347cfa
DE
1433 block = json_create_object();
1434 json_object_add_value_object(root, "block", block);
1435
1436 percentile_object = json_create_object();
1437 json_object_add_value_object(block, "percentiles",
1438 percentile_object);
1439 for (i = 0; i < len; i++) {
1440 char buf[20];
1441 snprintf(buf, sizeof(buf), "%f",
1442 ts->percentile_list[i].u.f);
1443 json_object_add_value_int(percentile_object,
1444 (const char *)buf,
1445 percentiles[i]);
1446 }
1447
1448 states = json_create_object();
1449 json_object_add_value_object(block, "states", states);
1450 for (state = 0; state < BLOCK_STATE_COUNT; state++) {
1451 json_object_add_value_int(states,
1452 block_state_names[state],
1453 block_state_counts[state]);
1454 }
1455 free(percentiles);
1456 }
1457 }
1458
bb49c8bd 1459 if (ts->ss_dur) {
ba8fb6f6
VF
1460 struct json_object *data;
1461 struct json_array *iops, *bw;
a43f4461 1462 int j, k, l;
6da94b07 1463 char ss_buf[64];
16e56d25 1464
6da94b07 1465 snprintf(ss_buf, sizeof(ss_buf), "%s%s:%f%s",
c8caba48
JA
1466 ts->ss_state & FIO_SS_IOPS ? "iops" : "bw",
1467 ts->ss_state & FIO_SS_SLOPE ? "_slope" : "",
bb49c8bd 1468 (float) ts->ss_limit.u.f,
c8caba48 1469 ts->ss_state & FIO_SS_PCT ? "%" : "");
16e56d25
VF
1470
1471 tmp = json_create_object();
1472 json_object_add_value_object(root, "steadystate", tmp);
6da94b07 1473 json_object_add_value_string(tmp, "ss", ss_buf);
bb49c8bd 1474 json_object_add_value_int(tmp, "duration", (int)ts->ss_dur);
c8caba48 1475 json_object_add_value_int(tmp, "attained", (ts->ss_state & FIO_SS_ATTAINED) > 0);
6da94b07 1476
bb49c8bd 1477 snprintf(ss_buf, sizeof(ss_buf), "%f%s", (float) ts->ss_criterion.u.f,
c8caba48 1478 ts->ss_state & FIO_SS_PCT ? "%" : "");
6da94b07 1479 json_object_add_value_string(tmp, "criterion", ss_buf);
bb49c8bd
VF
1480 json_object_add_value_float(tmp, "max_deviation", ts->ss_deviation.u.f);
1481 json_object_add_value_float(tmp, "slope", ts->ss_slope.u.f);
ba8fb6f6
VF
1482
1483 data = json_create_object();
1484 json_object_add_value_object(tmp, "data", data);
1485 bw = json_create_array();
1486 iops = json_create_array();
412c7d91
VF
1487
1488 /*
1489 ** if ss was attained or the buffer is not full,
1490 ** ss->head points to the first element in the list.
1491 ** otherwise it actually points to the second element
1492 ** in the list
1493 */
c8caba48 1494 if ((ts->ss_state & FIO_SS_ATTAINED) || !(ts->ss_state & FIO_SS_BUFFER_FULL))
bb49c8bd 1495 j = ts->ss_head;
412c7d91 1496 else
bb49c8bd 1497 j = ts->ss_head == 0 ? ts->ss_dur - 1 : ts->ss_head - 1;
a43f4461
JA
1498 for (l = 0; l < ts->ss_dur; l++) {
1499 k = (j + l) % ts->ss_dur;
bb49c8bd
VF
1500 json_array_add_value_int(bw, ts->ss_bw_data[k]);
1501 json_array_add_value_int(iops, ts->ss_iops_data[k]);
16e56d25 1502 }
bb49c8bd
VF
1503 json_object_add_value_int(data, "bw_mean", steadystate_bw_mean(ts));
1504 json_object_add_value_int(data, "iops_mean", steadystate_iops_mean(ts));
6da94b07
VF
1505 json_object_add_value_array(data, "iops", iops);
1506 json_object_add_value_array(data, "bw", bw);
16e56d25
VF
1507 }
1508
cc372b17
SL
1509 return root;
1510}
1511
4d658652 1512static void show_thread_status_terse(struct thread_stat *ts,
a666cab8
JA
1513 struct group_run_stats *rs,
1514 struct buf_output *out)
4d658652 1515{
a2c95580 1516 if (terse_version >= 2 && terse_version <= 5)
bef2112b 1517 show_thread_status_terse_all(ts, rs, terse_version, out);
4d658652
JA
1518 else
1519 log_err("fio: bad terse version!? %d\n", terse_version);
1520}
1521
952b05e0 1522struct json_object *show_thread_status(struct thread_stat *ts,
a666cab8 1523 struct group_run_stats *rs,
0279b880 1524 struct flist_head *opt_list,
a666cab8 1525 struct buf_output *out)
952b05e0 1526{
129fb2d4
JA
1527 struct json_object *ret = NULL;
1528
1529 if (output_format & FIO_OUTPUT_TERSE)
a666cab8 1530 show_thread_status_terse(ts, rs, out);
129fb2d4 1531 if (output_format & FIO_OUTPUT_JSON)
0279b880 1532 ret = show_thread_status_json(ts, rs, opt_list);
129fb2d4 1533 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1534 show_thread_status_normal(ts, rs, out);
129fb2d4
JA
1535
1536 return ret;
952b05e0
CF
1537}
1538
70750d6a 1539static void __sum_stat(struct io_stat *dst, struct io_stat *src, bool first)
756867bd
JA
1540{
1541 double mean, S;
1542
1543 dst->min_val = min(dst->min_val, src->min_val);
1544 dst->max_val = max(dst->max_val, src->max_val);
756867bd
JA
1545
1546 /*
cdcac5cf
YH
1547 * Compute new mean and S after the merge
1548 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1549 * #Parallel_algorithm>
756867bd 1550 */
fd595830 1551 if (first) {
802ad4a8
JA
1552 mean = src->mean.u.f;
1553 S = src->S.u.f;
756867bd 1554 } else {
802ad4a8 1555 double delta = src->mean.u.f - dst->mean.u.f;
cdcac5cf 1556
802ad4a8
JA
1557 mean = ((src->mean.u.f * src->samples) +
1558 (dst->mean.u.f * dst->samples)) /
cdcac5cf
YH
1559 (dst->samples + src->samples);
1560
802ad4a8 1561 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
cdcac5cf
YH
1562 (dst->samples * src->samples) /
1563 (dst->samples + src->samples);
756867bd
JA
1564 }
1565
cdcac5cf 1566 dst->samples += src->samples;
802ad4a8
JA
1567 dst->mean.u.f = mean;
1568 dst->S.u.f = S;
70750d6a
JA
1569
1570}
1571
1572/*
1573 * We sum two kinds of stats - one that is time based, in which case we
1574 * apply the proper summing technique, and then one that is iops/bw
1575 * numbers. For group_reporting, we should just add those up, not make
1576 * them the mean of everything.
1577 */
1578static void sum_stat(struct io_stat *dst, struct io_stat *src, bool first,
1579 bool pure_sum)
1580{
1581 if (src->samples == 0)
1582 return;
1583
1584 if (!pure_sum) {
1585 __sum_stat(dst, src, first);
1586 return;
1587 }
1588
68afa5b5
JA
1589 if (first) {
1590 dst->min_val = src->min_val;
1591 dst->max_val = src->max_val;
1592 dst->samples = src->samples;
1593 dst->mean.u.f = src->mean.u.f;
1594 dst->S.u.f = src->S.u.f;
1595 } else {
1596 dst->min_val += src->min_val;
1597 dst->max_val += src->max_val;
1598 dst->samples += src->samples;
1599 dst->mean.u.f += src->mean.u.f;
1600 dst->S.u.f += src->S.u.f;
1601 }
756867bd
JA
1602}
1603
37f0c1ae
JA
1604void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1605{
1606 int i;
1607
6eaf09d6 1608 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
37f0c1ae
JA
1609 if (dst->max_run[i] < src->max_run[i])
1610 dst->max_run[i] = src->max_run[i];
1611 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1612 dst->min_run[i] = src->min_run[i];
1613 if (dst->max_bw[i] < src->max_bw[i])
1614 dst->max_bw[i] = src->max_bw[i];
1615 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1616 dst->min_bw[i] = src->min_bw[i];
1617
af7f87cb 1618 dst->iobytes[i] += src->iobytes[i];
37f0c1ae
JA
1619 dst->agg[i] += src->agg[i];
1620 }
1621
dbae1bd6
JA
1622 if (!dst->kb_base)
1623 dst->kb_base = src->kb_base;
1624 if (!dst->unit_base)
1625 dst->unit_base = src->unit_base;
18aa1998
JF
1626 if (!dst->sig_figs)
1627 dst->sig_figs = src->sig_figs;
37f0c1ae
JA
1628}
1629
fd595830
JA
1630void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src,
1631 bool first)
5b9babb7
JA
1632{
1633 int l, k;
1634
6eaf09d6 1635 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
771e58be 1636 if (!dst->unified_rw_rep) {
70750d6a
JA
1637 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], first, false);
1638 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], first, false);
1639 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], first, false);
1640 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], first, true);
1641 sum_stat(&dst->iops_stat[l], &src->iops_stat[l], first, true);
771e58be
JA
1642
1643 dst->io_bytes[l] += src->io_bytes[l];
1644
1645 if (dst->runtime[l] < src->runtime[l])
1646 dst->runtime[l] = src->runtime[l];
1647 } else {
70750d6a
JA
1648 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], first, false);
1649 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], first, false);
1650 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], first, false);
1651 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], first, true);
1652 sum_stat(&dst->iops_stat[0], &src->iops_stat[l], first, true);
771e58be
JA
1653
1654 dst->io_bytes[0] += src->io_bytes[l];
1655
1656 if (dst->runtime[0] < src->runtime[l])
1657 dst->runtime[0] = src->runtime[l];
fd595830
JA
1658
1659 /*
1660 * We're summing to the same destination, so override
1661 * 'first' after the first iteration of the loop
1662 */
1663 first = false;
771e58be 1664 }
5b9babb7
JA
1665 }
1666
70750d6a 1667 sum_stat(&dst->sync_stat, &src->sync_stat, first, false);
5b9babb7
JA
1668 dst->usr_time += src->usr_time;
1669 dst->sys_time += src->sys_time;
1670 dst->ctx += src->ctx;
1671 dst->majf += src->majf;
1672 dst->minf += src->minf;
1673
b2b3eefe 1674 for (k = 0; k < FIO_IO_U_MAP_NR; k++) {
5b9babb7 1675 dst->io_u_map[k] += src->io_u_map[k];
5b9babb7 1676 dst->io_u_submit[k] += src->io_u_submit[k];
5b9babb7 1677 dst->io_u_complete[k] += src->io_u_complete[k];
b2b3eefe
JA
1678 }
1679 for (k = 0; k < FIO_IO_U_LAT_N_NR; k++) {
d6bb626e 1680 dst->io_u_lat_n[k] += src->io_u_lat_n[k];
5b9babb7 1681 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
5b9babb7 1682 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
b2b3eefe
JA
1683 }
1684 for (k = 0; k < FIO_IO_U_PLAT_NR; k++)
1685 dst->io_u_sync_plat[k] += src->io_u_sync_plat[k];
5b9babb7 1686
6eaf09d6 1687 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
771e58be
JA
1688 if (!dst->unified_rw_rep) {
1689 dst->total_io_u[k] += src->total_io_u[k];
1690 dst->short_io_u[k] += src->short_io_u[k];
3bcb9d94 1691 dst->drop_io_u[k] += src->drop_io_u[k];
771e58be
JA
1692 } else {
1693 dst->total_io_u[0] += src->total_io_u[k];
1694 dst->short_io_u[0] += src->short_io_u[k];
3bcb9d94 1695 dst->drop_io_u[0] += src->drop_io_u[k];
771e58be 1696 }
5b9babb7
JA
1697 }
1698
7f3ecee2
JA
1699 dst->total_io_u[DDIR_SYNC] += src->total_io_u[DDIR_SYNC];
1700
6eaf09d6 1701 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
5b9babb7 1702 int m;
771e58be
JA
1703
1704 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1705 if (!dst->unified_rw_rep)
1706 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1707 else
1708 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1709 }
5b9babb7
JA
1710 }
1711
1712 dst->total_run_time += src->total_run_time;
1713 dst->total_submit += src->total_submit;
1714 dst->total_complete += src->total_complete;
fd5d733f 1715 dst->nr_zone_resets += src->nr_zone_resets;
96563db9
JA
1716 dst->cachehit += src->cachehit;
1717 dst->cachemiss += src->cachemiss;
5b9babb7
JA
1718}
1719
37f0c1ae
JA
1720void init_group_run_stat(struct group_run_stats *gs)
1721{
6eaf09d6 1722 int i;
37f0c1ae 1723 memset(gs, 0, sizeof(*gs));
6eaf09d6
SL
1724
1725 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1726 gs->min_bw[i] = gs->min_run[i] = ~0UL;
37f0c1ae
JA
1727}
1728
1729void init_thread_stat(struct thread_stat *ts)
1730{
1731 int j;
1732
1733 memset(ts, 0, sizeof(*ts));
1734
6eaf09d6 1735 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
37f0c1ae
JA
1736 ts->lat_stat[j].min_val = -1UL;
1737 ts->clat_stat[j].min_val = -1UL;
1738 ts->slat_stat[j].min_val = -1UL;
1739 ts->bw_stat[j].min_val = -1UL;
188b6016 1740 ts->iops_stat[j].min_val = -1UL;
37f0c1ae 1741 }
7f3ecee2 1742 ts->sync_stat.min_val = -1UL;
37f0c1ae
JA
1743 ts->groupid = -1;
1744}
1745
83f7b64e 1746void __show_run_stats(void)
3c39a379
JA
1747{
1748 struct group_run_stats *runstats, *rs;
1749 struct thread_data *td;
756867bd 1750 struct thread_stat *threadstats, *ts;
4da24b69 1751 int i, j, k, nr_ts, last_ts, idx;
8985b491
JA
1752 bool kb_base_warned = false;
1753 bool unit_base_warned = false;
cc372b17
SL
1754 struct json_object *root = NULL;
1755 struct json_array *array = NULL;
a666cab8 1756 struct buf_output output[FIO_OUTPUT_NR];
66e19a38 1757 struct flist_head **opt_lists;
a666cab8 1758
3c39a379
JA
1759 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1760
37f0c1ae
JA
1761 for (i = 0; i < groupid + 1; i++)
1762 init_group_run_stat(&runstats[i]);
3c39a379 1763
756867bd
JA
1764 /*
1765 * find out how many threads stats we need. if group reporting isn't
1766 * enabled, it's one-per-td.
1767 */
1768 nr_ts = 0;
1769 last_ts = -1;
1770 for_each_td(td, i) {
2dc1bbeb 1771 if (!td->o.group_reporting) {
756867bd
JA
1772 nr_ts++;
1773 continue;
1774 }
1775 if (last_ts == td->groupid)
1776 continue;
8243be59
JA
1777 if (!td->o.stats)
1778 continue;
756867bd
JA
1779
1780 last_ts = td->groupid;
1781 nr_ts++;
1782 }
1783
1784 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
66e19a38 1785 opt_lists = malloc(nr_ts * sizeof(struct flist_head *));
756867bd 1786
66e19a38 1787 for (i = 0; i < nr_ts; i++) {
37f0c1ae 1788 init_thread_stat(&threadstats[i]);
66e19a38
JA
1789 opt_lists[i] = NULL;
1790 }
756867bd
JA
1791
1792 j = 0;
1793 last_ts = -1;
197574e4 1794 idx = 0;
34572e28 1795 for_each_td(td, i) {
8243be59
JA
1796 if (!td->o.stats)
1797 continue;
2dc1bbeb
JA
1798 if (idx && (!td->o.group_reporting ||
1799 (td->o.group_reporting && last_ts != td->groupid))) {
7abd0e3a
JA
1800 idx = 0;
1801 j++;
1802 }
1803
1804 last_ts = td->groupid;
1805
756867bd
JA
1806 ts = &threadstats[j];
1807
83349190 1808 ts->clat_percentiles = td->o.clat_percentiles;
b599759b 1809 ts->lat_percentiles = td->o.lat_percentiles;
435d195a 1810 ts->percentile_precision = td->o.percentile_precision;
fd112d34 1811 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
66e19a38 1812 opt_lists[j] = &td->opt_list;
83349190 1813
197574e4 1814 idx++;
6586ee89 1815 ts->members++;
756867bd 1816
7abd0e3a 1817 if (ts->groupid == -1) {
2dc84ba7
JA
1818 /*
1819 * These are per-group shared already
1820 */
4e59d0f3 1821 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE - 1);
a64e88da
JA
1822 if (td->o.description)
1823 strncpy(ts->description, td->o.description,
4e59d0f3 1824 FIO_JOBDESC_SIZE - 1);
a64e88da 1825 else
4e59d0f3 1826 memset(ts->description, 0, FIO_JOBDESC_SIZE);
a64e88da 1827
2f122b13
JA
1828 /*
1829 * If multiple entries in this group, this is
1830 * the first member.
1831 */
1832 ts->thread_number = td->thread_number;
756867bd 1833 ts->groupid = td->groupid;
2dc84ba7
JA
1834
1835 /*
1836 * first pid in group, not very useful...
1837 */
756867bd 1838 ts->pid = td->pid;
90fef2d1
JA
1839
1840 ts->kb_base = td->o.kb_base;
ad705bcb 1841 ts->unit_base = td->o.unit_base;
e883cb35 1842 ts->sig_figs = td->o.sig_figs;
771e58be 1843 ts->unified_rw_rep = td->o.unified_rw_rep;
90fef2d1
JA
1844 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1845 log_info("fio: kb_base differs for jobs in group, using"
1846 " %u as the base\n", ts->kb_base);
8985b491 1847 kb_base_warned = true;
ad705bcb
SN
1848 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1849 log_info("fio: unit_base differs for jobs in group, using"
1850 " %u as the base\n", ts->unit_base);
8985b491 1851 unit_base_warned = true;
2dc84ba7
JA
1852 }
1853
f2bba182
RR
1854 ts->continue_on_error = td->o.continue_on_error;
1855 ts->total_err_count += td->total_err_count;
1856 ts->first_error = td->first_error;
1857 if (!ts->error) {
1858 if (!td->error && td->o.continue_on_error &&
1859 td->first_error) {
1860 ts->error = td->first_error;
3660ceae
JA
1861 ts->verror[sizeof(ts->verror) - 1] = '\0';
1862 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182
RR
1863 } else if (td->error) {
1864 ts->error = td->error;
3660ceae
JA
1865 ts->verror[sizeof(ts->verror) - 1] = '\0';
1866 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182 1867 }
756867bd
JA
1868 }
1869
3e260a46
JA
1870 ts->latency_depth = td->latency_qd;
1871 ts->latency_target = td->o.latency_target;
1872 ts->latency_percentile = td->o.latency_percentile;
1873 ts->latency_window = td->o.latency_window;
1874
0e4dd95c 1875 ts->nr_block_infos = td->ts.nr_block_infos;
4da24b69
JA
1876 for (k = 0; k < ts->nr_block_infos; k++)
1877 ts->block_infos[k] = td->ts.block_infos[k];
0e4dd95c 1878
fd595830 1879 sum_thread_stats(ts, &td->ts, idx == 1);
16e56d25 1880
bb49c8bd
VF
1881 if (td->o.ss_dur) {
1882 ts->ss_state = td->ss.state;
1883 ts->ss_dur = td->ss.dur;
1884 ts->ss_head = td->ss.head;
bb49c8bd
VF
1885 ts->ss_bw_data = td->ss.bw_data;
1886 ts->ss_iops_data = td->ss.iops_data;
1887 ts->ss_limit.u.f = td->ss.limit;
1888 ts->ss_slope.u.f = td->ss.slope;
1889 ts->ss_deviation.u.f = td->ss.deviation;
1890 ts->ss_criterion.u.f = td->ss.criterion;
1891 }
16e56d25 1892 else
bb49c8bd 1893 ts->ss_dur = ts->ss_state = 0;
756867bd
JA
1894 }
1895
1896 for (i = 0; i < nr_ts; i++) {
94370ac4 1897 unsigned long long bw;
3c39a379 1898
756867bd 1899 ts = &threadstats[i];
dedb88eb
JA
1900 if (ts->groupid == -1)
1901 continue;
756867bd 1902 rs = &runstats[ts->groupid];
90fef2d1 1903 rs->kb_base = ts->kb_base;
ad705bcb 1904 rs->unit_base = ts->unit_base;
e883cb35 1905 rs->sig_figs = ts->sig_figs;
771e58be 1906 rs->unified_rw_rep += ts->unified_rw_rep;
3c39a379 1907
6eaf09d6 1908 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
94370ac4
JA
1909 if (!ts->runtime[j])
1910 continue;
1911 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1912 rs->min_run[j] = ts->runtime[j];
1913 if (ts->runtime[j] > rs->max_run[j])
1914 rs->max_run[j] = ts->runtime[j];
1915
1916 bw = 0;
af7f87cb
RE
1917 if (ts->runtime[j])
1918 bw = ts->io_bytes[j] * 1000 / ts->runtime[j];
94370ac4
JA
1919 if (bw < rs->min_bw[j])
1920 rs->min_bw[j] = bw;
1921 if (bw > rs->max_bw[j])
1922 rs->max_bw[j] = bw;
1923
af7f87cb 1924 rs->iobytes[j] += ts->io_bytes[j];
94370ac4 1925 }
3c39a379
JA
1926 }
1927
1928 for (i = 0; i < groupid + 1; i++) {
6eaf09d6
SL
1929 int ddir;
1930
3c39a379
JA
1931 rs = &runstats[i];
1932
6eaf09d6
SL
1933 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1934 if (rs->max_run[ddir])
af7f87cb 1935 rs->agg[ddir] = (rs->iobytes[ddir] * 1000) /
6eaf09d6
SL
1936 rs->max_run[ddir];
1937 }
3c39a379
JA
1938 }
1939
a666cab8 1940 for (i = 0; i < FIO_OUTPUT_NR; i++)
e250c0a9 1941 buf_output_init(&output[i]);
a666cab8 1942
3c39a379
JA
1943 /*
1944 * don't overwrite last signal output
1945 */
129fb2d4 1946 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1947 log_buf(&output[__FIO_OUTPUT_NORMAL], "\n");
129fb2d4 1948 if (output_format & FIO_OUTPUT_JSON) {
66e19a38 1949 struct thread_data *global;
35326842 1950 char time_buf[32];
aa7d2ef0
RH
1951 struct timeval now;
1952 unsigned long long ms_since_epoch;
afd74e2a 1953 time_t tv_sec;
91e53870 1954
aa7d2ef0
RH
1955 gettimeofday(&now, NULL);
1956 ms_since_epoch = (unsigned long long)(now.tv_sec) * 1000 +
1957 (unsigned long long)(now.tv_usec) / 1000;
1958
afd74e2a
BVA
1959 tv_sec = now.tv_sec;
1960 os_ctime_r(&tv_sec, time_buf, sizeof(time_buf));
1d272416
JA
1961 if (time_buf[strlen(time_buf) - 1] == '\n')
1962 time_buf[strlen(time_buf) - 1] = '\0';
91e53870 1963
cc372b17
SL
1964 root = json_create_object();
1965 json_object_add_value_string(root, "fio version", fio_version_string);
aa7d2ef0
RH
1966 json_object_add_value_int(root, "timestamp", now.tv_sec);
1967 json_object_add_value_int(root, "timestamp_ms", ms_since_epoch);
91e53870 1968 json_object_add_value_string(root, "time", time_buf);
66e19a38 1969 global = get_global_options();
0cf542af 1970 json_add_job_opts(root, "global options", &global->opt_list);
cc372b17
SL
1971 array = json_create_array();
1972 json_object_add_value_array(root, "jobs", array);
1973 }
3c39a379 1974
0279b880
JA
1975 if (is_backend)
1976 fio_server_send_job_options(&get_global_options()->opt_list, -1U);
1977
756867bd
JA
1978 for (i = 0; i < nr_ts; i++) {
1979 ts = &threadstats[i];
1980 rs = &runstats[ts->groupid];
3c39a379 1981
0279b880
JA
1982 if (is_backend) {
1983 fio_server_send_job_options(opt_lists[i], i);
a64e88da 1984 fio_server_send_ts(ts, rs);
0279b880 1985 } else {
129fb2d4 1986 if (output_format & FIO_OUTPUT_TERSE)
a666cab8 1987 show_thread_status_terse(ts, rs, &output[__FIO_OUTPUT_TERSE]);
129fb2d4 1988 if (output_format & FIO_OUTPUT_JSON) {
66e19a38 1989 struct json_object *tmp = show_thread_status_json(ts, rs, opt_lists[i]);
129fb2d4
JA
1990 json_array_add_value_object(array, tmp);
1991 }
1992 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1993 show_thread_status_normal(ts, rs, &output[__FIO_OUTPUT_NORMAL]);
129fb2d4 1994 }
3c39a379 1995 }
ab34ddd1 1996 if (!is_backend && (output_format & FIO_OUTPUT_JSON)) {
cc372b17 1997 /* disk util stats, if any */
a666cab8 1998 show_disk_util(1, root, &output[__FIO_OUTPUT_JSON]);
cc372b17 1999
a666cab8 2000 show_idle_prof_stats(FIO_OUTPUT_JSON, root, &output[__FIO_OUTPUT_JSON]);
f2a2ce0e 2001
a666cab8
JA
2002 json_print_object(root, &output[__FIO_OUTPUT_JSON]);
2003 log_buf(&output[__FIO_OUTPUT_JSON], "\n");
cc372b17
SL
2004 json_free_object(root);
2005 }
3c39a379 2006
72c27ff8
JA
2007 for (i = 0; i < groupid + 1; i++) {
2008 rs = &runstats[i];
3c39a379 2009
72c27ff8 2010 rs->groupid = i;
d09a64a0 2011 if (is_backend)
72c27ff8 2012 fio_server_send_gs(rs);
129fb2d4 2013 else if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 2014 show_group_stats(rs, &output[__FIO_OUTPUT_NORMAL]);
c6ae0a5b 2015 }
eecf272f 2016
72c27ff8
JA
2017 if (is_backend)
2018 fio_server_send_du();
129fb2d4 2019 else if (output_format & FIO_OUTPUT_NORMAL) {
a666cab8
JA
2020 show_disk_util(0, NULL, &output[__FIO_OUTPUT_NORMAL]);
2021 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL, &output[__FIO_OUTPUT_NORMAL]);
60904003 2022 }
f2a2ce0e 2023
3d57c0e9 2024 for (i = 0; i < FIO_OUTPUT_NR; i++) {
3dc3aa41 2025 struct buf_output *out = &output[i];
8dd0eca3 2026
3dc3aa41 2027 log_info_buf(out->buf, out->buflen);
3dc3aa41 2028 buf_output_free(out);
3d57c0e9 2029 }
2b8c71b0 2030
7ceefc09
FS
2031 fio_idle_prof_cleanup();
2032
fdd5f15f 2033 log_info_flush();
eecf272f 2034 free(runstats);
756867bd 2035 free(threadstats);
66e19a38 2036 free(opt_lists);
3c39a379
JA
2037}
2038
5ddc6707 2039void __show_running_run_stats(void)
b852e7cf
JA
2040{
2041 struct thread_data *td;
2042 unsigned long long *rt;
8b6a404c 2043 struct timespec ts;
b852e7cf
JA
2044 int i;
2045
971caeb1 2046 fio_sem_down(stat_sem);
90811930 2047
b852e7cf 2048 rt = malloc(thread_number * sizeof(unsigned long long));
8b6a404c 2049 fio_gettime(&ts, NULL);
b852e7cf
JA
2050
2051 for_each_td(td, i) {
c97f1ad6 2052 td->update_rusage = 1;
6eaf09d6
SL
2053 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
2054 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
2055 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
8b6a404c 2056 td->ts.total_run_time = mtime_since(&td->epoch, &ts);
6c041a88 2057
8b6a404c 2058 rt[i] = mtime_since(&td->start, &ts);
6c041a88 2059 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
2060 td->ts.runtime[DDIR_READ] += rt[i];
2061 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
2062 td->ts.runtime[DDIR_WRITE] += rt[i];
2063 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
2064 td->ts.runtime[DDIR_TRIM] += rt[i];
b852e7cf
JA
2065 }
2066
c97f1ad6 2067 for_each_td(td, i) {
fda2cfac
JA
2068 if (td->runstate >= TD_EXITED)
2069 continue;
c97f1ad6
JA
2070 if (td->rusage_sem) {
2071 td->update_rusage = 1;
971caeb1 2072 fio_sem_down(td->rusage_sem);
c97f1ad6
JA
2073 }
2074 td->update_rusage = 0;
2075 }
2076
cef9175e 2077 __show_run_stats();
b852e7cf
JA
2078
2079 for_each_td(td, i) {
6c041a88 2080 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
b852e7cf 2081 td->ts.runtime[DDIR_READ] -= rt[i];
6c041a88 2082 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
b852e7cf 2083 td->ts.runtime[DDIR_WRITE] -= rt[i];
6c041a88 2084 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
6eaf09d6 2085 td->ts.runtime[DDIR_TRIM] -= rt[i];
b852e7cf
JA
2086 }
2087
2088 free(rt);
971caeb1 2089 fio_sem_up(stat_sem);
b852e7cf
JA
2090}
2091
8985b491 2092static bool status_interval_init;
8b6a404c 2093static struct timespec status_time;
8985b491 2094static bool status_file_disabled;
06464907 2095
dac45f23 2096#define FIO_STATUS_FILE "fio-dump-status"
06464907
JA
2097
2098static int check_status_file(void)
2099{
2100 struct stat sb;
a0bafb7d
BC
2101 const char *temp_dir;
2102 char fio_status_file_path[PATH_MAX];
06464907 2103
77d99675
JA
2104 if (status_file_disabled)
2105 return 0;
2106
a0bafb7d 2107 temp_dir = getenv("TMPDIR");
48b16e27 2108 if (temp_dir == NULL) {
a0bafb7d 2109 temp_dir = getenv("TEMP");
48b16e27
JA
2110 if (temp_dir && strlen(temp_dir) >= PATH_MAX)
2111 temp_dir = NULL;
2112 }
a0bafb7d
BC
2113 if (temp_dir == NULL)
2114 temp_dir = "/tmp";
2115
2116 snprintf(fio_status_file_path, sizeof(fio_status_file_path), "%s/%s", temp_dir, FIO_STATUS_FILE);
2117
2118 if (stat(fio_status_file_path, &sb))
06464907
JA
2119 return 0;
2120
77d99675
JA
2121 if (unlink(fio_status_file_path) < 0) {
2122 log_err("fio: failed to unlink %s: %s\n", fio_status_file_path,
2123 strerror(errno));
2124 log_err("fio: disabling status file updates\n");
8985b491 2125 status_file_disabled = true;
77d99675
JA
2126 }
2127
06464907
JA
2128 return 1;
2129}
2130
2131void check_for_running_stats(void)
2132{
2133 if (status_interval) {
2134 if (!status_interval_init) {
2135 fio_gettime(&status_time, NULL);
8985b491 2136 status_interval_init = true;
06464907
JA
2137 } else if (mtime_since_now(&status_time) >= status_interval) {
2138 show_running_run_stats();
2139 fio_gettime(&status_time, NULL);
2140 return;
2141 }
2142 }
2143 if (check_status_file()) {
2144 show_running_run_stats();
2145 return;
2146 }
2147}
2148
d6bb626e 2149static inline void add_stat_sample(struct io_stat *is, unsigned long long data)
3c39a379 2150{
68704084 2151 double val = data;
6660cc67 2152 double delta;
68704084
JA
2153
2154 if (data > is->max_val)
2155 is->max_val = data;
2156 if (data < is->min_val)
2157 is->min_val = data;
2158
802ad4a8 2159 delta = val - is->mean.u.f;
ef11d737 2160 if (delta) {
802ad4a8
JA
2161 is->mean.u.f += delta / (is->samples + 1.0);
2162 is->S.u.f += delta * (val - is->mean.u.f);
ef11d737 2163 }
3c39a379 2164
3c39a379
JA
2165 is->samples++;
2166}
2167
7e419452
JA
2168/*
2169 * Return a struct io_logs, which is added to the tail of the log
2170 * list for 'iolog'.
2171 */
2172static struct io_logs *get_new_log(struct io_log *iolog)
2173{
2174 size_t new_size, new_samples;
2175 struct io_logs *cur_log;
2176
2177 /*
2178 * Cap the size at MAX_LOG_ENTRIES, so we don't keep doubling
2179 * forever
2180 */
2181 if (!iolog->cur_log_max)
2182 new_samples = DEF_LOG_ENTRIES;
2183 else {
2184 new_samples = iolog->cur_log_max * 2;
2185 if (new_samples > MAX_LOG_ENTRIES)
2186 new_samples = MAX_LOG_ENTRIES;
2187 }
2188
7e419452 2189 new_size = new_samples * log_entry_sz(iolog);
7e419452 2190
90d2d53f 2191 cur_log = smalloc(sizeof(*cur_log));
7e419452
JA
2192 if (cur_log) {
2193 INIT_FLIST_HEAD(&cur_log->list);
2194 cur_log->log = malloc(new_size);
2195 if (cur_log->log) {
2196 cur_log->nr_samples = 0;
2197 cur_log->max_samples = new_samples;
2198 flist_add_tail(&cur_log->list, &iolog->io_logs);
2199 iolog->cur_log_max = new_samples;
2200 return cur_log;
2201 }
90d2d53f 2202 sfree(cur_log);
7e419452
JA
2203 }
2204
2205 return NULL;
2206}
2207
1fed2080
JA
2208/*
2209 * Add and return a new log chunk, or return current log if big enough
2210 */
2211static struct io_logs *regrow_log(struct io_log *iolog)
7e419452
JA
2212{
2213 struct io_logs *cur_log;
1fed2080 2214 int i;
7e419452 2215
1fed2080 2216 if (!iolog || iolog->disabled)
2ab71dc4 2217 goto disable;
7e419452 2218
1fed2080 2219 cur_log = iolog_cur_log(iolog);
a9afa45a
JA
2220 if (!cur_log) {
2221 cur_log = get_new_log(iolog);
2222 if (!cur_log)
2223 return NULL;
2224 }
2225
7e419452
JA
2226 if (cur_log->nr_samples < cur_log->max_samples)
2227 return cur_log;
2228
2229 /*
2230 * No room for a new sample. If we're compressing on the fly, flush
2231 * out the current chunk
2232 */
2233 if (iolog->log_gz) {
2234 if (iolog_cur_flush(iolog, cur_log)) {
2235 log_err("fio: failed flushing iolog! Will stop logging.\n");
2236 return NULL;
2237 }
2238 }
2239
2240 /*
2241 * Get a new log array, and add to our list
2242 */
2243 cur_log = get_new_log(iolog);
1fed2080
JA
2244 if (!cur_log) {
2245 log_err("fio: failed extending iolog! Will stop logging.\n");
2246 return NULL;
2247 }
2248
2249 if (!iolog->pending || !iolog->pending->nr_samples)
80a24ba9 2250 return cur_log;
7e419452 2251
1fed2080
JA
2252 /*
2253 * Flush pending items to new log
2254 */
2255 for (i = 0; i < iolog->pending->nr_samples; i++) {
2256 struct io_sample *src, *dst;
2257
2258 src = get_sample(iolog, iolog->pending, i);
2259 dst = get_sample(iolog, cur_log, i);
2260 memcpy(dst, src, log_entry_sz(iolog));
2261 }
0b2eef49 2262 cur_log->nr_samples = iolog->pending->nr_samples;
1fed2080
JA
2263
2264 iolog->pending->nr_samples = 0;
2265 return cur_log;
2ab71dc4
JA
2266disable:
2267 if (iolog)
2268 iolog->disabled = true;
2269 return NULL;
1fed2080
JA
2270}
2271
2272void regrow_logs(struct thread_data *td)
2273{
2ab71dc4
JA
2274 regrow_log(td->slat_log);
2275 regrow_log(td->clat_log);
1e613c9c 2276 regrow_log(td->clat_hist_log);
2ab71dc4
JA
2277 regrow_log(td->lat_log);
2278 regrow_log(td->bw_log);
2279 regrow_log(td->iops_log);
1fed2080
JA
2280 td->flags &= ~TD_F_REGROW_LOGS;
2281}
2282
2283static struct io_logs *get_cur_log(struct io_log *iolog)
2284{
2285 struct io_logs *cur_log;
2286
2287 cur_log = iolog_cur_log(iolog);
2288 if (!cur_log) {
2289 cur_log = get_new_log(iolog);
2290 if (!cur_log)
2291 return NULL;
2292 }
2293
2294 if (cur_log->nr_samples < cur_log->max_samples)
2295 return cur_log;
2296
2297 /*
1eb467fb
JA
2298 * Out of space. If we're in IO offload mode, or we're not doing
2299 * per unit logging (hence logging happens outside of the IO thread
2300 * as well), add a new log chunk inline. If we're doing inline
2301 * submissions, flag 'td' as needing a log regrow and we'll take
2302 * care of it on the submission side.
1fed2080 2303 */
ab5643cb 2304 if ((iolog->td && iolog->td->o.io_submit_mode == IO_MODE_OFFLOAD) ||
1eb467fb 2305 !per_unit_log(iolog))
1fed2080
JA
2306 return regrow_log(iolog);
2307
ab5643cb
IK
2308 if (iolog->td)
2309 iolog->td->flags |= TD_F_REGROW_LOGS;
2310 if (iolog->pending)
2311 assert(iolog->pending->nr_samples < iolog->pending->max_samples);
1fed2080 2312 return iolog->pending;
7e419452
JA
2313}
2314
af2fde19 2315static void __add_log_sample(struct io_log *iolog, union io_sample_data data,
5fff9543 2316 enum fio_ddir ddir, unsigned long long bs,
ae588852 2317 unsigned long t, uint64_t offset)
3c39a379 2318{
7e419452 2319 struct io_logs *cur_log;
306ddc97 2320
3c568239
JA
2321 if (iolog->disabled)
2322 return;
7e419452 2323 if (flist_empty(&iolog->io_logs))
8355119b 2324 iolog->avg_last[ddir] = t;
b8bc8cba 2325
7e419452
JA
2326 cur_log = get_cur_log(iolog);
2327 if (cur_log) {
2328 struct io_sample *s;
3c39a379 2329
7e419452 2330 s = get_sample(iolog, cur_log, cur_log->nr_samples);
3c39a379 2331
af2fde19 2332 s->data = data;
a9179eeb 2333 s->time = t + (iolog->td ? iolog->td->unix_epoch : 0);
7e419452
JA
2334 io_sample_set_ddir(iolog, s, ddir);
2335 s->bs = bs;
ae588852 2336
7e419452
JA
2337 if (iolog->log_offset) {
2338 struct io_sample_offset *so = (void *) s;
ae588852 2339
7e419452
JA
2340 so->offset = offset;
2341 }
ae588852 2342
7e419452
JA
2343 cur_log->nr_samples++;
2344 return;
ae588852
JA
2345 }
2346
7e419452 2347 iolog->disabled = true;
3c39a379
JA
2348}
2349
7fb28d36
JA
2350static inline void reset_io_stat(struct io_stat *ios)
2351{
5b8f19b7
JA
2352 ios->min_val = -1ULL;
2353 ios->max_val = ios->samples = 0;
7fb28d36
JA
2354 ios->mean.u.f = ios->S.u.f = 0;
2355}
2356
6bb58215
JA
2357void reset_io_stats(struct thread_data *td)
2358{
2359 struct thread_stat *ts = &td->ts;
2360 int i, j;
2361
2362 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2363 reset_io_stat(&ts->clat_stat[i]);
2364 reset_io_stat(&ts->slat_stat[i]);
2365 reset_io_stat(&ts->lat_stat[i]);
2366 reset_io_stat(&ts->bw_stat[i]);
2367 reset_io_stat(&ts->iops_stat[i]);
2368
2369 ts->io_bytes[i] = 0;
2370 ts->runtime[i] = 0;
71cb78c1
VF
2371 ts->total_io_u[i] = 0;
2372 ts->short_io_u[i] = 0;
2373 ts->drop_io_u[i] = 0;
6bb58215 2374
b2b3eefe 2375 for (j = 0; j < FIO_IO_U_PLAT_NR; j++) {
6bb58215 2376 ts->io_u_plat[i][j] = 0;
b2b3eefe
JA
2377 if (!i)
2378 ts->io_u_sync_plat[j] = 0;
2379 }
6bb58215
JA
2380 }
2381
7f3ecee2
JA
2382 ts->total_io_u[DDIR_SYNC] = 0;
2383
6bb58215
JA
2384 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
2385 ts->io_u_map[i] = 0;
2386 ts->io_u_submit[i] = 0;
2387 ts->io_u_complete[i] = 0;
71cb78c1
VF
2388 }
2389
d6bb626e
VF
2390 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++)
2391 ts->io_u_lat_n[i] = 0;
71cb78c1 2392 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
6bb58215 2393 ts->io_u_lat_u[i] = 0;
71cb78c1 2394 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
6bb58215 2395 ts->io_u_lat_m[i] = 0;
6bb58215 2396
71cb78c1
VF
2397 ts->total_submit = 0;
2398 ts->total_complete = 0;
fd5d733f 2399 ts->nr_zone_resets = 0;
96563db9 2400 ts->cachehit = ts->cachemiss = 0;
6bb58215
JA
2401}
2402
d96d3bb3 2403static void __add_stat_to_log(struct io_log *iolog, enum fio_ddir ddir,
e6989e10 2404 unsigned long elapsed, bool log_max)
99007068
PO
2405{
2406 /*
2407 * Note an entry in the log. Use the mean from the logged samples,
2408 * making sure to properly round up. Only write a log entry if we
2409 * had actual samples done.
2410 */
d96d3bb3 2411 if (iolog->avg_window[ddir].samples) {
af2fde19 2412 union io_sample_data data;
99007068 2413
e6989e10 2414 if (log_max)
af2fde19 2415 data.val = iolog->avg_window[ddir].max_val;
e6989e10 2416 else
af2fde19 2417 data.val = iolog->avg_window[ddir].mean.u.f + 0.50;
e6989e10 2418
af2fde19 2419 __add_log_sample(iolog, data, ddir, 0, elapsed, 0);
99007068 2420 }
99007068 2421
d96d3bb3
JA
2422 reset_io_stat(&iolog->avg_window[ddir]);
2423}
99007068 2424
e6989e10
JA
2425static void _add_stat_to_log(struct io_log *iolog, unsigned long elapsed,
2426 bool log_max)
d96d3bb3
JA
2427{
2428 int ddir;
99007068 2429
d96d3bb3 2430 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
e6989e10 2431 __add_stat_to_log(iolog, ddir, elapsed, log_max);
99007068
PO
2432}
2433
674456bf
JF
2434static unsigned long add_log_sample(struct thread_data *td,
2435 struct io_log *iolog,
2436 union io_sample_data data,
5fff9543 2437 enum fio_ddir ddir, unsigned long long bs,
674456bf 2438 uint64_t offset)
bb3884d8 2439{
7fb28d36 2440 unsigned long elapsed, this_window;
b8bc8cba 2441
ff58fced 2442 if (!ddir_rw(ddir))
d454a205 2443 return 0;
ff58fced 2444
b8bc8cba
JA
2445 elapsed = mtime_since_now(&td->epoch);
2446
2447 /*
2448 * If no time averaging, just add the log sample.
2449 */
2450 if (!iolog->avg_msec) {
af2fde19 2451 __add_log_sample(iolog, data, ddir, bs, elapsed, offset);
d454a205 2452 return 0;
b8bc8cba
JA
2453 }
2454
2455 /*
2456 * Add the sample. If the time period has passed, then
2457 * add that entry to the log and clear.
2458 */
af2fde19 2459 add_stat_sample(&iolog->avg_window[ddir], data.val);
b8bc8cba 2460
7fb28d36
JA
2461 /*
2462 * If period hasn't passed, adding the above sample is all we
2463 * need to do.
2464 */
8355119b
SW
2465 this_window = elapsed - iolog->avg_last[ddir];
2466 if (elapsed < iolog->avg_last[ddir])
2467 return iolog->avg_last[ddir] - elapsed;
f5a568cf 2468 else if (this_window < iolog->avg_msec) {
674456bf 2469 unsigned long diff = iolog->avg_msec - this_window;
d454a205 2470
b392f36d 2471 if (inline_log(iolog) || diff > LOG_MSEC_SLACK)
d454a205
JA
2472 return diff;
2473 }
b8bc8cba 2474
8355119b 2475 __add_stat_to_log(iolog, ddir, elapsed, td->o.log_max != 0);
b8bc8cba 2476
8355119b 2477 iolog->avg_last[ddir] = elapsed - (this_window - iolog->avg_msec);
d454a205 2478 return iolog->avg_msec;
99007068 2479}
6eaf09d6 2480
a47591e4 2481void finalize_logs(struct thread_data *td, bool unit_logs)
99007068
PO
2482{
2483 unsigned long elapsed;
6eaf09d6 2484
99007068 2485 elapsed = mtime_since_now(&td->epoch);
b8bc8cba 2486
a47591e4 2487 if (td->clat_log && unit_logs)
e6989e10 2488 _add_stat_to_log(td->clat_log, elapsed, td->o.log_max != 0);
a47591e4 2489 if (td->slat_log && unit_logs)
e6989e10 2490 _add_stat_to_log(td->slat_log, elapsed, td->o.log_max != 0);
a47591e4 2491 if (td->lat_log && unit_logs)
e6989e10 2492 _add_stat_to_log(td->lat_log, elapsed, td->o.log_max != 0);
a47591e4 2493 if (td->bw_log && (unit_logs == per_unit_log(td->bw_log)))
e6989e10 2494 _add_stat_to_log(td->bw_log, elapsed, td->o.log_max != 0);
a47591e4 2495 if (td->iops_log && (unit_logs == per_unit_log(td->iops_log)))
e6989e10 2496 _add_stat_to_log(td->iops_log, elapsed, td->o.log_max != 0);
bb3884d8
JA
2497}
2498
5fff9543 2499void add_agg_sample(union io_sample_data data, enum fio_ddir ddir, unsigned long long bs)
bb3884d8 2500{
ff58fced 2501 struct io_log *iolog;
bb3884d8 2502
ff58fced
JA
2503 if (!ddir_rw(ddir))
2504 return;
2505
2506 iolog = agg_io_log[ddir];
af2fde19 2507 __add_log_sample(iolog, data, ddir, bs, mtime_since_genesis(), 0);
bb3884d8
JA
2508}
2509
b2b3eefe
JA
2510void add_sync_clat_sample(struct thread_stat *ts, unsigned long long nsec)
2511{
2512 unsigned int idx = plat_val_to_idx(nsec);
2513 assert(idx < FIO_IO_U_PLAT_NR);
2514
2515 ts->io_u_sync_plat[idx]++;
2516 add_stat_sample(&ts->sync_stat, nsec);
2517}
2518
83349190 2519static void add_clat_percentile_sample(struct thread_stat *ts,
d6bb626e 2520 unsigned long long nsec, enum fio_ddir ddir)
83349190 2521{
d6bb626e 2522 unsigned int idx = plat_val_to_idx(nsec);
83349190
YH
2523 assert(idx < FIO_IO_U_PLAT_NR);
2524
2525 ts->io_u_plat[ddir][idx]++;
2526}
2527
1e97cce9 2528void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
5fff9543
JF
2529 unsigned long long nsec, unsigned long long bs,
2530 uint64_t offset)
3c39a379 2531{
26b3a188 2532 const bool needs_lock = td_async_processing(td);
1e613c9c 2533 unsigned long elapsed, this_window;
756867bd 2534 struct thread_stat *ts = &td->ts;
1e613c9c 2535 struct io_log *iolog = td->clat_hist_log;
079ad09b 2536
26b3a188
JA
2537 if (needs_lock)
2538 __td_io_u_lock(td);
75dc383e 2539
d6bb626e 2540 add_stat_sample(&ts->clat_stat[ddir], nsec);
3c39a379 2541
7b9f733a 2542 if (td->clat_log)
d6bb626e 2543 add_log_sample(td, td->clat_log, sample_val(nsec), ddir, bs,
af2fde19 2544 offset);
83349190
YH
2545
2546 if (ts->clat_percentiles)
d6bb626e 2547 add_clat_percentile_sample(ts, nsec, ddir);
75dc383e 2548
1e613c9c 2549 if (iolog && iolog->hist_msec) {
93168285
JA
2550 struct io_hist *hw = &iolog->hist_window[ddir];
2551
2552 hw->samples++;
1e613c9c 2553 elapsed = mtime_since_now(&td->epoch);
93168285 2554 if (!hw->hist_last)
1e613c9c
KC
2555 hw->hist_last = elapsed;
2556 this_window = elapsed - hw->hist_last;
2557
2558 if (this_window >= iolog->hist_msec) {
6cc0e5aa 2559 uint64_t *io_u_plat;
65a4d15c 2560 struct io_u_plat_entry *dst;
93168285 2561
1e613c9c 2562 /*
93168285
JA
2563 * Make a byte-for-byte copy of the latency histogram
2564 * stored in td->ts.io_u_plat[ddir], recording it in a
2565 * log sample. Note that the matching call to free() is
2566 * located in iolog.c after printing this sample to the
2567 * log file.
1e613c9c 2568 */
6cc0e5aa 2569 io_u_plat = (uint64_t *) td->ts.io_u_plat[ddir];
65a4d15c
KC
2570 dst = malloc(sizeof(struct io_u_plat_entry));
2571 memcpy(&(dst->io_u_plat), io_u_plat,
93168285 2572 FIO_IO_U_PLAT_NR * sizeof(unsigned int));
d730bc58 2573 flist_add(&dst->list, &hw->list);
af2fde19 2574 __add_log_sample(iolog, sample_plat(dst), ddir, bs,
93168285 2575 elapsed, offset);
1e613c9c
KC
2576
2577 /*
93168285
JA
2578 * Update the last time we recorded as being now, minus
2579 * any drift in time we encountered before actually
2580 * making the record.
1e613c9c
KC
2581 */
2582 hw->hist_last = elapsed - (this_window - iolog->hist_msec);
2583 hw->samples = 0;
2584 }
2585 }
2586
26b3a188
JA
2587 if (needs_lock)
2588 __td_io_u_unlock(td);
3c39a379
JA
2589}
2590
1e97cce9 2591void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
5fff9543 2592 unsigned long usec, unsigned long long bs, uint64_t offset)
3c39a379 2593{
26b3a188 2594 const bool needs_lock = td_async_processing(td);
756867bd 2595 struct thread_stat *ts = &td->ts;
079ad09b 2596
ff58fced
JA
2597 if (!ddir_rw(ddir))
2598 return;
2599
26b3a188
JA
2600 if (needs_lock)
2601 __td_io_u_lock(td);
75dc383e 2602
d85f5118 2603 add_stat_sample(&ts->slat_stat[ddir], usec);
3c39a379 2604
7b9f733a 2605 if (td->slat_log)
af2fde19 2606 add_log_sample(td, td->slat_log, sample_val(usec), ddir, bs, offset);
75dc383e 2607
26b3a188
JA
2608 if (needs_lock)
2609 __td_io_u_unlock(td);
3c39a379
JA
2610}
2611
02af0988 2612void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
5fff9543
JF
2613 unsigned long long nsec, unsigned long long bs,
2614 uint64_t offset)
02af0988 2615{
26b3a188 2616 const bool needs_lock = td_async_processing(td);
02af0988
JA
2617 struct thread_stat *ts = &td->ts;
2618
ff58fced
JA
2619 if (!ddir_rw(ddir))
2620 return;
2621
26b3a188
JA
2622 if (needs_lock)
2623 __td_io_u_lock(td);
75dc383e 2624
d6bb626e 2625 add_stat_sample(&ts->lat_stat[ddir], nsec);
02af0988 2626
7b9f733a 2627 if (td->lat_log)
d6bb626e 2628 add_log_sample(td, td->lat_log, sample_val(nsec), ddir, bs,
af2fde19 2629 offset);
75dc383e 2630
b599759b
JA
2631 if (ts->lat_percentiles)
2632 add_clat_percentile_sample(ts, nsec, ddir);
2633
26b3a188
JA
2634 if (needs_lock)
2635 __td_io_u_unlock(td);
02af0988
JA
2636}
2637
a47591e4 2638void add_bw_sample(struct thread_data *td, struct io_u *io_u,
d6bb626e 2639 unsigned int bytes, unsigned long long spent)
a47591e4 2640{
26b3a188 2641 const bool needs_lock = td_async_processing(td);
a47591e4
JA
2642 struct thread_stat *ts = &td->ts;
2643 unsigned long rate;
2644
2645 if (spent)
d6bb626e 2646 rate = (unsigned long) (bytes * 1000000ULL / spent);
a47591e4
JA
2647 else
2648 rate = 0;
2649
26b3a188
JA
2650 if (needs_lock)
2651 __td_io_u_lock(td);
a47591e4
JA
2652
2653 add_stat_sample(&ts->bw_stat[io_u->ddir], rate);
2654
2655 if (td->bw_log)
af2fde19
SW
2656 add_log_sample(td, td->bw_log, sample_val(rate), io_u->ddir,
2657 bytes, io_u->offset);
a47591e4
JA
2658
2659 td->stat_io_bytes[io_u->ddir] = td->this_io_bytes[io_u->ddir];
26b3a188
JA
2660
2661 if (needs_lock)
2662 __td_io_u_unlock(td);
a47591e4
JA
2663}
2664
8b6a404c
VF
2665static int __add_samples(struct thread_data *td, struct timespec *parent_tv,
2666 struct timespec *t, unsigned int avg_time,
4843277a
JA
2667 uint64_t *this_io_bytes, uint64_t *stat_io_bytes,
2668 struct io_stat *stat, struct io_log *log,
2669 bool is_kb)
3c39a379 2670{
26b3a188 2671 const bool needs_lock = td_async_processing(td);
ff58fced 2672 unsigned long spent, rate;
a47591e4 2673 enum fio_ddir ddir;
674456bf 2674 unsigned long next, next_log;
d454a205 2675
4843277a 2676 next_log = avg_time;
ff58fced 2677
4843277a
JA
2678 spent = mtime_since(parent_tv, t);
2679 if (spent < avg_time && avg_time - spent >= LOG_MSEC_SLACK)
2680 return avg_time - spent;
9602d8df 2681
26b3a188
JA
2682 if (needs_lock)
2683 __td_io_u_lock(td);
a9da8ab2 2684
9602d8df 2685 /*
5daa4ebe
JC
2686 * Compute both read and write rates for the interval.
2687 */
c1f50f76 2688 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
5daa4ebe
JC
2689 uint64_t delta;
2690
4843277a 2691 delta = this_io_bytes[ddir] - stat_io_bytes[ddir];
5daa4ebe
JC
2692 if (!delta)
2693 continue; /* No entries for interval */
3c39a379 2694
4843277a
JA
2695 if (spent) {
2696 if (is_kb)
2697 rate = delta * 1000 / spent / 1024; /* KiB/s */
2698 else
2699 rate = (delta * 1000) / spent;
2700 } else
0956264f
JA
2701 rate = 0;
2702
4843277a 2703 add_stat_sample(&stat[ddir], rate);
3c39a379 2704
37181709 2705 if (log) {
5fff9543 2706 unsigned long long bs = 0;
66b98c9f
JA
2707
2708 if (td->o.min_bs[ddir] == td->o.max_bs[ddir])
2709 bs = td->o.min_bs[ddir];
2710
4843277a 2711 next = add_log_sample(td, log, sample_val(rate), ddir, bs, 0);
d454a205 2712 next_log = min(next_log, next);
66b98c9f 2713 }
5daa4ebe 2714
4843277a 2715 stat_io_bytes[ddir] = this_io_bytes[ddir];
5daa4ebe 2716 }
3c39a379 2717
8b6a404c 2718 timespec_add_msec(parent_tv, avg_time);
a47591e4 2719
26b3a188
JA
2720 if (needs_lock)
2721 __td_io_u_unlock(td);
a47591e4 2722
4843277a
JA
2723 if (spent <= avg_time)
2724 next = avg_time;
306fea38 2725 else
4843277a 2726 next = avg_time - (1 + spent - avg_time);
a47591e4 2727
d454a205 2728 return min(next, next_log);
a47591e4
JA
2729}
2730
8b6a404c 2731static int add_bw_samples(struct thread_data *td, struct timespec *t)
4843277a
JA
2732{
2733 return __add_samples(td, &td->bw_sample_time, t, td->o.bw_avg_time,
2734 td->this_io_bytes, td->stat_io_bytes,
2735 td->ts.bw_stat, td->bw_log, true);
2736}
2737
a47591e4
JA
2738void add_iops_sample(struct thread_data *td, struct io_u *io_u,
2739 unsigned int bytes)
2740{
26b3a188 2741 const bool needs_lock = td_async_processing(td);
a47591e4
JA
2742 struct thread_stat *ts = &td->ts;
2743
26b3a188
JA
2744 if (needs_lock)
2745 __td_io_u_lock(td);
a47591e4
JA
2746
2747 add_stat_sample(&ts->iops_stat[io_u->ddir], 1);
2748
2749 if (td->iops_log)
af2fde19
SW
2750 add_log_sample(td, td->iops_log, sample_val(1), io_u->ddir,
2751 bytes, io_u->offset);
a47591e4
JA
2752
2753 td->stat_io_blocks[io_u->ddir] = td->this_io_blocks[io_u->ddir];
26b3a188
JA
2754
2755 if (needs_lock)
2756 __td_io_u_unlock(td);
3c39a379 2757}
c8eeb9df 2758
8b6a404c 2759static int add_iops_samples(struct thread_data *td, struct timespec *t)
c8eeb9df 2760{
4843277a
JA
2761 return __add_samples(td, &td->iops_sample_time, t, td->o.iops_avg_time,
2762 td->this_io_blocks, td->stat_io_blocks,
2763 td->ts.iops_stat, td->iops_log, false);
a47591e4
JA
2764}
2765
2766/*
2767 * Returns msecs to next event
2768 */
2769int calc_log_samples(void)
2770{
2771 struct thread_data *td;
2772 unsigned int next = ~0U, tmp;
8b6a404c 2773 struct timespec now;
a47591e4
JA
2774 int i;
2775
2776 fio_gettime(&now, NULL);
2777
2778 for_each_td(td, i) {
8243be59
JA
2779 if (!td->o.stats)
2780 continue;
6a89b401 2781 if (in_ramp_time(td) ||
a47591e4
JA
2782 !(td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING)) {
2783 next = min(td->o.iops_avg_time, td->o.bw_avg_time);
2784 continue;
2785 }
37181709
AH
2786 if (!td->bw_log ||
2787 (td->bw_log && !per_unit_log(td->bw_log))) {
a47591e4
JA
2788 tmp = add_bw_samples(td, &now);
2789 if (tmp < next)
2790 next = tmp;
2791 }
37181709
AH
2792 if (!td->iops_log ||
2793 (td->iops_log && !per_unit_log(td->iops_log))) {
a47591e4
JA
2794 tmp = add_iops_samples(td, &now);
2795 if (tmp < next)
2796 next = tmp;
2797 }
2798 }
2799
2800 return next == ~0U ? 0 : next;
c8eeb9df 2801}
cef9175e
JA
2802
2803void stat_init(void)
2804{
971caeb1 2805 stat_sem = fio_sem_init(FIO_SEM_UNLOCKED);
cef9175e
JA
2806}
2807
2808void stat_exit(void)
2809{
2810 /*
2811 * When we have the mutex, we know out-of-band access to it
2812 * have ended.
2813 */
971caeb1
BVA
2814 fio_sem_down(stat_sem);
2815 fio_sem_remove(stat_sem);
cef9175e 2816}
b2ee7647 2817
b2ee7647
JA
2818/*
2819 * Called from signal handler. Wake up status thread.
2820 */
2821void show_running_run_stats(void)
2822{
a47591e4 2823 helper_do_stat();
b2ee7647 2824}
66347cfa
DE
2825
2826uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u)
2827{
2828 /* Ignore io_u's which span multiple blocks--they will just get
2829 * inaccurate counts. */
2830 int idx = (io_u->offset - io_u->file->file_offset)
2831 / td->o.bs[DDIR_TRIM];
2832 uint32_t *info = &td->ts.block_infos[idx];
2833 assert(idx < td->ts.nr_block_infos);
2834 return info;
2835}