blob: ab2f808b69f825a02c068644d4361a33747b92fd [file] [log] [blame]
Jens Axboe3c39a372006-06-06 20:56:12 +02001#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
Jens Axboe5c4e1db2006-06-07 14:17:08 +02005#include <sys/stat.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02006#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
Jens Axboe7c9b1bc2009-06-03 09:25:57 +020011#include "diskutil.h"
Jens Axboec7c6cb42011-10-13 14:12:40 +020012#include "lib/ieee754.h"
Shaohua Licc372b12012-09-17 09:12:18 +020013#include "json.h"
Jens Axboe44404c52013-01-24 14:20:09 -070014#include "lib/getrusage.h"
Huadong Liuf2a2ce02013-01-30 13:22:24 +010015#include "idletime.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020016
Jens Axboe3c39a372006-06-06 20:56:12 +020017void update_rusage_stat(struct thread_data *td)
18{
Jens Axboe756867b2007-03-06 15:19:24 +010019 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +020020
Jens Axboe44404c52013-01-24 14:20:09 -070021 fio_getrusage(&td->ru_end);
Jens Axboec8aaba12011-10-03 12:14:19 +020022 ts->usr_time += mtime_since(&td->ru_start.ru_utime,
23 &td->ru_end.ru_utime);
24 ts->sys_time += mtime_since(&td->ru_start.ru_stime,
25 &td->ru_end.ru_stime);
26 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
27 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
28 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
29 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010030
Jens Axboec8aaba12011-10-03 12:14:19 +020031 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +020032}
33
Yu-ju Hong83349192011-08-13 00:53:44 +020034/*
35 * Given a latency, return the index of the corresponding bucket in
36 * the structure tracking percentiles.
37 *
38 * (1) find the group (and error bits) that the value (latency)
39 * belongs to by looking at its MSB. (2) find the bucket number in the
40 * group by looking at the index bits.
41 *
42 */
43static unsigned int plat_val_to_idx(unsigned int val)
44{
45 unsigned int msb, error_bits, base, offset, idx;
46
47 /* Find MSB starting from bit 0 */
48 if (val == 0)
49 msb = 0;
50 else
51 msb = (sizeof(val)*8) - __builtin_clz(val) - 1;
52
Jens Axboe716050f2011-08-16 08:43:45 +020053 /*
54 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
55 * all bits of the sample as index
56 */
Yu-ju Hong83349192011-08-13 00:53:44 +020057 if (msb <= FIO_IO_U_PLAT_BITS)
58 return val;
59
60 /* Compute the number of error bits to discard*/
61 error_bits = msb - FIO_IO_U_PLAT_BITS;
62
63 /* Compute the number of buckets before the group */
64 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
65
Jens Axboe716050f2011-08-16 08:43:45 +020066 /*
67 * Discard the error bits and apply the mask to find the
68 * index for the buckets in the group
69 */
Yu-ju Hong83349192011-08-13 00:53:44 +020070 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
71
72 /* Make sure the index does not exceed (array size - 1) */
73 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1)?
74 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
75
76 return idx;
77}
78
79/*
80 * Convert the given index of the bucket array to the value
81 * represented by the bucket
82 */
83static unsigned int plat_idx_to_val(unsigned int idx)
84{
85 unsigned int error_bits, k, base;
86
87 assert(idx < FIO_IO_U_PLAT_NR);
88
89 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
90 * all bits of the sample as index */
91 if (idx < (FIO_IO_U_PLAT_VAL << 1) )
92 return idx;
93
94 /* Find the group and compute the minimum value of that group */
95 error_bits = (idx >> FIO_IO_U_PLAT_BITS) -1;
96 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
97
98 /* Find its bucket number of the group */
99 k = idx % FIO_IO_U_PLAT_VAL;
100
101 /* Return the mean of the range of the bucket */
102 return base + ((k + 0.5) * (1 << error_bits));
103}
104
105static int double_cmp(const void *a, const void *b)
106{
Jens Axboe802ad4a2011-10-05 09:51:58 +0200107 const fio_fp64_t fa = *(const fio_fp64_t *) a;
108 const fio_fp64_t fb = *(const fio_fp64_t *) b;
Yu-ju Hong83349192011-08-13 00:53:44 +0200109 int cmp = 0;
110
Jens Axboe802ad4a2011-10-05 09:51:58 +0200111 if (fa.u.f > fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200112 cmp = 1;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200113 else if (fa.u.f < fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200114 cmp = -1;
115
116 return cmp;
117}
118
Jens Axboe1db92cb2011-10-13 13:43:36 +0200119static unsigned int calc_clat_percentiles(unsigned int *io_u_plat,
120 unsigned long nr, fio_fp64_t *plist,
121 unsigned int **output,
122 unsigned int *maxv,
123 unsigned int *minv)
Yu-ju Hong83349192011-08-13 00:53:44 +0200124{
125 unsigned long sum = 0;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200126 unsigned int len, i, j = 0;
127 unsigned int oval_len = 0;
128 unsigned int *ovals = NULL;
129 int is_last;
130
131 *minv = -1U;
132 *maxv = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200133
Jens Axboe802ad4a2011-10-05 09:51:58 +0200134 len = 0;
135 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
136 len++;
Jens Axboe716050f2011-08-16 08:43:45 +0200137
Jens Axboe351de8d2011-10-12 21:03:45 +0200138 if (!len)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200139 return 0;
Jens Axboe351de8d2011-10-12 21:03:45 +0200140
Jens Axboe716050f2011-08-16 08:43:45 +0200141 /*
Jens Axboe802ad4a2011-10-05 09:51:58 +0200142 * Sort the percentile list. Note that it may already be sorted if
143 * we are using the default values, but since it's a short list this
144 * isn't a worry. Also note that this does not work for NaN values.
Jens Axboe716050f2011-08-16 08:43:45 +0200145 */
Jens Axboe802ad4a2011-10-05 09:51:58 +0200146 if (len > 1)
147 qsort((void*)plist, len, sizeof(plist[0]), double_cmp);
Yu-ju Hong83349192011-08-13 00:53:44 +0200148
Jens Axboe4f6f8292011-10-13 09:28:21 +0200149 /*
150 * Calculate bucket values, note down max and min values
151 */
Jens Axboe07511a62011-10-13 12:00:24 +0200152 is_last = 0;
153 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200154 sum += io_u_plat[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200155 while (sum >= (plist[j].u.f / 100.0 * nr)) {
156 assert(plist[j].u.f <= 100.0);
Yu-ju Hong83349192011-08-13 00:53:44 +0200157
Jens Axboe4f6f8292011-10-13 09:28:21 +0200158 if (j == oval_len) {
159 oval_len += 100;
160 ovals = realloc(ovals, oval_len * sizeof(unsigned int));
161 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200162
Jens Axboe4f6f8292011-10-13 09:28:21 +0200163 ovals[j] = plat_idx_to_val(i);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200164 if (ovals[j] < *minv)
165 *minv = ovals[j];
166 if (ovals[j] > *maxv)
167 *maxv = ovals[j];
Jens Axboe07511a62011-10-13 12:00:24 +0200168
169 is_last = (j == len - 1);
170 if (is_last)
171 break;
172
Jens Axboe4f6f8292011-10-13 09:28:21 +0200173 j++;
Yu-ju Hong83349192011-08-13 00:53:44 +0200174 }
175 }
Jens Axboe4f6f8292011-10-13 09:28:21 +0200176
Jens Axboe1db92cb2011-10-13 13:43:36 +0200177 *output = ovals;
178 return len;
179}
180
181/*
182 * Find and display the p-th percentile of clat
183 */
184static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
Jens Axboe3dc1e5b2013-02-07 12:56:09 +0100185 fio_fp64_t *plist, unsigned int precision)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200186{
187 unsigned int len, j = 0, minv, maxv;
188 unsigned int *ovals;
Jens Axboeeef02442013-02-06 08:51:57 +0100189 int is_last, per_line, scale_down;
190 char fmt[32];
Jens Axboe1db92cb2011-10-13 13:43:36 +0200191
192 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
193 if (!len)
194 goto out;
195
Jens Axboe4f6f8292011-10-13 09:28:21 +0200196 /*
197 * We default to usecs, but if the value range is such that we
198 * should scale down to msecs, do that.
199 */
200 if (minv > 2000 && maxv > 99999) {
201 scale_down = 1;
202 log_info(" clat percentiles (msec):\n |");
203 } else {
204 scale_down = 0;
205 log_info(" clat percentiles (usec):\n |");
206 }
207
Jens Axboe3dc1e5b2013-02-07 12:56:09 +0100208 snprintf(fmt, sizeof(fmt), "%%1.%uf", precision);
Jens Axboeeef02442013-02-06 08:51:57 +0100209 per_line = (80 - 7) / (precision + 14);
Jens Axboe619adf92013-02-06 08:46:55 +0100210
Jens Axboe4f6f8292011-10-13 09:28:21 +0200211 for (j = 0; j < len; j++) {
Jens Axboe619adf92013-02-06 08:46:55 +0100212 char fbuf[16], *ptr = fbuf;
Jens Axboe4f6f8292011-10-13 09:28:21 +0200213
214 /* for formatting */
Jens Axboeeef02442013-02-06 08:51:57 +0100215 if (j != 0 && (j % per_line) == 0)
Jens Axboe4f6f8292011-10-13 09:28:21 +0200216 log_info(" |");
217
218 /* end of the list */
219 is_last = (j == len - 1);
220
221 if (plist[j].u.f < 10.0)
Jens Axboe619adf92013-02-06 08:46:55 +0100222 ptr += sprintf(fbuf, " ");
223
Jens Axboeeef02442013-02-06 08:51:57 +0100224 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f);
Jens Axboe4f6f8292011-10-13 09:28:21 +0200225
226 if (scale_down)
227 ovals[j] = (ovals[j] + 999) / 1000;
228
229 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
230
231 if (is_last)
232 break;
233
Jens Axboeeef02442013-02-06 08:51:57 +0100234 if ((j % per_line) == per_line - 1) /* for formatting */
Jens Axboe4f6f8292011-10-13 09:28:21 +0200235 log_info("\n");
236 }
237
Jens Axboe1db92cb2011-10-13 13:43:36 +0200238out:
Jens Axboe4f6f8292011-10-13 09:28:21 +0200239 if (ovals)
240 free(ovals);
Yu-ju Hong83349192011-08-13 00:53:44 +0200241}
242
Jens Axboe3c39a372006-06-06 20:56:12 +0200243static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
244 double *mean, double *dev)
245{
Jens Axboe68704082007-01-10 19:56:37 +0100246 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200247
248 if (is->samples == 0)
249 return 0;
250
251 *min = is->min_val;
252 *max = is->max_val;
253
254 n = (double) is->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200255 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200256
Jens Axboe68704082007-01-10 19:56:37 +0100257 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200258 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100259 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200260 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100261
Jens Axboe3c39a372006-06-06 20:56:12 +0200262 return 1;
263}
264
Jens Axboea64e88d2011-10-03 14:20:01 +0200265void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200266{
Jens Axboedbe11252007-02-11 00:19:51 +0100267 char *p1, *p2, *p3, *p4;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200268 const char *ddir_str[] = { " READ", " WRITE" , " TRIM"};
Jens Axboedbe11252007-02-11 00:19:51 +0100269 int i;
270
Jens Axboe7e1773b2011-10-14 12:47:56 +0200271 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200272
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200273 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200274 const int i2p = is_power_of_2(rs->kb_base);
275
Jens Axboedbe11252007-02-11 00:19:51 +0100276 if (!rs->max_run[i])
277 continue;
278
Steven Noonan73798eb2013-04-05 16:57:38 -0700279 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p, 8);
Steven Noonanad705bc2013-04-08 15:05:25 -0700280 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p, rs->unit_base);
281 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p, rs->unit_base);
282 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p, rs->unit_base);
Jens Axboedbe11252007-02-11 00:19:51 +0100283
Steven Noonan73798eb2013-04-05 16:57:38 -0700284 log_info("%s: io=%s, aggrb=%s/s, minb=%s/s, maxb=%s/s,"
Jens Axboe771e58b2013-01-30 12:56:23 +0100285 " mint=%llumsec, maxt=%llumsec\n",
286 rs->unified_rw_rep ? " MIXED" : ddir_str[i],
287 p1, p2, p3, p4, rs->min_run[i], rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100288
289 free(p1);
290 free(p2);
291 free(p3);
292 free(p4);
293 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200294}
295
Jens Axboeb3605062007-03-12 14:19:47 +0100296#define ts_total_io_u(ts) \
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200297 ((ts)->total_io_u[DDIR_READ] + (ts)->total_io_u[DDIR_WRITE] +\
298 (ts)->total_io_u[DDIR_TRIM])
Jens Axboeb3605062007-03-12 14:19:47 +0100299
Jens Axboe838bc702008-05-22 13:08:23 +0200300static void stat_calc_dist(unsigned int *map, unsigned long total,
301 double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100302{
303 int i;
304
305 /*
306 * Do depth distribution calculations
307 */
308 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200309 if (total) {
310 io_u_dist[i] = (double) map[i] / (double) total;
311 io_u_dist[i] *= 100.0;
312 if (io_u_dist[i] < 0.1 && map[i])
313 io_u_dist[i] = 0.1;
314 } else
315 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100316 }
317}
318
Jens Axboe04a0fea2007-06-19 12:48:41 +0200319static void stat_calc_lat(struct thread_stat *ts, double *dst,
320 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100321{
Jens Axboe838bc702008-05-22 13:08:23 +0200322 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100323 int i;
324
325 /*
326 * Do latency distribution calculations
327 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200328 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200329 if (total) {
330 dst[i] = (double) src[i] / (double) total;
331 dst[i] *= 100.0;
332 if (dst[i] < 0.01 && src[i])
333 dst[i] = 0.01;
334 } else
335 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100336 }
337}
338
Jens Axboe04a0fea2007-06-19 12:48:41 +0200339static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
340{
341 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
342}
343
344static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
345{
346 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
347}
348
Jens Axboeea2accc2007-06-19 09:48:44 +0200349static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
350 double *dev)
351{
352 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
353 *min /= 1000;
354 *max /= 1000;
355 *mean /= 1000.0;
356 *dev /= 1000.0;
357 return 0;
358 }
359
360 return 1;
361}
362
Jens Axboe756867b2007-03-06 15:19:24 +0100363static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200364 int ddir)
365{
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200366 const char *ddir_str[] = { "read ", "write", "trim" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200367 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100368 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200369 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100370 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200371 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200372
Jens Axboeff58fce2010-08-25 12:02:08 +0200373 assert(ddir_rw(ddir));
374
Jens Axboe756867b2007-03-06 15:19:24 +0100375 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200376 return;
377
Jens Axboe90fef2d2009-07-17 22:33:32 +0200378 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200379 runt = ts->runtime[ddir];
380
381 bw = (1000 * ts->io_bytes[ddir]) / runt;
Steven Noonan73798eb2013-04-05 16:57:38 -0700382 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p, 8);
Steven Noonanad705bc2013-04-08 15:05:25 -0700383 bw_p = num2str(bw, 6, 1, i2p, ts->unit_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200384
Bruce Cran0aacc502011-07-09 08:19:53 +0200385 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Steven Noonan73798eb2013-04-05 16:57:38 -0700386 iops_p = num2str(iops, 6, 1, 0, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100387
Steven Noonan73798eb2013-04-05 16:57:38 -0700388 log_info(" %s: io=%s, bw=%s/s, iops=%s, runt=%6llumsec\n",
Jens Axboe771e58b2013-01-30 12:56:23 +0100389 rs->unified_rw_rep ? "mixed" : ddir_str[ddir],
390 io_p, bw_p, iops_p, ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100391
392 free(io_p);
393 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100394 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200395
Jens Axboed85f5112007-06-18 09:41:23 +0200396 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
397 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200398 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200399
Jens Axboeea2accc2007-06-19 09:48:44 +0200400 if (!usec_to_msec(&min, &max, &mean, &dev))
Jens Axboed85f5112007-06-18 09:41:23 +0200401 base = "(msec)";
Jens Axboeea2accc2007-06-19 09:48:44 +0200402
Steven Noonan73798eb2013-04-05 16:57:38 -0700403 minp = num2str(min, 6, 1, 0, 0);
404 maxp = num2str(max, 6, 1, 0, 0);
Jens Axboed9309cb2007-08-16 13:07:46 +0200405
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100406 log_info(" slat %s: min=%s, max=%s, avg=%5.02f,"
407 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200408
409 free(minp);
410 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200411 }
412 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
413 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200414 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200415
Jens Axboeea2accc2007-06-19 09:48:44 +0200416 if (!usec_to_msec(&min, &max, &mean, &dev))
417 base = "(msec)";
418
Steven Noonan73798eb2013-04-05 16:57:38 -0700419 minp = num2str(min, 6, 1, 0, 0);
420 maxp = num2str(max, 6, 1, 0, 0);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100421
422 log_info(" clat %s: min=%s, max=%s, avg=%5.02f,"
423 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200424
425 free(minp);
426 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200427 }
Jens Axboe02af0982010-06-24 09:59:34 +0200428 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
429 const char *base = "(usec)";
430 char *minp, *maxp;
431
432 if (!usec_to_msec(&min, &max, &mean, &dev))
433 base = "(msec)";
434
Steven Noonan73798eb2013-04-05 16:57:38 -0700435 minp = num2str(min, 6, 1, 0, 0);
436 maxp = num2str(max, 6, 1, 0, 0);
Jens Axboe02af0982010-06-24 09:59:34 +0200437
438 log_info(" lat %s: min=%s, max=%s, avg=%5.02f,"
439 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
440
441 free(minp);
442 free(maxp);
443 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200444 if (ts->clat_percentiles) {
445 show_clat_percentiles(ts->io_u_plat[ddir],
446 ts->clat_stat[ddir].samples,
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100447 ts->percentile_list,
448 ts->percentile_precision);
Yu-ju Hong83349192011-08-13 00:53:44 +0200449 }
Jens Axboe079ad092007-02-20 13:58:20 +0100450 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Steven Noonan142c7f22013-04-08 15:25:54 -0700451 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
Steven Noonand6869902013-04-08 15:40:13 -0700452 const char *bw_str = (rs->unit_base == 1 ? "Kbit" : "KB");
453
454 if (rs->unit_base == 1) {
455 min *= 8.0;
456 max *= 8.0;
457 mean *= 8.0;
458 dev *= 8.0;
459 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200460
Jens Axboe2f2c6922012-02-07 16:42:43 +0100461 if (rs->agg[ddir]) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100462 p_of_agg = mean * 100 / (double) rs->agg[ddir];
463 if (p_of_agg > 100.0)
464 p_of_agg = 100.0;
465 }
Jens Axboeb7017e32011-10-14 09:30:01 +0200466
Steven Noonan142c7f22013-04-08 15:25:54 -0700467 if (mean > fkb_base * fkb_base) {
468 min /= fkb_base;
469 max /= fkb_base;
470 mean /= fkb_base;
471 dev /= fkb_base;
Steven Noonand6869902013-04-08 15:40:13 -0700472 bw_str = (rs->unit_base == 1 ? "Mbit" : "MB");
Jens Axboeb7017e32011-10-14 09:30:01 +0200473 }
474
Steven Noonand6869902013-04-08 15:40:13 -0700475 log_info(" bw (%-4s/s): min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboeb7017e32011-10-14 09:30:01 +0200476 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
477 p_of_agg, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200478 }
479}
480
Jens Axboe7e1773b2011-10-14 12:47:56 +0200481static int show_lat(double *io_u_lat, int nr, const char **ranges,
482 const char *msg)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200483{
Jens Axboe7e1773b2011-10-14 12:47:56 +0200484 int new_line = 1, i, line = 0, shown = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200485
486 for (i = 0; i < nr; i++) {
487 if (io_u_lat[i] <= 0.0)
488 continue;
Jens Axboe7e1773b2011-10-14 12:47:56 +0200489 shown = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200490 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200491 if (line)
492 log_info("\n");
Jens Axboe7e1773b2011-10-14 12:47:56 +0200493 log_info(" lat (%s) : ", msg);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200494 new_line = 0;
495 line = 0;
496 }
497 if (line)
498 log_info(", ");
499 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
500 line++;
501 if (line == 5)
502 new_line = 1;
503 }
Jens Axboe7e1773b2011-10-14 12:47:56 +0200504
505 if (shown)
506 log_info("\n");
507
508 return shown;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200509}
510
511static void show_lat_u(double *io_u_lat_u)
512{
513 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
514 "250=", "500=", "750=", "1000=", };
515
516 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
517}
518
519static void show_lat_m(double *io_u_lat_m)
520{
521 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
522 "250=", "500=", "750=", "1000=", "2000=",
523 ">=2000=", };
524
525 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
526}
527
528static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
529{
530 show_lat_u(io_u_lat_u);
531 show_lat_m(io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200532}
533
Jens Axboea64e88d2011-10-03 14:20:01 +0200534void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200535{
536 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100537 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100538 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200539 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
540 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe57a64322012-06-14 15:11:15 +0200541 time_t time_p;
542 char time_buf[64];
Jens Axboe3c39a372006-06-06 20:56:12 +0200543
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200544 if (!(ts->io_bytes[DDIR_READ] + ts->io_bytes[DDIR_WRITE] +
545 ts->io_bytes[DDIR_TRIM]) && !(ts->total_io_u[DDIR_READ] +
546 ts->total_io_u[DDIR_WRITE] + ts->total_io_u[DDIR_TRIM]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200547 return;
548
Jens Axboe57a64322012-06-14 15:11:15 +0200549 time(&time_p);
Saurabh De45054cb2012-10-09 14:46:24 -0600550 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
Jens Axboe57a64322012-06-14 15:11:15 +0200551
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100552 if (!ts->error) {
Jens Axboe57a64322012-06-14 15:11:15 +0200553 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100554 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200555 ts->error, (int) ts->pid, time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100556 } else {
Jens Axboe57a64322012-06-14 15:11:15 +0200557 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100558 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200559 ts->error, ts->verror, (int) ts->pid,
560 time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100561 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200562
Jens Axboe259e47d2011-10-13 21:05:59 +0200563 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100564 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100565
Jens Axboe756867b2007-03-06 15:19:24 +0100566 if (ts->io_bytes[DDIR_READ])
567 show_ddir_status(rs, ts, DDIR_READ);
568 if (ts->io_bytes[DDIR_WRITE])
569 show_ddir_status(rs, ts, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200570 if (ts->io_bytes[DDIR_TRIM])
571 show_ddir_status(rs, ts, DDIR_TRIM);
Jens Axboe3c39a372006-06-06 20:56:12 +0200572
Jens Axboe7e1773b2011-10-14 12:47:56 +0200573 stat_calc_lat_u(ts, io_u_lat_u);
574 stat_calc_lat_m(ts, io_u_lat_m);
575 show_latencies(io_u_lat_u, io_u_lat_m);
576
Jens Axboe756867b2007-03-06 15:19:24 +0100577 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100578 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100579 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200580
Jens Axboe756867b2007-03-06 15:19:24 +0100581 usr_cpu = (double) ts->usr_time * 100 / runt;
582 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200583 } else {
584 usr_cpu = 0;
585 sys_cpu = 0;
586 }
587
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100588 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
589 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100590
Jens Axboe838bc702008-05-22 13:08:23 +0200591 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100592 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
593 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
594 io_u_dist[1], io_u_dist[2],
595 io_u_dist[3], io_u_dist[4],
596 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200597
598 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
599 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
600 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
601 io_u_dist[1], io_u_dist[2],
602 io_u_dist[3], io_u_dist[4],
603 io_u_dist[5], io_u_dist[6]);
604 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
605 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
606 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
607 io_u_dist[1], io_u_dist[2],
608 io_u_dist[3], io_u_dist[4],
609 io_u_dist[5], io_u_dist[6]);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200610 log_info(" issued : total=r=%lu/w=%lu/d=%lu,"
611 " short=r=%lu/w=%lu/d=%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100612 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200613 ts->total_io_u[2],
614 ts->short_io_u[0], ts->short_io_u[1],
615 ts->short_io_u[2]);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200616 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200617 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
618 ts->total_err_count,
619 ts->first_error,
620 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200621 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200622}
623
Jens Axboe756867b2007-03-06 15:19:24 +0100624static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200625 struct group_run_stats *rs, int ddir)
626{
627 unsigned long min, max;
Jens Axboe312b4af2011-10-13 13:11:42 +0200628 unsigned long long bw, iops;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200629 unsigned int *ovals = NULL;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200630 double mean, dev;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200631 unsigned int len, minv, maxv;
632 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200633
Jens Axboeff58fce2010-08-25 12:02:08 +0200634 assert(ddir_rw(ddir));
635
Jens Axboe312b4af2011-10-13 13:11:42 +0200636 iops = bw = 0;
637 if (ts->runtime[ddir]) {
638 uint64_t runt = ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200639
Jens Axboe033bbb52012-05-07 09:46:40 +0200640 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
Jens Axboe312b4af2011-10-13 13:11:42 +0200641 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
642 }
643
644 log_info(";%llu;%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw, iops,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100645 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200646
Jens Axboe079ad092007-02-20 13:58:20 +0100647 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100648 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200649 else
Jens Axboe6d861442007-03-15 09:22:23 +0100650 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200651
Jens Axboe079ad092007-02-20 13:58:20 +0100652 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100653 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200654 else
Jens Axboe6d861442007-03-15 09:22:23 +0100655 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200656
Jens Axboe1db92cb2011-10-13 13:43:36 +0200657 if (ts->clat_percentiles) {
658 len = calc_clat_percentiles(ts->io_u_plat[ddir],
659 ts->clat_stat[ddir].samples,
660 ts->percentile_list, &ovals, &maxv,
661 &minv);
662 } else
663 len = 0;
664
665 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
666 if (i >= len) {
667 log_info(";0%%=0");
668 continue;
669 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100670 log_info(";%f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200671 }
Keplar kramer2341a372011-10-19 21:31:27 +0200672
673 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
674 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
675 else
676 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
677
Jens Axboe1db92cb2011-10-13 13:43:36 +0200678 if (ovals)
679 free(ovals);
680
Jens Axboe079ad092007-02-20 13:58:20 +0100681 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100682 double p_of_agg = 100.0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200683
Jens Axboe19d3e962012-02-07 12:27:28 +0100684 if (rs->agg[ddir]) {
685 p_of_agg = mean * 100 / (double) rs->agg[ddir];
686 if (p_of_agg > 100.0)
687 p_of_agg = 100.0;
688 }
689
Jens Axboe6d861442007-03-15 09:22:23 +0100690 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200691 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100692 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200693}
694
Shaohua Licc372b12012-09-17 09:12:18 +0200695static void add_ddir_status_json(struct thread_stat *ts,
696 struct group_run_stats *rs, int ddir, struct json_object *parent)
697{
698 unsigned long min, max;
699 unsigned long long bw, iops;
700 unsigned int *ovals = NULL;
701 double mean, dev;
702 unsigned int len, minv, maxv;
703 int i;
704 const char *ddirname[] = {"read", "write", "trim"};
705 struct json_object *dir_object, *tmp_object, *percentile_object;
706 char buf[120];
707 double p_of_agg = 100.0;
708
709 assert(ddir_rw(ddir));
710
Jens Axboe771e58b2013-01-30 12:56:23 +0100711 if (ts->unified_rw_rep && ddir != DDIR_READ)
712 return;
713
Shaohua Licc372b12012-09-17 09:12:18 +0200714 dir_object = json_create_object();
Jens Axboe771e58b2013-01-30 12:56:23 +0100715 json_object_add_value_object(parent,
716 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
Shaohua Licc372b12012-09-17 09:12:18 +0200717
718 iops = bw = 0;
719 if (ts->runtime[ddir]) {
720 uint64_t runt = ts->runtime[ddir];
721
722 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
723 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
724 }
725
726 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir] >> 10);
727 json_object_add_value_int(dir_object, "bw", bw);
728 json_object_add_value_int(dir_object, "iops", iops);
729 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
730
731 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
732 min = max = 0;
733 mean = dev = 0.0;
734 }
735 tmp_object = json_create_object();
736 json_object_add_value_object(dir_object, "slat", tmp_object);
737 json_object_add_value_int(tmp_object, "min", min);
738 json_object_add_value_int(tmp_object, "max", max);
739 json_object_add_value_float(tmp_object, "mean", mean);
740 json_object_add_value_float(tmp_object, "stddev", dev);
741
742 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
743 min = max = 0;
744 mean = dev = 0.0;
745 }
746 tmp_object = json_create_object();
747 json_object_add_value_object(dir_object, "clat", tmp_object);
748 json_object_add_value_int(tmp_object, "min", min);
749 json_object_add_value_int(tmp_object, "max", max);
750 json_object_add_value_float(tmp_object, "mean", mean);
751 json_object_add_value_float(tmp_object, "stddev", dev);
752
753 if (ts->clat_percentiles) {
754 len = calc_clat_percentiles(ts->io_u_plat[ddir],
755 ts->clat_stat[ddir].samples,
756 ts->percentile_list, &ovals, &maxv,
757 &minv);
758 } else
759 len = 0;
760
761 percentile_object = json_create_object();
762 json_object_add_value_object(tmp_object, "percentile", percentile_object);
763 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
764 if (i >= len) {
765 json_object_add_value_int(percentile_object, "0.00", 0);
766 continue;
767 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100768 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
Shaohua Licc372b12012-09-17 09:12:18 +0200769 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
770 }
771
772 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
773 min = max = 0;
774 mean = dev = 0.0;
775 }
776 tmp_object = json_create_object();
777 json_object_add_value_object(dir_object, "lat", tmp_object);
778 json_object_add_value_int(tmp_object, "min", min);
779 json_object_add_value_int(tmp_object, "max", max);
780 json_object_add_value_float(tmp_object, "mean", mean);
781 json_object_add_value_float(tmp_object, "stddev", dev);
782 if (ovals)
783 free(ovals);
784
Shaohua Lib9e1b492013-04-03 08:40:17 +0200785 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Shaohua Licc372b12012-09-17 09:12:18 +0200786 if (rs->agg[ddir]) {
787 p_of_agg = mean * 100 / (double) rs->agg[ddir];
788 if (p_of_agg > 100.0)
789 p_of_agg = 100.0;
790 }
791 } else {
792 min = max = 0;
793 p_of_agg = mean = dev = 0.0;
794 }
795 json_object_add_value_int(dir_object, "bw_min", min);
796 json_object_add_value_int(dir_object, "bw_max", max);
797 json_object_add_value_float(dir_object, "bw_agg", mean);
798 json_object_add_value_float(dir_object, "bw_mean", mean);
799 json_object_add_value_float(dir_object, "bw_dev", dev);
800}
801
Jens Axboe4d658652011-10-17 15:05:47 +0200802static void show_thread_status_terse_v2(struct thread_stat *ts,
803 struct group_run_stats *rs)
804{
805 double io_u_dist[FIO_IO_U_MAP_NR];
806 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
807 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
808 double usr_cpu, sys_cpu;
809 int i;
810
811 /* General Info */
812 log_info("2;%s;%d;%d", ts->name, ts->groupid, ts->error);
813 /* Log Read Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200814 show_ddir_status_terse(ts, rs, DDIR_READ);
Jens Axboe4d658652011-10-17 15:05:47 +0200815 /* Log Write Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200816 show_ddir_status_terse(ts, rs, DDIR_WRITE);
817 /* Log Trim Status */
818 show_ddir_status_terse(ts, rs, DDIR_TRIM);
Jens Axboe4d658652011-10-17 15:05:47 +0200819
820 /* CPU Usage */
821 if (ts->total_run_time) {
822 double runt = (double) ts->total_run_time;
823
824 usr_cpu = (double) ts->usr_time * 100 / runt;
825 sys_cpu = (double) ts->sys_time * 100 / runt;
826 } else {
827 usr_cpu = 0;
828 sys_cpu = 0;
829 }
830
831 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
832 ts->minf);
833
834 /* Calc % distribution of IO depths, usecond, msecond latency */
835 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
836 stat_calc_lat_u(ts, io_u_lat_u);
837 stat_calc_lat_m(ts, io_u_lat_m);
838
839 /* Only show fixed 7 I/O depth levels*/
840 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
841 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
842 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
843
844 /* Microsecond latency */
845 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
846 log_info(";%3.2f%%", io_u_lat_u[i]);
847 /* Millisecond latency */
848 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
849 log_info(";%3.2f%%", io_u_lat_m[i]);
850 /* Additional output if continue_on_error set - default off*/
851 if (ts->continue_on_error)
852 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
853 log_info("\n");
854
855 /* Additional output if description is set */
856 if (ts->description)
857 log_info(";%s", ts->description);
858
859 log_info("\n");
860}
861
Jens Axboe3449ab82012-09-14 23:35:08 +0200862static void show_thread_status_terse_v3_v4(struct thread_stat *ts,
863 struct group_run_stats *rs, int ver)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200864{
Jens Axboe22708902007-03-06 17:05:32 +0100865 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200866 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
867 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200868 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200869 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200870
David Nellans562c2d22010-09-23 08:38:17 +0200871 /* General Info */
Jens Axboef3afa572012-09-17 13:34:16 +0200872 log_info("%d;%s;%s;%d;%d", ver, fio_version_string,
Jens Axboe5e726d02011-10-14 08:08:10 +0200873 ts->name, ts->groupid, ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200874 /* Log Read Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200875 show_ddir_status_terse(ts, rs, DDIR_READ);
David Nellans562c2d22010-09-23 08:38:17 +0200876 /* Log Write Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200877 show_ddir_status_terse(ts, rs, DDIR_WRITE);
878 /* Log Trim Status */
Jens Axboe3449ab82012-09-14 23:35:08 +0200879 if (ver == 4)
880 show_ddir_status_terse(ts, rs, DDIR_TRIM);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200881
David Nellans562c2d22010-09-23 08:38:17 +0200882 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100883 if (ts->total_run_time) {
884 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200885
Jens Axboe756867b2007-03-06 15:19:24 +0100886 usr_cpu = (double) ts->usr_time * 100 / runt;
887 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200888 } else {
889 usr_cpu = 0;
890 sys_cpu = 0;
891 }
892
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100893 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
894 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100895
David Nellans562c2d22010-09-23 08:38:17 +0200896 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200897 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200898 stat_calc_lat_u(ts, io_u_lat_u);
899 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100900
David Nellans562c2d22010-09-23 08:38:17 +0200901 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100902 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
903 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
904 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100905
David Nellans562c2d22010-09-23 08:38:17 +0200906 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200907 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
908 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200909 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200910 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
911 log_info(";%3.2f%%", io_u_lat_m[i]);
Jens Axboef2f788d2011-10-13 14:03:52 +0200912
913 /* disk util stats, if any */
Shaohua Licc372b12012-09-17 09:12:18 +0200914 show_disk_util(1, NULL);
Jens Axboef2f788d2011-10-13 14:03:52 +0200915
David Nellans562c2d22010-09-23 08:38:17 +0200916 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200917 if (ts->continue_on_error)
918 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe22708902007-03-06 17:05:32 +0100919
David Nellans562c2d22010-09-23 08:38:17 +0200920 /* Additional output if description is set */
Jens Axboe4b0f2252011-10-13 15:03:25 +0200921 if (strlen(ts->description))
Jens Axboe946e4272012-03-23 19:22:21 +0100922 log_info(";%s", ts->description);
923
924 log_info("\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100925}
926
Shaohua Licc372b12012-09-17 09:12:18 +0200927static struct json_object *show_thread_status_json(struct thread_stat *ts,
928 struct group_run_stats *rs)
929{
930 struct json_object *root, *tmp;
931 double io_u_dist[FIO_IO_U_MAP_NR];
932 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
933 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
934 double usr_cpu, sys_cpu;
935 int i;
936
937 root = json_create_object();
938 json_object_add_value_string(root, "jobname", ts->name);
939 json_object_add_value_int(root, "groupid", ts->groupid);
940 json_object_add_value_int(root, "error", ts->error);
941
942 add_ddir_status_json(ts, rs, DDIR_READ, root);
943 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
Jens Axboef3afa572012-09-17 13:34:16 +0200944 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
Shaohua Licc372b12012-09-17 09:12:18 +0200945
946 /* CPU Usage */
947 if (ts->total_run_time) {
948 double runt = (double) ts->total_run_time;
949
950 usr_cpu = (double) ts->usr_time * 100 / runt;
951 sys_cpu = (double) ts->sys_time * 100 / runt;
952 } else {
953 usr_cpu = 0;
954 sys_cpu = 0;
955 }
956 json_object_add_value_float(root, "usr_cpu", usr_cpu);
957 json_object_add_value_float(root, "sys_cpu", sys_cpu);
958 json_object_add_value_int(root, "ctx", ts->ctx);
959 json_object_add_value_int(root, "majf", ts->majf);
960 json_object_add_value_int(root, "minf", ts->minf);
961
962
963 /* Calc % distribution of IO depths, usecond, msecond latency */
964 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
965 stat_calc_lat_u(ts, io_u_lat_u);
966 stat_calc_lat_m(ts, io_u_lat_m);
967
968 tmp = json_create_object();
969 json_object_add_value_object(root, "iodepth_level", tmp);
970 /* Only show fixed 7 I/O depth levels*/
971 for (i = 0; i < 7; i++) {
972 char name[20];
973 if (i < 6)
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100974 snprintf(name, 20, "%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +0200975 else
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100976 snprintf(name, 20, ">=%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +0200977 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
978 }
979
980 tmp = json_create_object();
981 json_object_add_value_object(root, "latency_us", tmp);
982 /* Microsecond latency */
983 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
984 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
985 "250", "500", "750", "1000", };
986 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
987 }
988 /* Millisecond latency */
989 tmp = json_create_object();
990 json_object_add_value_object(root, "latency_ms", tmp);
991 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
992 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
993 "250", "500", "750", "1000", "2000",
994 ">=2000", };
995 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
996 }
997
998 /* Additional output if continue_on_error set - default off*/
999 if (ts->continue_on_error) {
1000 json_object_add_value_int(root, "total_err", ts->total_err_count);
1001 json_object_add_value_int(root, "total_err", ts->first_error);
1002 }
1003
1004 /* Additional output if description is set */
1005 if (strlen(ts->description))
1006 json_object_add_value_string(root, "desc", ts->description);
1007
1008 return root;
1009}
1010
Jens Axboe4d658652011-10-17 15:05:47 +02001011static void show_thread_status_terse(struct thread_stat *ts,
1012 struct group_run_stats *rs)
1013{
1014 if (terse_version == 2)
1015 show_thread_status_terse_v2(ts, rs);
Jens Axboe3449ab82012-09-14 23:35:08 +02001016 else if (terse_version == 3 || terse_version == 4)
1017 show_thread_status_terse_v3_v4(ts, rs, terse_version);
Jens Axboe4d658652011-10-17 15:05:47 +02001018 else
1019 log_err("fio: bad terse version!? %d\n", terse_version);
1020}
1021
Jens Axboe197574e2007-03-08 15:35:11 +01001022static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +01001023{
1024 double mean, S;
1025
Zheng Liue09231c2011-09-16 08:20:12 +02001026 if (src->samples == 0)
1027 return;
1028
Jens Axboe756867b2007-03-06 15:19:24 +01001029 dst->min_val = min(dst->min_val, src->min_val);
1030 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +01001031
1032 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001033 * Compute new mean and S after the merge
1034 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1035 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +01001036 */
1037 if (nr == 1) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001038 mean = src->mean.u.f;
1039 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +01001040 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001041 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001042
Jens Axboe802ad4a2011-10-05 09:51:58 +02001043 mean = ((src->mean.u.f * src->samples) +
1044 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001045 (dst->samples + src->samples);
1046
Jens Axboe802ad4a2011-10-05 09:51:58 +02001047 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001048 (dst->samples * src->samples) /
1049 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +01001050 }
1051
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001052 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +02001053 dst->mean.u.f = mean;
1054 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +01001055}
1056
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001057void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1058{
1059 int i;
1060
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001061 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001062 if (dst->max_run[i] < src->max_run[i])
1063 dst->max_run[i] = src->max_run[i];
1064 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1065 dst->min_run[i] = src->min_run[i];
1066 if (dst->max_bw[i] < src->max_bw[i])
1067 dst->max_bw[i] = src->max_bw[i];
1068 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1069 dst->min_bw[i] = src->min_bw[i];
1070
1071 dst->io_kb[i] += src->io_kb[i];
1072 dst->agg[i] += src->agg[i];
1073 }
1074
1075}
1076
Jens Axboe5b9babb2011-10-10 12:14:30 +02001077void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
1078{
1079 int l, k;
1080
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001081 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001082 if (!dst->unified_rw_rep) {
1083 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
1084 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
1085 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
1086 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
Jens Axboe5b9babb2011-10-10 12:14:30 +02001087
Jens Axboe771e58b2013-01-30 12:56:23 +01001088 dst->io_bytes[l] += src->io_bytes[l];
Jens Axboe5b9babb2011-10-10 12:14:30 +02001089
Jens Axboe771e58b2013-01-30 12:56:23 +01001090 if (dst->runtime[l] < src->runtime[l])
1091 dst->runtime[l] = src->runtime[l];
1092 } else {
1093 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], nr);
1094 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], nr);
1095 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], nr);
1096 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], nr);
1097
1098 dst->io_bytes[0] += src->io_bytes[l];
1099
1100 if (dst->runtime[0] < src->runtime[l])
1101 dst->runtime[0] = src->runtime[l];
1102 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001103 }
1104
1105 dst->usr_time += src->usr_time;
1106 dst->sys_time += src->sys_time;
1107 dst->ctx += src->ctx;
1108 dst->majf += src->majf;
1109 dst->minf += src->minf;
1110
1111 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1112 dst->io_u_map[k] += src->io_u_map[k];
1113 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1114 dst->io_u_submit[k] += src->io_u_submit[k];
1115 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1116 dst->io_u_complete[k] += src->io_u_complete[k];
1117 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1118 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1119 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1120 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1121
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001122 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001123 if (!dst->unified_rw_rep) {
1124 dst->total_io_u[k] += src->total_io_u[k];
1125 dst->short_io_u[k] += src->short_io_u[k];
1126 } else {
1127 dst->total_io_u[0] += src->total_io_u[k];
1128 dst->short_io_u[0] += src->short_io_u[k];
1129 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001130 }
1131
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001132 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe5b9babb2011-10-10 12:14:30 +02001133 int m;
Jens Axboe771e58b2013-01-30 12:56:23 +01001134
1135 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1136 if (!dst->unified_rw_rep)
1137 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1138 else
1139 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1140 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001141 }
1142
1143 dst->total_run_time += src->total_run_time;
1144 dst->total_submit += src->total_submit;
1145 dst->total_complete += src->total_complete;
1146}
1147
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001148void init_group_run_stat(struct group_run_stats *gs)
1149{
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001150 int i;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001151 memset(gs, 0, sizeof(*gs));
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001152
1153 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1154 gs->min_bw[i] = gs->min_run[i] = ~0UL;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001155}
1156
1157void init_thread_stat(struct thread_stat *ts)
1158{
1159 int j;
1160
1161 memset(ts, 0, sizeof(*ts));
1162
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001163 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001164 ts->lat_stat[j].min_val = -1UL;
1165 ts->clat_stat[j].min_val = -1UL;
1166 ts->slat_stat[j].min_val = -1UL;
1167 ts->bw_stat[j].min_val = -1UL;
1168 }
1169 ts->groupid = -1;
1170}
1171
Jens Axboe3c39a372006-06-06 20:56:12 +02001172void show_run_stats(void)
1173{
1174 struct group_run_stats *runstats, *rs;
1175 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +01001176 struct thread_stat *threadstats, *ts;
Jens Axboe5b9babb2011-10-10 12:14:30 +02001177 int i, j, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001178 int kb_base_warned = 0;
Steven Noonanad705bc2013-04-08 15:05:25 -07001179 int unit_base_warned = 0;
Shaohua Licc372b12012-09-17 09:12:18 +02001180 struct json_object *root = NULL;
1181 struct json_array *array = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +02001182
1183 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1184
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001185 for (i = 0; i < groupid + 1; i++)
1186 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +02001187
Jens Axboe756867b2007-03-06 15:19:24 +01001188 /*
1189 * find out how many threads stats we need. if group reporting isn't
1190 * enabled, it's one-per-td.
1191 */
1192 nr_ts = 0;
1193 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +02001194 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001195 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +01001196 nr_ts++;
1197 continue;
1198 }
1199 if (last_ts == td->groupid)
1200 continue;
1201
1202 last_ts = td->groupid;
1203 nr_ts++;
1204 }
1205
1206 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
1207
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001208 for (i = 0; i < nr_ts; i++)
1209 init_thread_stat(&threadstats[i]);
Jens Axboe756867b2007-03-06 15:19:24 +01001210
1211 j = 0;
1212 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +01001213 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +01001214 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001215 if (idx && (!td->o.group_reporting ||
1216 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +01001217 idx = 0;
1218 j++;
1219 }
1220
1221 last_ts = td->groupid;
1222
Jens Axboe756867b2007-03-06 15:19:24 +01001223 ts = &threadstats[j];
1224
Yu-ju Hong83349192011-08-13 00:53:44 +02001225 ts->clat_percentiles = td->o.clat_percentiles;
Vincent Kang Fu435d1952013-02-06 08:43:40 +01001226 ts->percentile_precision = td->o.percentile_precision;
Vincent Kang Fufd112d32013-02-02 09:28:55 +01001227 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001228
Jens Axboe197574e2007-03-08 15:35:11 +01001229 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +01001230 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +01001231
Jens Axboe7abd0e32007-03-12 15:24:43 +01001232 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001233 /*
1234 * These are per-group shared already
1235 */
Jens Axboef6bb5b82011-10-03 12:21:25 +02001236 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +02001237 if (td->o.description)
1238 strncpy(ts->description, td->o.description,
1239 FIO_JOBNAME_SIZE);
1240 else
1241 memset(ts->description, 0, FIO_JOBNAME_SIZE);
1242
Jens Axboe756867b2007-03-06 15:19:24 +01001243 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001244
1245 /*
1246 * first pid in group, not very useful...
1247 */
Jens Axboe756867b2007-03-06 15:19:24 +01001248 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001249
1250 ts->kb_base = td->o.kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -07001251 ts->unit_base = td->o.unit_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001252 ts->unified_rw_rep = td->o.unified_rw_rep;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001253 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1254 log_info("fio: kb_base differs for jobs in group, using"
1255 " %u as the base\n", ts->kb_base);
1256 kb_base_warned = 1;
Steven Noonanad705bc2013-04-08 15:05:25 -07001257 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1258 log_info("fio: unit_base differs for jobs in group, using"
1259 " %u as the base\n", ts->unit_base);
1260 unit_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001261 }
1262
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001263 ts->continue_on_error = td->o.continue_on_error;
1264 ts->total_err_count += td->total_err_count;
1265 ts->first_error = td->first_error;
1266 if (!ts->error) {
1267 if (!td->error && td->o.continue_on_error &&
1268 td->first_error) {
1269 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001270 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001271 } else if (td->error) {
1272 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001273 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001274 }
Jens Axboe756867b2007-03-06 15:19:24 +01001275 }
1276
Jens Axboe5b9babb2011-10-10 12:14:30 +02001277 sum_thread_stats(ts, &td->ts, idx);
Jens Axboe756867b2007-03-06 15:19:24 +01001278 }
1279
1280 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001281 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001282
Jens Axboe756867b2007-03-06 15:19:24 +01001283 ts = &threadstats[i];
1284 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001285 rs->kb_base = ts->kb_base;
Steven Noonanad705bc2013-04-08 15:05:25 -07001286 rs->unit_base = ts->unit_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001287 rs->unified_rw_rep += ts->unified_rw_rep;
Jens Axboe3c39a372006-06-06 20:56:12 +02001288
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001289 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001290 if (!ts->runtime[j])
1291 continue;
1292 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1293 rs->min_run[j] = ts->runtime[j];
1294 if (ts->runtime[j] > rs->max_run[j])
1295 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +02001296
Jens Axboe94370ac2007-03-08 15:28:10 +01001297 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +02001298 if (ts->runtime[j]) {
Jens Axboec857cfe2012-04-05 08:42:11 -06001299 unsigned long runt = ts->runtime[j];
1300 unsigned long long kb;
Jens Axboe8879fd12009-04-20 10:06:02 +02001301
Jens Axboec857cfe2012-04-05 08:42:11 -06001302 kb = ts->io_bytes[j] / rs->kb_base;
1303 bw = kb * 1000 / runt;
Jens Axboe8879fd12009-04-20 10:06:02 +02001304 }
Jens Axboe94370ac2007-03-08 15:28:10 +01001305 if (bw < rs->min_bw[j])
1306 rs->min_bw[j] = bw;
1307 if (bw > rs->max_bw[j])
1308 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001309
Jens Axboe90fef2d2009-07-17 22:33:32 +02001310 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +01001311 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001312 }
1313
1314 for (i = 0; i < groupid + 1; i++) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001315 int ddir;
1316
Jens Axboe3c39a372006-06-06 20:56:12 +02001317 rs = &runstats[i];
1318
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001319 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1320 if (rs->max_run[ddir])
1321 rs->agg[ddir] = (rs->io_kb[ddir] * 1000) /
1322 rs->max_run[ddir];
1323 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001324 }
1325
1326 /*
1327 * don't overwrite last signal output
1328 */
Jens Axboef3afa572012-09-17 13:34:16 +02001329 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001330 log_info("\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001331 else if (output_format == FIO_OUTPUT_JSON) {
Shaohua Licc372b12012-09-17 09:12:18 +02001332 root = json_create_object();
1333 json_object_add_value_string(root, "fio version", fio_version_string);
1334 array = json_create_array();
1335 json_object_add_value_array(root, "jobs", array);
1336 }
1337
Jens Axboe756867b2007-03-06 15:19:24 +01001338 for (i = 0; i < nr_ts; i++) {
1339 ts = &threadstats[i];
1340 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +02001341
Jens Axboea64e88d2011-10-03 14:20:01 +02001342 if (is_backend)
1343 fio_server_send_ts(ts, rs);
Jens Axboef3afa572012-09-17 13:34:16 +02001344 else if (output_format == FIO_OUTPUT_TERSE)
1345 show_thread_status_terse(ts, rs);
1346 else if (output_format == FIO_OUTPUT_JSON) {
1347 struct json_object *tmp = show_thread_status_json(ts, rs);
1348 json_array_add_value_object(array, tmp);
Shaohua Licc372b12012-09-17 09:12:18 +02001349 } else
Jens Axboe756867b2007-03-06 15:19:24 +01001350 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001351 }
Jens Axboef3afa572012-09-17 13:34:16 +02001352 if (output_format == FIO_OUTPUT_JSON) {
Shaohua Licc372b12012-09-17 09:12:18 +02001353 /* disk util stats, if any */
1354 show_disk_util(1, root);
1355
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001356 show_idle_prof_stats(FIO_OUTPUT_JSON, root);
1357
Shaohua Licc372b12012-09-17 09:12:18 +02001358 json_print_object(root);
1359 log_info("\n");
1360 json_free_object(root);
1361 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001362
Jens Axboe72c27ff2011-10-16 11:50:31 +02001363 for (i = 0; i < groupid + 1; i++) {
1364 rs = &runstats[i];
Jens Axboea64e88d2011-10-03 14:20:01 +02001365
Jens Axboe72c27ff2011-10-16 11:50:31 +02001366 rs->groupid = i;
Jens Axboed09a64a2011-10-13 11:38:56 +02001367 if (is_backend)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001368 fio_server_send_gs(rs);
Jens Axboef3afa572012-09-17 13:34:16 +02001369 else if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001370 show_group_stats(rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001371 }
Jens Axboeeecf2722006-10-20 14:00:36 +02001372
Jens Axboe72c27ff2011-10-16 11:50:31 +02001373 if (is_backend)
1374 fio_server_send_du();
Huadong Liu427899c2013-02-21 10:24:20 +01001375 else if (output_format == FIO_OUTPUT_NORMAL) {
Shaohua Licc372b12012-09-17 09:12:18 +02001376 show_disk_util(0, NULL);
Huadong Liu427899c2013-02-21 10:24:20 +01001377 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL);
1378 }
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001379
Jens Axboeeecf2722006-10-20 14:00:36 +02001380 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +01001381 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +02001382}
1383
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001384static void *__show_running_run_stats(void *arg)
1385{
1386 struct thread_data *td;
1387 unsigned long long *rt;
1388 struct timeval tv;
1389 int i;
1390
1391 rt = malloc(thread_number * sizeof(unsigned long long));
1392 fio_gettime(&tv, NULL);
1393
1394 for_each_td(td, i) {
1395 rt[i] = mtime_since(&td->start, &tv);
1396 if (td_read(td) && td->io_bytes[DDIR_READ])
1397 td->ts.runtime[DDIR_READ] += rt[i];
1398 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1399 td->ts.runtime[DDIR_WRITE] += rt[i];
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001400 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1401 td->ts.runtime[DDIR_TRIM] += rt[i];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001402
Jens Axboec97f1ad2013-03-28 15:08:49 -06001403 td->update_rusage = 1;
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001404 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1405 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1406 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001407 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
1408 }
1409
Jens Axboec97f1ad2013-03-28 15:08:49 -06001410 for_each_td(td, i) {
1411 if (td->rusage_sem) {
1412 td->update_rusage = 1;
1413 fio_mutex_down(td->rusage_sem);
1414 }
1415 td->update_rusage = 0;
1416 }
1417
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001418 show_run_stats();
1419
1420 for_each_td(td, i) {
1421 if (td_read(td) && td->io_bytes[DDIR_READ])
1422 td->ts.runtime[DDIR_READ] -= rt[i];
1423 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1424 td->ts.runtime[DDIR_WRITE] -= rt[i];
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001425 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1426 td->ts.runtime[DDIR_TRIM] -= rt[i];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001427 }
1428
1429 free(rt);
1430 return NULL;
1431}
1432
1433/*
1434 * Called from signal handler. It _should_ be safe to just run this inline
1435 * in the sig handler, but we should be disturbing the system less by just
1436 * creating a thread to do it.
1437 */
1438void show_running_run_stats(void)
1439{
1440 pthread_t thread;
1441
1442 pthread_create(&thread, NULL, __show_running_run_stats, NULL);
1443 pthread_detach(thread);
1444}
1445
Jens Axboe68704082007-01-10 19:56:37 +01001446static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +02001447{
Jens Axboe68704082007-01-10 19:56:37 +01001448 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +01001449 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001450
Jens Axboe68704082007-01-10 19:56:37 +01001451 if (data > is->max_val)
1452 is->max_val = data;
1453 if (data < is->min_val)
1454 is->min_val = data;
1455
Jens Axboe802ad4a2011-10-05 09:51:58 +02001456 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +02001457 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001458 is->mean.u.f += delta / (is->samples + 1.0);
1459 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +02001460 }
Jens Axboe68704082007-01-10 19:56:37 +01001461
Jens Axboe3c39a372006-06-06 20:56:12 +02001462 is->samples++;
1463}
1464
Jens Axboebb3884d2007-01-17 17:23:11 +11001465static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +02001466 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -07001467 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001468{
Jens Axboe306ddc92009-05-18 13:08:12 +02001469 const int nr_samples = iolog->nr_samples;
1470
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001471 if (!iolog->nr_samples)
1472 iolog->avg_last = t;
1473
Jens Axboe3c39a372006-06-06 20:56:12 +02001474 if (iolog->nr_samples == iolog->max_samples) {
1475 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
1476
1477 iolog->log = realloc(iolog->log, new_size);
1478 iolog->max_samples <<= 1;
1479 }
1480
Jens Axboe306ddc92009-05-18 13:08:12 +02001481 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -07001482 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +02001483 iolog->log[nr_samples].ddir = ddir;
1484 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +02001485 iolog->nr_samples++;
1486}
1487
Jens Axboe7fb28d32011-12-01 15:17:24 +01001488static inline void reset_io_stat(struct io_stat *ios)
1489{
1490 ios->max_val = ios->min_val = ios->samples = 0;
1491 ios->mean.u.f = ios->S.u.f = 0;
1492}
1493
Jens Axboebb3884d2007-01-17 17:23:11 +11001494static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +02001495 unsigned long val, enum fio_ddir ddir,
1496 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001497{
Jens Axboe7fb28d32011-12-01 15:17:24 +01001498 unsigned long elapsed, this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001499
Jens Axboeff58fce2010-08-25 12:02:08 +02001500 if (!ddir_rw(ddir))
1501 return;
1502
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001503 elapsed = mtime_since_now(&td->epoch);
1504
1505 /*
1506 * If no time averaging, just add the log sample.
1507 */
1508 if (!iolog->avg_msec) {
1509 __add_log_sample(iolog, val, ddir, bs, elapsed);
1510 return;
1511 }
1512
1513 /*
1514 * Add the sample. If the time period has passed, then
1515 * add that entry to the log and clear.
1516 */
1517 add_stat_sample(&iolog->avg_window[ddir], val);
1518
Jens Axboe7fb28d32011-12-01 15:17:24 +01001519 /*
1520 * If period hasn't passed, adding the above sample is all we
1521 * need to do.
1522 */
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001523 this_window = elapsed - iolog->avg_last;
1524 if (this_window < iolog->avg_msec)
1525 return;
1526
Jens Axboe7fb28d32011-12-01 15:17:24 +01001527 /*
1528 * Note an entry in the log. Use the mean from the logged samples,
1529 * making sure to properly round up. Only write a log entry if we
1530 * had actual samples done.
1531 */
1532 if (iolog->avg_window[DDIR_READ].samples) {
1533 unsigned long mr;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001534
Jens Axboe7fb28d32011-12-01 15:17:24 +01001535 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001536 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed);
Jens Axboe7fb28d32011-12-01 15:17:24 +01001537 }
1538 if (iolog->avg_window[DDIR_WRITE].samples) {
1539 unsigned long mw;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001540
Jens Axboe7fb28d32011-12-01 15:17:24 +01001541 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
1542 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed);
1543 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001544 if (iolog->avg_window[DDIR_TRIM].samples) {
1545 unsigned long mw;
1546
1547 mw = iolog->avg_window[DDIR_TRIM].mean.u.f + 0.50;
1548 __add_log_sample(iolog, mw, DDIR_TRIM, 0, elapsed);
1549 }
1550
Jens Axboe7fb28d32011-12-01 15:17:24 +01001551
1552 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1553 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001554 reset_io_stat(&iolog->avg_window[DDIR_TRIM]);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001555 iolog->avg_last = elapsed;
Jens Axboebb3884d2007-01-17 17:23:11 +11001556}
1557
Jens Axboe306ddc92009-05-18 13:08:12 +02001558void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001559{
Jens Axboeff58fce2010-08-25 12:02:08 +02001560 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +11001561
Jens Axboeff58fce2010-08-25 12:02:08 +02001562 if (!ddir_rw(ddir))
1563 return;
1564
1565 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +02001566 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +11001567}
1568
Yu-ju Hong83349192011-08-13 00:53:44 +02001569static void add_clat_percentile_sample(struct thread_stat *ts,
1570 unsigned long usec, enum fio_ddir ddir)
1571{
1572 unsigned int idx = plat_val_to_idx(usec);
1573 assert(idx < FIO_IO_U_PLAT_NR);
1574
1575 ts->io_u_plat[ddir][idx]++;
1576}
1577
Jens Axboe1e97cce2006-12-05 11:44:16 +01001578void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001579 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001580{
Jens Axboe756867b2007-03-06 15:19:24 +01001581 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001582
Jens Axboeff58fce2010-08-25 12:02:08 +02001583 if (!ddir_rw(ddir))
1584 return;
1585
Jens Axboed85f5112007-06-18 09:41:23 +02001586 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001587
Jens Axboe7b9f7332011-10-03 10:06:44 +02001588 if (td->clat_log)
1589 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +02001590
1591 if (ts->clat_percentiles)
1592 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +02001593}
1594
Jens Axboe1e97cce2006-12-05 11:44:16 +01001595void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001596 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001597{
Jens Axboe756867b2007-03-06 15:19:24 +01001598 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001599
Jens Axboeff58fce2010-08-25 12:02:08 +02001600 if (!ddir_rw(ddir))
1601 return;
1602
Jens Axboed85f5112007-06-18 09:41:23 +02001603 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001604
Jens Axboe7b9f7332011-10-03 10:06:44 +02001605 if (td->slat_log)
1606 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001607}
1608
Jens Axboe02af0982010-06-24 09:59:34 +02001609void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
1610 unsigned long usec, unsigned int bs)
1611{
1612 struct thread_stat *ts = &td->ts;
1613
Jens Axboeff58fce2010-08-25 12:02:08 +02001614 if (!ddir_rw(ddir))
1615 return;
1616
Jens Axboe02af0982010-06-24 09:59:34 +02001617 add_stat_sample(&ts->lat_stat[ddir], usec);
1618
Jens Axboe7b9f7332011-10-03 10:06:44 +02001619 if (td->lat_log)
1620 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001621}
1622
Jens Axboe306ddc92009-05-18 13:08:12 +02001623void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001624 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001625{
Jens Axboe756867b2007-03-06 15:19:24 +01001626 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001627 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001628
Jens Axboeff58fce2010-08-25 12:02:08 +02001629 if (!ddir_rw(ddir))
1630 return;
1631
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001632 spent = mtime_since(&td->bw_sample_time, t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001633 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001634 return;
Jens Axboe9602d8d2012-02-20 20:19:28 +01001635
1636 /*
Josh Carter5daa4eb2012-02-20 10:12:22 +01001637 * Compute both read and write rates for the interval.
1638 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001639 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
Josh Carter5daa4eb2012-02-20 10:12:22 +01001640 uint64_t delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001641
Josh Carter5daa4eb2012-02-20 10:12:22 +01001642 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
1643 if (!delta)
1644 continue; /* No entries for interval */
Jens Axboe3c39a372006-06-06 20:56:12 +02001645
Josh Carter5daa4eb2012-02-20 10:12:22 +01001646 rate = delta * 1000 / spent / 1024;
1647 add_stat_sample(&ts->bw_stat[ddir], rate);
1648
1649 if (td->bw_log)
1650 add_log_sample(td, td->bw_log, rate, ddir, bs);
1651
1652 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
1653 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001654
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001655 fio_gettime(&td->bw_sample_time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +02001656}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001657
1658void add_iops_sample(struct thread_data *td, enum fio_ddir ddir,
1659 struct timeval *t)
1660{
1661 struct thread_stat *ts = &td->ts;
1662 unsigned long spent, iops;
1663
1664 if (!ddir_rw(ddir))
1665 return;
1666
1667 spent = mtime_since(&td->iops_sample_time, t);
1668 if (spent < td->o.iops_avg_time)
1669 return;
1670
Jens Axboe9602d8d2012-02-20 20:19:28 +01001671 /*
1672 * Compute both read and write rates for the interval.
1673 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001674 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
Jens Axboe9602d8d2012-02-20 20:19:28 +01001675 uint64_t delta;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001676
Jens Axboe9602d8d2012-02-20 20:19:28 +01001677 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
1678 if (!delta)
1679 continue; /* No entries for interval */
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001680
Jens Axboe9602d8d2012-02-20 20:19:28 +01001681 iops = (delta * 1000) / spent;
1682 add_stat_sample(&ts->iops_stat[ddir], iops);
1683
1684 if (td->iops_log)
1685 add_log_sample(td, td->iops_log, iops, ddir, 0);
1686
Jens Axboe421f4a82012-02-28 08:20:26 +01001687 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
Jens Axboe9602d8d2012-02-20 20:19:28 +01001688 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001689
1690 fio_gettime(&td->iops_sample_time, NULL);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001691}