blob: 8bcd566e0b93c6b162b3ed0020f3ecaead4e18ea [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,
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100185 fio_fp64_t *plist, uint64_t precision)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200186{
187 unsigned int len, j = 0, minv, maxv;
188 unsigned int *ovals;
189 int is_last, scale_down;
Jens Axboe619adf92013-02-06 08:46:55 +0100190 char buf[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 Axboe619adf92013-02-06 08:46:55 +0100208 snprintf(buf, sizeof(buf), "%%1.%luf", precision);
209
Jens Axboe4f6f8292011-10-13 09:28:21 +0200210 for (j = 0; j < len; j++) {
Jens Axboe619adf92013-02-06 08:46:55 +0100211 char fbuf[16], *ptr = fbuf;
Jens Axboe4f6f8292011-10-13 09:28:21 +0200212
213 /* for formatting */
214 if (j != 0 && (j % 4) == 0)
215 log_info(" |");
216
217 /* end of the list */
218 is_last = (j == len - 1);
219
220 if (plist[j].u.f < 10.0)
Jens Axboe619adf92013-02-06 08:46:55 +0100221 ptr += sprintf(fbuf, " ");
222
223 snprintf(ptr, sizeof(fbuf), buf, plist[j].u.f);
Jens Axboe4f6f8292011-10-13 09:28:21 +0200224
225 if (scale_down)
226 ovals[j] = (ovals[j] + 999) / 1000;
227
228 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
229
230 if (is_last)
231 break;
232
233 if (j % 4 == 3) /* for formatting */
234 log_info("\n");
235 }
236
Jens Axboe1db92cb2011-10-13 13:43:36 +0200237out:
Jens Axboe4f6f8292011-10-13 09:28:21 +0200238 if (ovals)
239 free(ovals);
Yu-ju Hong83349192011-08-13 00:53:44 +0200240}
241
Jens Axboe3c39a372006-06-06 20:56:12 +0200242static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
243 double *mean, double *dev)
244{
Jens Axboe68704082007-01-10 19:56:37 +0100245 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200246
247 if (is->samples == 0)
248 return 0;
249
250 *min = is->min_val;
251 *max = is->max_val;
252
253 n = (double) is->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200254 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200255
Jens Axboe68704082007-01-10 19:56:37 +0100256 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200257 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100258 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200259 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100260
Jens Axboe3c39a372006-06-06 20:56:12 +0200261 return 1;
262}
263
Jens Axboea64e88d2011-10-03 14:20:01 +0200264void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200265{
Jens Axboedbe11252007-02-11 00:19:51 +0100266 char *p1, *p2, *p3, *p4;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200267 const char *ddir_str[] = { " READ", " WRITE" , " TRIM"};
Jens Axboedbe11252007-02-11 00:19:51 +0100268 int i;
269
Jens Axboe7e1773b2011-10-14 12:47:56 +0200270 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200271
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200272 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200273 const int i2p = is_power_of_2(rs->kb_base);
274
Jens Axboedbe11252007-02-11 00:19:51 +0100275 if (!rs->max_run[i])
276 continue;
277
Jens Axboe90fef2d2009-07-17 22:33:32 +0200278 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p);
279 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p);
280 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p);
281 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p);
Jens Axboedbe11252007-02-11 00:19:51 +0100282
Jens Axboeb22989b2009-07-17 22:29:23 +0200283 log_info("%s: io=%sB, aggrb=%sB/s, minb=%sB/s, maxb=%sB/s,"
Jens Axboe771e58b2013-01-30 12:56:23 +0100284 " mint=%llumsec, maxt=%llumsec\n",
285 rs->unified_rw_rep ? " MIXED" : ddir_str[i],
286 p1, p2, p3, p4, rs->min_run[i], rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100287
288 free(p1);
289 free(p2);
290 free(p3);
291 free(p4);
292 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200293}
294
Jens Axboeb3605062007-03-12 14:19:47 +0100295#define ts_total_io_u(ts) \
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200296 ((ts)->total_io_u[DDIR_READ] + (ts)->total_io_u[DDIR_WRITE] +\
297 (ts)->total_io_u[DDIR_TRIM])
Jens Axboeb3605062007-03-12 14:19:47 +0100298
Jens Axboe838bc702008-05-22 13:08:23 +0200299static void stat_calc_dist(unsigned int *map, unsigned long total,
300 double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100301{
302 int i;
303
304 /*
305 * Do depth distribution calculations
306 */
307 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200308 if (total) {
309 io_u_dist[i] = (double) map[i] / (double) total;
310 io_u_dist[i] *= 100.0;
311 if (io_u_dist[i] < 0.1 && map[i])
312 io_u_dist[i] = 0.1;
313 } else
314 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100315 }
316}
317
Jens Axboe04a0fea2007-06-19 12:48:41 +0200318static void stat_calc_lat(struct thread_stat *ts, double *dst,
319 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100320{
Jens Axboe838bc702008-05-22 13:08:23 +0200321 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100322 int i;
323
324 /*
325 * Do latency distribution calculations
326 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200327 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200328 if (total) {
329 dst[i] = (double) src[i] / (double) total;
330 dst[i] *= 100.0;
331 if (dst[i] < 0.01 && src[i])
332 dst[i] = 0.01;
333 } else
334 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100335 }
336}
337
Jens Axboe04a0fea2007-06-19 12:48:41 +0200338static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
339{
340 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
341}
342
343static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
344{
345 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
346}
347
Jens Axboeea2accc2007-06-19 09:48:44 +0200348static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
349 double *dev)
350{
351 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
352 *min /= 1000;
353 *max /= 1000;
354 *mean /= 1000.0;
355 *dev /= 1000.0;
356 return 0;
357 }
358
359 return 1;
360}
361
Jens Axboe756867b2007-03-06 15:19:24 +0100362static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200363 int ddir)
364{
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200365 const char *ddir_str[] = { "read ", "write", "trim" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200366 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100367 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200368 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100369 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200370 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200371
Jens Axboeff58fce2010-08-25 12:02:08 +0200372 assert(ddir_rw(ddir));
373
Jens Axboe756867b2007-03-06 15:19:24 +0100374 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200375 return;
376
Jens Axboe90fef2d2009-07-17 22:33:32 +0200377 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200378 runt = ts->runtime[ddir];
379
380 bw = (1000 * ts->io_bytes[ddir]) / runt;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200381 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
382 bw_p = num2str(bw, 6, 1, i2p);
Jens Axboe8879fd12009-04-20 10:06:02 +0200383
Bruce Cran0aacc502011-07-09 08:19:53 +0200384 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100385 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100386
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100387 log_info(" %s: io=%sB, bw=%sB/s, iops=%s, runt=%6llumsec\n",
Jens Axboe771e58b2013-01-30 12:56:23 +0100388 rs->unified_rw_rep ? "mixed" : ddir_str[ddir],
389 io_p, bw_p, iops_p, ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100390
391 free(io_p);
392 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100393 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200394
Jens Axboed85f5112007-06-18 09:41:23 +0200395 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
396 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200397 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200398
Jens Axboeea2accc2007-06-19 09:48:44 +0200399 if (!usec_to_msec(&min, &max, &mean, &dev))
Jens Axboed85f5112007-06-18 09:41:23 +0200400 base = "(msec)";
Jens Axboeea2accc2007-06-19 09:48:44 +0200401
Jens Axboed9309cb2007-08-16 13:07:46 +0200402 minp = num2str(min, 6, 1, 0);
403 maxp = num2str(max, 6, 1, 0);
404
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100405 log_info(" slat %s: min=%s, max=%s, avg=%5.02f,"
406 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200407
408 free(minp);
409 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200410 }
411 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
412 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200413 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200414
Jens Axboeea2accc2007-06-19 09:48:44 +0200415 if (!usec_to_msec(&min, &max, &mean, &dev))
416 base = "(msec)";
417
Jens Axboed9309cb2007-08-16 13:07:46 +0200418 minp = num2str(min, 6, 1, 0);
419 maxp = num2str(max, 6, 1, 0);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100420
421 log_info(" clat %s: min=%s, max=%s, avg=%5.02f,"
422 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200423
424 free(minp);
425 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200426 }
Jens Axboe02af0982010-06-24 09:59:34 +0200427 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
428 const char *base = "(usec)";
429 char *minp, *maxp;
430
431 if (!usec_to_msec(&min, &max, &mean, &dev))
432 base = "(msec)";
433
434 minp = num2str(min, 6, 1, 0);
435 maxp = num2str(max, 6, 1, 0);
436
437 log_info(" lat %s: min=%s, max=%s, avg=%5.02f,"
438 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
439
440 free(minp);
441 free(maxp);
442 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200443 if (ts->clat_percentiles) {
444 show_clat_percentiles(ts->io_u_plat[ddir],
445 ts->clat_stat[ddir].samples,
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100446 ts->percentile_list,
447 ts->percentile_precision);
Yu-ju Hong83349192011-08-13 00:53:44 +0200448 }
Jens Axboe079ad092007-02-20 13:58:20 +0100449 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100450 double p_of_agg = 100.0;
Jens Axboeb7017e32011-10-14 09:30:01 +0200451 const char *bw_str = "KB";
Jens Axboe3c39a372006-06-06 20:56:12 +0200452
Jens Axboe2f2c6922012-02-07 16:42:43 +0100453 if (rs->agg[ddir]) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100454 p_of_agg = mean * 100 / (double) rs->agg[ddir];
455 if (p_of_agg > 100.0)
456 p_of_agg = 100.0;
457 }
Jens Axboeb7017e32011-10-14 09:30:01 +0200458
459 if (mean > 999999.9) {
460 min /= 1000.0;
461 max /= 1000.0;
462 mean /= 1000.0;
463 dev /= 1000.0;
464 bw_str = "MB";
465 }
466
Jens Axboe7e1773b2011-10-14 12:47:56 +0200467 log_info(" bw (%s/s) : min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboeb7017e32011-10-14 09:30:01 +0200468 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
469 p_of_agg, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200470 }
471}
472
Jens Axboe7e1773b2011-10-14 12:47:56 +0200473static int show_lat(double *io_u_lat, int nr, const char **ranges,
474 const char *msg)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200475{
Jens Axboe7e1773b2011-10-14 12:47:56 +0200476 int new_line = 1, i, line = 0, shown = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200477
478 for (i = 0; i < nr; i++) {
479 if (io_u_lat[i] <= 0.0)
480 continue;
Jens Axboe7e1773b2011-10-14 12:47:56 +0200481 shown = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200482 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200483 if (line)
484 log_info("\n");
Jens Axboe7e1773b2011-10-14 12:47:56 +0200485 log_info(" lat (%s) : ", msg);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200486 new_line = 0;
487 line = 0;
488 }
489 if (line)
490 log_info(", ");
491 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
492 line++;
493 if (line == 5)
494 new_line = 1;
495 }
Jens Axboe7e1773b2011-10-14 12:47:56 +0200496
497 if (shown)
498 log_info("\n");
499
500 return shown;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200501}
502
503static void show_lat_u(double *io_u_lat_u)
504{
505 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
506 "250=", "500=", "750=", "1000=", };
507
508 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
509}
510
511static void show_lat_m(double *io_u_lat_m)
512{
513 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
514 "250=", "500=", "750=", "1000=", "2000=",
515 ">=2000=", };
516
517 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
518}
519
520static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
521{
522 show_lat_u(io_u_lat_u);
523 show_lat_m(io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200524}
525
Jens Axboea64e88d2011-10-03 14:20:01 +0200526void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200527{
528 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100529 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100530 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200531 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
532 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe57a64322012-06-14 15:11:15 +0200533 time_t time_p;
534 char time_buf[64];
Jens Axboe3c39a372006-06-06 20:56:12 +0200535
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200536 if (!(ts->io_bytes[DDIR_READ] + ts->io_bytes[DDIR_WRITE] +
537 ts->io_bytes[DDIR_TRIM]) && !(ts->total_io_u[DDIR_READ] +
538 ts->total_io_u[DDIR_WRITE] + ts->total_io_u[DDIR_TRIM]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200539 return;
540
Jens Axboe57a64322012-06-14 15:11:15 +0200541 time(&time_p);
Saurabh De45054cb2012-10-09 14:46:24 -0600542 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
Jens Axboe57a64322012-06-14 15:11:15 +0200543
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100544 if (!ts->error) {
Jens Axboe57a64322012-06-14 15:11:15 +0200545 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100546 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200547 ts->error, (int) ts->pid, time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100548 } else {
Jens Axboe57a64322012-06-14 15:11:15 +0200549 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100550 ts->name, ts->groupid, ts->members,
Jens Axboe57a64322012-06-14 15:11:15 +0200551 ts->error, ts->verror, (int) ts->pid,
552 time_buf);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100553 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200554
Jens Axboe259e47d2011-10-13 21:05:59 +0200555 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100556 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100557
Jens Axboe756867b2007-03-06 15:19:24 +0100558 if (ts->io_bytes[DDIR_READ])
559 show_ddir_status(rs, ts, DDIR_READ);
560 if (ts->io_bytes[DDIR_WRITE])
561 show_ddir_status(rs, ts, DDIR_WRITE);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200562 if (ts->io_bytes[DDIR_TRIM])
563 show_ddir_status(rs, ts, DDIR_TRIM);
Jens Axboe3c39a372006-06-06 20:56:12 +0200564
Jens Axboe7e1773b2011-10-14 12:47:56 +0200565 stat_calc_lat_u(ts, io_u_lat_u);
566 stat_calc_lat_m(ts, io_u_lat_m);
567 show_latencies(io_u_lat_u, io_u_lat_m);
568
Jens Axboe756867b2007-03-06 15:19:24 +0100569 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100570 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100571 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200572
Jens Axboe756867b2007-03-06 15:19:24 +0100573 usr_cpu = (double) ts->usr_time * 100 / runt;
574 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200575 } else {
576 usr_cpu = 0;
577 sys_cpu = 0;
578 }
579
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100580 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
581 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100582
Jens Axboe838bc702008-05-22 13:08:23 +0200583 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100584 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
585 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
586 io_u_dist[1], io_u_dist[2],
587 io_u_dist[3], io_u_dist[4],
588 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200589
590 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
591 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
592 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
593 io_u_dist[1], io_u_dist[2],
594 io_u_dist[3], io_u_dist[4],
595 io_u_dist[5], io_u_dist[6]);
596 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
597 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
598 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
599 io_u_dist[1], io_u_dist[2],
600 io_u_dist[3], io_u_dist[4],
601 io_u_dist[5], io_u_dist[6]);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200602 log_info(" issued : total=r=%lu/w=%lu/d=%lu,"
603 " short=r=%lu/w=%lu/d=%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100604 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200605 ts->total_io_u[2],
606 ts->short_io_u[0], ts->short_io_u[1],
607 ts->short_io_u[2]);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200608 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200609 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
610 ts->total_err_count,
611 ts->first_error,
612 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200613 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200614}
615
Jens Axboe756867b2007-03-06 15:19:24 +0100616static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200617 struct group_run_stats *rs, int ddir)
618{
619 unsigned long min, max;
Jens Axboe312b4af2011-10-13 13:11:42 +0200620 unsigned long long bw, iops;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200621 unsigned int *ovals = NULL;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200622 double mean, dev;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200623 unsigned int len, minv, maxv;
624 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200625
Jens Axboeff58fce2010-08-25 12:02:08 +0200626 assert(ddir_rw(ddir));
627
Jens Axboe312b4af2011-10-13 13:11:42 +0200628 iops = bw = 0;
629 if (ts->runtime[ddir]) {
630 uint64_t runt = ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200631
Jens Axboe033bbb52012-05-07 09:46:40 +0200632 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
Jens Axboe312b4af2011-10-13 13:11:42 +0200633 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
634 }
635
636 log_info(";%llu;%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw, iops,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100637 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200638
Jens Axboe079ad092007-02-20 13:58:20 +0100639 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100640 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200641 else
Jens Axboe6d861442007-03-15 09:22:23 +0100642 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200643
Jens Axboe079ad092007-02-20 13:58:20 +0100644 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100645 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200646 else
Jens Axboe6d861442007-03-15 09:22:23 +0100647 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200648
Jens Axboe1db92cb2011-10-13 13:43:36 +0200649 if (ts->clat_percentiles) {
650 len = calc_clat_percentiles(ts->io_u_plat[ddir],
651 ts->clat_stat[ddir].samples,
652 ts->percentile_list, &ovals, &maxv,
653 &minv);
654 } else
655 len = 0;
656
657 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
658 if (i >= len) {
659 log_info(";0%%=0");
660 continue;
661 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100662 log_info(";%f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200663 }
Keplar kramer2341a372011-10-19 21:31:27 +0200664
665 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
666 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
667 else
668 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
669
Jens Axboe1db92cb2011-10-13 13:43:36 +0200670 if (ovals)
671 free(ovals);
672
Jens Axboe079ad092007-02-20 13:58:20 +0100673 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100674 double p_of_agg = 100.0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200675
Jens Axboe19d3e962012-02-07 12:27:28 +0100676 if (rs->agg[ddir]) {
677 p_of_agg = mean * 100 / (double) rs->agg[ddir];
678 if (p_of_agg > 100.0)
679 p_of_agg = 100.0;
680 }
681
Jens Axboe6d861442007-03-15 09:22:23 +0100682 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200683 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100684 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200685}
686
Shaohua Licc372b12012-09-17 09:12:18 +0200687static void add_ddir_status_json(struct thread_stat *ts,
688 struct group_run_stats *rs, int ddir, struct json_object *parent)
689{
690 unsigned long min, max;
691 unsigned long long bw, iops;
692 unsigned int *ovals = NULL;
693 double mean, dev;
694 unsigned int len, minv, maxv;
695 int i;
696 const char *ddirname[] = {"read", "write", "trim"};
697 struct json_object *dir_object, *tmp_object, *percentile_object;
698 char buf[120];
699 double p_of_agg = 100.0;
700
701 assert(ddir_rw(ddir));
702
Jens Axboe771e58b2013-01-30 12:56:23 +0100703 if (ts->unified_rw_rep && ddir != DDIR_READ)
704 return;
705
Shaohua Licc372b12012-09-17 09:12:18 +0200706 dir_object = json_create_object();
Jens Axboe771e58b2013-01-30 12:56:23 +0100707 json_object_add_value_object(parent,
708 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
Shaohua Licc372b12012-09-17 09:12:18 +0200709
710 iops = bw = 0;
711 if (ts->runtime[ddir]) {
712 uint64_t runt = ts->runtime[ddir];
713
714 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024;
715 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
716 }
717
718 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir] >> 10);
719 json_object_add_value_int(dir_object, "bw", bw);
720 json_object_add_value_int(dir_object, "iops", iops);
721 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
722
723 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
724 min = max = 0;
725 mean = dev = 0.0;
726 }
727 tmp_object = json_create_object();
728 json_object_add_value_object(dir_object, "slat", tmp_object);
729 json_object_add_value_int(tmp_object, "min", min);
730 json_object_add_value_int(tmp_object, "max", max);
731 json_object_add_value_float(tmp_object, "mean", mean);
732 json_object_add_value_float(tmp_object, "stddev", dev);
733
734 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
735 min = max = 0;
736 mean = dev = 0.0;
737 }
738 tmp_object = json_create_object();
739 json_object_add_value_object(dir_object, "clat", tmp_object);
740 json_object_add_value_int(tmp_object, "min", min);
741 json_object_add_value_int(tmp_object, "max", max);
742 json_object_add_value_float(tmp_object, "mean", mean);
743 json_object_add_value_float(tmp_object, "stddev", dev);
744
745 if (ts->clat_percentiles) {
746 len = calc_clat_percentiles(ts->io_u_plat[ddir],
747 ts->clat_stat[ddir].samples,
748 ts->percentile_list, &ovals, &maxv,
749 &minv);
750 } else
751 len = 0;
752
753 percentile_object = json_create_object();
754 json_object_add_value_object(tmp_object, "percentile", percentile_object);
755 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
756 if (i >= len) {
757 json_object_add_value_int(percentile_object, "0.00", 0);
758 continue;
759 }
Vincent Kang Fu435d1952013-02-06 08:43:40 +0100760 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
Shaohua Licc372b12012-09-17 09:12:18 +0200761 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
762 }
763
764 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
765 min = max = 0;
766 mean = dev = 0.0;
767 }
768 tmp_object = json_create_object();
769 json_object_add_value_object(dir_object, "lat", tmp_object);
770 json_object_add_value_int(tmp_object, "min", min);
771 json_object_add_value_int(tmp_object, "max", max);
772 json_object_add_value_float(tmp_object, "mean", mean);
773 json_object_add_value_float(tmp_object, "stddev", dev);
774 if (ovals)
775 free(ovals);
776
777 if (!calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
778 if (rs->agg[ddir]) {
779 p_of_agg = mean * 100 / (double) rs->agg[ddir];
780 if (p_of_agg > 100.0)
781 p_of_agg = 100.0;
782 }
783 } else {
784 min = max = 0;
785 p_of_agg = mean = dev = 0.0;
786 }
787 json_object_add_value_int(dir_object, "bw_min", min);
788 json_object_add_value_int(dir_object, "bw_max", max);
789 json_object_add_value_float(dir_object, "bw_agg", mean);
790 json_object_add_value_float(dir_object, "bw_mean", mean);
791 json_object_add_value_float(dir_object, "bw_dev", dev);
792}
793
Jens Axboe4d658652011-10-17 15:05:47 +0200794static void show_thread_status_terse_v2(struct thread_stat *ts,
795 struct group_run_stats *rs)
796{
797 double io_u_dist[FIO_IO_U_MAP_NR];
798 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
799 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
800 double usr_cpu, sys_cpu;
801 int i;
802
803 /* General Info */
804 log_info("2;%s;%d;%d", ts->name, ts->groupid, ts->error);
805 /* Log Read Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200806 show_ddir_status_terse(ts, rs, DDIR_READ);
Jens Axboe4d658652011-10-17 15:05:47 +0200807 /* Log Write Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200808 show_ddir_status_terse(ts, rs, DDIR_WRITE);
809 /* Log Trim Status */
810 show_ddir_status_terse(ts, rs, DDIR_TRIM);
Jens Axboe4d658652011-10-17 15:05:47 +0200811
812 /* CPU Usage */
813 if (ts->total_run_time) {
814 double runt = (double) ts->total_run_time;
815
816 usr_cpu = (double) ts->usr_time * 100 / runt;
817 sys_cpu = (double) ts->sys_time * 100 / runt;
818 } else {
819 usr_cpu = 0;
820 sys_cpu = 0;
821 }
822
823 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
824 ts->minf);
825
826 /* Calc % distribution of IO depths, usecond, msecond latency */
827 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
828 stat_calc_lat_u(ts, io_u_lat_u);
829 stat_calc_lat_m(ts, io_u_lat_m);
830
831 /* Only show fixed 7 I/O depth levels*/
832 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
833 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
834 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
835
836 /* Microsecond latency */
837 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
838 log_info(";%3.2f%%", io_u_lat_u[i]);
839 /* Millisecond latency */
840 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
841 log_info(";%3.2f%%", io_u_lat_m[i]);
842 /* Additional output if continue_on_error set - default off*/
843 if (ts->continue_on_error)
844 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
845 log_info("\n");
846
847 /* Additional output if description is set */
848 if (ts->description)
849 log_info(";%s", ts->description);
850
851 log_info("\n");
852}
853
Jens Axboe3449ab82012-09-14 23:35:08 +0200854static void show_thread_status_terse_v3_v4(struct thread_stat *ts,
855 struct group_run_stats *rs, int ver)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200856{
Jens Axboe22708902007-03-06 17:05:32 +0100857 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200858 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
859 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200860 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200861 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200862
David Nellans562c2d22010-09-23 08:38:17 +0200863 /* General Info */
Jens Axboef3afa572012-09-17 13:34:16 +0200864 log_info("%d;%s;%s;%d;%d", ver, fio_version_string,
Jens Axboe5e726d02011-10-14 08:08:10 +0200865 ts->name, ts->groupid, ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200866 /* Log Read Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200867 show_ddir_status_terse(ts, rs, DDIR_READ);
David Nellans562c2d22010-09-23 08:38:17 +0200868 /* Log Write Status */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200869 show_ddir_status_terse(ts, rs, DDIR_WRITE);
870 /* Log Trim Status */
Jens Axboe3449ab82012-09-14 23:35:08 +0200871 if (ver == 4)
872 show_ddir_status_terse(ts, rs, DDIR_TRIM);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200873
David Nellans562c2d22010-09-23 08:38:17 +0200874 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100875 if (ts->total_run_time) {
876 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200877
Jens Axboe756867b2007-03-06 15:19:24 +0100878 usr_cpu = (double) ts->usr_time * 100 / runt;
879 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200880 } else {
881 usr_cpu = 0;
882 sys_cpu = 0;
883 }
884
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100885 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
886 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100887
David Nellans562c2d22010-09-23 08:38:17 +0200888 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200889 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200890 stat_calc_lat_u(ts, io_u_lat_u);
891 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100892
David Nellans562c2d22010-09-23 08:38:17 +0200893 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100894 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
895 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
896 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100897
David Nellans562c2d22010-09-23 08:38:17 +0200898 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200899 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
900 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200901 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200902 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
903 log_info(";%3.2f%%", io_u_lat_m[i]);
Jens Axboef2f788d2011-10-13 14:03:52 +0200904
905 /* disk util stats, if any */
Shaohua Licc372b12012-09-17 09:12:18 +0200906 show_disk_util(1, NULL);
Jens Axboef2f788d2011-10-13 14:03:52 +0200907
David Nellans562c2d22010-09-23 08:38:17 +0200908 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200909 if (ts->continue_on_error)
910 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe22708902007-03-06 17:05:32 +0100911
David Nellans562c2d22010-09-23 08:38:17 +0200912 /* Additional output if description is set */
Jens Axboe4b0f2252011-10-13 15:03:25 +0200913 if (strlen(ts->description))
Jens Axboe946e4272012-03-23 19:22:21 +0100914 log_info(";%s", ts->description);
915
916 log_info("\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100917}
918
Shaohua Licc372b12012-09-17 09:12:18 +0200919static struct json_object *show_thread_status_json(struct thread_stat *ts,
920 struct group_run_stats *rs)
921{
922 struct json_object *root, *tmp;
923 double io_u_dist[FIO_IO_U_MAP_NR];
924 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
925 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
926 double usr_cpu, sys_cpu;
927 int i;
928
929 root = json_create_object();
930 json_object_add_value_string(root, "jobname", ts->name);
931 json_object_add_value_int(root, "groupid", ts->groupid);
932 json_object_add_value_int(root, "error", ts->error);
933
934 add_ddir_status_json(ts, rs, DDIR_READ, root);
935 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
Jens Axboef3afa572012-09-17 13:34:16 +0200936 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
Shaohua Licc372b12012-09-17 09:12:18 +0200937
938 /* CPU Usage */
939 if (ts->total_run_time) {
940 double runt = (double) ts->total_run_time;
941
942 usr_cpu = (double) ts->usr_time * 100 / runt;
943 sys_cpu = (double) ts->sys_time * 100 / runt;
944 } else {
945 usr_cpu = 0;
946 sys_cpu = 0;
947 }
948 json_object_add_value_float(root, "usr_cpu", usr_cpu);
949 json_object_add_value_float(root, "sys_cpu", sys_cpu);
950 json_object_add_value_int(root, "ctx", ts->ctx);
951 json_object_add_value_int(root, "majf", ts->majf);
952 json_object_add_value_int(root, "minf", ts->minf);
953
954
955 /* Calc % distribution of IO depths, usecond, msecond latency */
956 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
957 stat_calc_lat_u(ts, io_u_lat_u);
958 stat_calc_lat_m(ts, io_u_lat_m);
959
960 tmp = json_create_object();
961 json_object_add_value_object(root, "iodepth_level", tmp);
962 /* Only show fixed 7 I/O depth levels*/
963 for (i = 0; i < 7; i++) {
964 char name[20];
965 if (i < 6)
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100966 snprintf(name, 20, "%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +0200967 else
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100968 snprintf(name, 20, ">=%d", 1 << i);
Shaohua Licc372b12012-09-17 09:12:18 +0200969 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
970 }
971
972 tmp = json_create_object();
973 json_object_add_value_object(root, "latency_us", tmp);
974 /* Microsecond latency */
975 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
976 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
977 "250", "500", "750", "1000", };
978 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
979 }
980 /* Millisecond latency */
981 tmp = json_create_object();
982 json_object_add_value_object(root, "latency_ms", tmp);
983 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
984 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
985 "250", "500", "750", "1000", "2000",
986 ">=2000", };
987 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
988 }
989
990 /* Additional output if continue_on_error set - default off*/
991 if (ts->continue_on_error) {
992 json_object_add_value_int(root, "total_err", ts->total_err_count);
993 json_object_add_value_int(root, "total_err", ts->first_error);
994 }
995
996 /* Additional output if description is set */
997 if (strlen(ts->description))
998 json_object_add_value_string(root, "desc", ts->description);
999
1000 return root;
1001}
1002
Jens Axboe4d658652011-10-17 15:05:47 +02001003static void show_thread_status_terse(struct thread_stat *ts,
1004 struct group_run_stats *rs)
1005{
1006 if (terse_version == 2)
1007 show_thread_status_terse_v2(ts, rs);
Jens Axboe3449ab82012-09-14 23:35:08 +02001008 else if (terse_version == 3 || terse_version == 4)
1009 show_thread_status_terse_v3_v4(ts, rs, terse_version);
Jens Axboe4d658652011-10-17 15:05:47 +02001010 else
1011 log_err("fio: bad terse version!? %d\n", terse_version);
1012}
1013
Jens Axboe197574e2007-03-08 15:35:11 +01001014static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +01001015{
1016 double mean, S;
1017
Zheng Liue09231c2011-09-16 08:20:12 +02001018 if (src->samples == 0)
1019 return;
1020
Jens Axboe756867b2007-03-06 15:19:24 +01001021 dst->min_val = min(dst->min_val, src->min_val);
1022 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +01001023
1024 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001025 * Compute new mean and S after the merge
1026 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1027 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +01001028 */
1029 if (nr == 1) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001030 mean = src->mean.u.f;
1031 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +01001032 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001033 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001034
Jens Axboe802ad4a2011-10-05 09:51:58 +02001035 mean = ((src->mean.u.f * src->samples) +
1036 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001037 (dst->samples + src->samples);
1038
Jens Axboe802ad4a2011-10-05 09:51:58 +02001039 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001040 (dst->samples * src->samples) /
1041 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +01001042 }
1043
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +02001044 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +02001045 dst->mean.u.f = mean;
1046 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +01001047}
1048
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001049void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1050{
1051 int i;
1052
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001053 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001054 if (dst->max_run[i] < src->max_run[i])
1055 dst->max_run[i] = src->max_run[i];
1056 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1057 dst->min_run[i] = src->min_run[i];
1058 if (dst->max_bw[i] < src->max_bw[i])
1059 dst->max_bw[i] = src->max_bw[i];
1060 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1061 dst->min_bw[i] = src->min_bw[i];
1062
1063 dst->io_kb[i] += src->io_kb[i];
1064 dst->agg[i] += src->agg[i];
1065 }
1066
1067}
1068
Jens Axboe5b9babb2011-10-10 12:14:30 +02001069void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
1070{
1071 int l, k;
1072
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001073 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001074 if (!dst->unified_rw_rep) {
1075 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
1076 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
1077 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
1078 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
Jens Axboe5b9babb2011-10-10 12:14:30 +02001079
Jens Axboe771e58b2013-01-30 12:56:23 +01001080 dst->io_bytes[l] += src->io_bytes[l];
Jens Axboe5b9babb2011-10-10 12:14:30 +02001081
Jens Axboe771e58b2013-01-30 12:56:23 +01001082 if (dst->runtime[l] < src->runtime[l])
1083 dst->runtime[l] = src->runtime[l];
1084 } else {
1085 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], nr);
1086 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], nr);
1087 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], nr);
1088 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], nr);
1089
1090 dst->io_bytes[0] += src->io_bytes[l];
1091
1092 if (dst->runtime[0] < src->runtime[l])
1093 dst->runtime[0] = src->runtime[l];
1094 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001095 }
1096
1097 dst->usr_time += src->usr_time;
1098 dst->sys_time += src->sys_time;
1099 dst->ctx += src->ctx;
1100 dst->majf += src->majf;
1101 dst->minf += src->minf;
1102
1103 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1104 dst->io_u_map[k] += src->io_u_map[k];
1105 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1106 dst->io_u_submit[k] += src->io_u_submit[k];
1107 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1108 dst->io_u_complete[k] += src->io_u_complete[k];
1109 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1110 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1111 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1112 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1113
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001114 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe771e58b2013-01-30 12:56:23 +01001115 if (!dst->unified_rw_rep) {
1116 dst->total_io_u[k] += src->total_io_u[k];
1117 dst->short_io_u[k] += src->short_io_u[k];
1118 } else {
1119 dst->total_io_u[0] += src->total_io_u[k];
1120 dst->short_io_u[0] += src->short_io_u[k];
1121 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001122 }
1123
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001124 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
Jens Axboe5b9babb2011-10-10 12:14:30 +02001125 int m;
Jens Axboe771e58b2013-01-30 12:56:23 +01001126
1127 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1128 if (!dst->unified_rw_rep)
1129 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1130 else
1131 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1132 }
Jens Axboe5b9babb2011-10-10 12:14:30 +02001133 }
1134
1135 dst->total_run_time += src->total_run_time;
1136 dst->total_submit += src->total_submit;
1137 dst->total_complete += src->total_complete;
1138}
1139
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001140void init_group_run_stat(struct group_run_stats *gs)
1141{
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001142 int i;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001143 memset(gs, 0, sizeof(*gs));
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001144
1145 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1146 gs->min_bw[i] = gs->min_run[i] = ~0UL;
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001147}
1148
1149void init_thread_stat(struct thread_stat *ts)
1150{
1151 int j;
1152
1153 memset(ts, 0, sizeof(*ts));
1154
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001155 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001156 ts->lat_stat[j].min_val = -1UL;
1157 ts->clat_stat[j].min_val = -1UL;
1158 ts->slat_stat[j].min_val = -1UL;
1159 ts->bw_stat[j].min_val = -1UL;
1160 }
1161 ts->groupid = -1;
1162}
1163
Jens Axboe3c39a372006-06-06 20:56:12 +02001164void show_run_stats(void)
1165{
1166 struct group_run_stats *runstats, *rs;
1167 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +01001168 struct thread_stat *threadstats, *ts;
Jens Axboe5b9babb2011-10-10 12:14:30 +02001169 int i, j, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001170 int kb_base_warned = 0;
Shaohua Licc372b12012-09-17 09:12:18 +02001171 struct json_object *root = NULL;
1172 struct json_array *array = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +02001173
1174 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1175
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001176 for (i = 0; i < groupid + 1; i++)
1177 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +02001178
Jens Axboe756867b2007-03-06 15:19:24 +01001179 /*
1180 * find out how many threads stats we need. if group reporting isn't
1181 * enabled, it's one-per-td.
1182 */
1183 nr_ts = 0;
1184 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +02001185 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001186 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +01001187 nr_ts++;
1188 continue;
1189 }
1190 if (last_ts == td->groupid)
1191 continue;
1192
1193 last_ts = td->groupid;
1194 nr_ts++;
1195 }
1196
1197 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
1198
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001199 for (i = 0; i < nr_ts; i++)
1200 init_thread_stat(&threadstats[i]);
Jens Axboe756867b2007-03-06 15:19:24 +01001201
1202 j = 0;
1203 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +01001204 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +01001205 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001206 if (idx && (!td->o.group_reporting ||
1207 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +01001208 idx = 0;
1209 j++;
1210 }
1211
1212 last_ts = td->groupid;
1213
Jens Axboe756867b2007-03-06 15:19:24 +01001214 ts = &threadstats[j];
1215
Yu-ju Hong83349192011-08-13 00:53:44 +02001216 ts->clat_percentiles = td->o.clat_percentiles;
Vincent Kang Fu435d1952013-02-06 08:43:40 +01001217 ts->percentile_precision = td->o.percentile_precision;
Vincent Kang Fufd112d32013-02-02 09:28:55 +01001218 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +02001219
Jens Axboe197574e2007-03-08 15:35:11 +01001220 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +01001221 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +01001222
Jens Axboe7abd0e32007-03-12 15:24:43 +01001223 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001224 /*
1225 * These are per-group shared already
1226 */
Jens Axboef6bb5b82011-10-03 12:21:25 +02001227 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +02001228 if (td->o.description)
1229 strncpy(ts->description, td->o.description,
1230 FIO_JOBNAME_SIZE);
1231 else
1232 memset(ts->description, 0, FIO_JOBNAME_SIZE);
1233
Jens Axboe756867b2007-03-06 15:19:24 +01001234 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001235
1236 /*
1237 * first pid in group, not very useful...
1238 */
Jens Axboe756867b2007-03-06 15:19:24 +01001239 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001240
1241 ts->kb_base = td->o.kb_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001242 ts->unified_rw_rep = td->o.unified_rw_rep;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001243 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1244 log_info("fio: kb_base differs for jobs in group, using"
1245 " %u as the base\n", ts->kb_base);
1246 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001247 }
1248
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001249 ts->continue_on_error = td->o.continue_on_error;
1250 ts->total_err_count += td->total_err_count;
1251 ts->first_error = td->first_error;
1252 if (!ts->error) {
1253 if (!td->error && td->o.continue_on_error &&
1254 td->first_error) {
1255 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001256 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001257 } else if (td->error) {
1258 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001259 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001260 }
Jens Axboe756867b2007-03-06 15:19:24 +01001261 }
1262
Jens Axboe5b9babb2011-10-10 12:14:30 +02001263 sum_thread_stats(ts, &td->ts, idx);
Jens Axboe756867b2007-03-06 15:19:24 +01001264 }
1265
1266 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001267 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001268
Jens Axboe756867b2007-03-06 15:19:24 +01001269 ts = &threadstats[i];
1270 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001271 rs->kb_base = ts->kb_base;
Jens Axboe771e58b2013-01-30 12:56:23 +01001272 rs->unified_rw_rep += ts->unified_rw_rep;
Jens Axboe3c39a372006-06-06 20:56:12 +02001273
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001274 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001275 if (!ts->runtime[j])
1276 continue;
1277 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1278 rs->min_run[j] = ts->runtime[j];
1279 if (ts->runtime[j] > rs->max_run[j])
1280 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +02001281
Jens Axboe94370ac2007-03-08 15:28:10 +01001282 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +02001283 if (ts->runtime[j]) {
Jens Axboec857cfe2012-04-05 08:42:11 -06001284 unsigned long runt = ts->runtime[j];
1285 unsigned long long kb;
Jens Axboe8879fd12009-04-20 10:06:02 +02001286
Jens Axboec857cfe2012-04-05 08:42:11 -06001287 kb = ts->io_bytes[j] / rs->kb_base;
1288 bw = kb * 1000 / runt;
Jens Axboe8879fd12009-04-20 10:06:02 +02001289 }
Jens Axboe94370ac2007-03-08 15:28:10 +01001290 if (bw < rs->min_bw[j])
1291 rs->min_bw[j] = bw;
1292 if (bw > rs->max_bw[j])
1293 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001294
Jens Axboe90fef2d2009-07-17 22:33:32 +02001295 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +01001296 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001297 }
1298
1299 for (i = 0; i < groupid + 1; i++) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001300 int ddir;
1301
Jens Axboe3c39a372006-06-06 20:56:12 +02001302 rs = &runstats[i];
1303
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001304 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1305 if (rs->max_run[ddir])
1306 rs->agg[ddir] = (rs->io_kb[ddir] * 1000) /
1307 rs->max_run[ddir];
1308 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001309 }
1310
1311 /*
1312 * don't overwrite last signal output
1313 */
Jens Axboef3afa572012-09-17 13:34:16 +02001314 if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001315 log_info("\n");
Jens Axboef3afa572012-09-17 13:34:16 +02001316 else if (output_format == FIO_OUTPUT_JSON) {
Shaohua Licc372b12012-09-17 09:12:18 +02001317 root = json_create_object();
1318 json_object_add_value_string(root, "fio version", fio_version_string);
1319 array = json_create_array();
1320 json_object_add_value_array(root, "jobs", array);
1321 }
1322
Jens Axboe756867b2007-03-06 15:19:24 +01001323 for (i = 0; i < nr_ts; i++) {
1324 ts = &threadstats[i];
1325 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +02001326
Jens Axboea64e88d2011-10-03 14:20:01 +02001327 if (is_backend)
1328 fio_server_send_ts(ts, rs);
Jens Axboef3afa572012-09-17 13:34:16 +02001329 else if (output_format == FIO_OUTPUT_TERSE)
1330 show_thread_status_terse(ts, rs);
1331 else if (output_format == FIO_OUTPUT_JSON) {
1332 struct json_object *tmp = show_thread_status_json(ts, rs);
1333 json_array_add_value_object(array, tmp);
Shaohua Licc372b12012-09-17 09:12:18 +02001334 } else
Jens Axboe756867b2007-03-06 15:19:24 +01001335 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001336 }
Jens Axboef3afa572012-09-17 13:34:16 +02001337 if (output_format == FIO_OUTPUT_JSON) {
Shaohua Licc372b12012-09-17 09:12:18 +02001338 /* disk util stats, if any */
1339 show_disk_util(1, root);
1340
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001341 show_idle_prof_stats(FIO_OUTPUT_JSON, root);
1342
Shaohua Licc372b12012-09-17 09:12:18 +02001343 json_print_object(root);
1344 log_info("\n");
1345 json_free_object(root);
1346 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001347
Jens Axboe72c27ff2011-10-16 11:50:31 +02001348 for (i = 0; i < groupid + 1; i++) {
1349 rs = &runstats[i];
Jens Axboea64e88d2011-10-03 14:20:01 +02001350
Jens Axboe72c27ff2011-10-16 11:50:31 +02001351 rs->groupid = i;
Jens Axboed09a64a2011-10-13 11:38:56 +02001352 if (is_backend)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001353 fio_server_send_gs(rs);
Jens Axboef3afa572012-09-17 13:34:16 +02001354 else if (output_format == FIO_OUTPUT_NORMAL)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001355 show_group_stats(rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001356 }
Jens Axboeeecf2722006-10-20 14:00:36 +02001357
Jens Axboe72c27ff2011-10-16 11:50:31 +02001358 if (is_backend)
1359 fio_server_send_du();
Jens Axboef3afa572012-09-17 13:34:16 +02001360 else if (output_format == FIO_OUTPUT_NORMAL)
Shaohua Licc372b12012-09-17 09:12:18 +02001361 show_disk_util(0, NULL);
Jens Axboe72c27ff2011-10-16 11:50:31 +02001362
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001363 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL);
1364
Jens Axboeeecf2722006-10-20 14:00:36 +02001365 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +01001366 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +02001367}
1368
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001369static void *__show_running_run_stats(void *arg)
1370{
1371 struct thread_data *td;
1372 unsigned long long *rt;
1373 struct timeval tv;
1374 int i;
1375
1376 rt = malloc(thread_number * sizeof(unsigned long long));
1377 fio_gettime(&tv, NULL);
1378
1379 for_each_td(td, i) {
1380 rt[i] = mtime_since(&td->start, &tv);
1381 if (td_read(td) && td->io_bytes[DDIR_READ])
1382 td->ts.runtime[DDIR_READ] += rt[i];
1383 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1384 td->ts.runtime[DDIR_WRITE] += rt[i];
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001385 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1386 td->ts.runtime[DDIR_TRIM] += rt[i];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001387
1388 update_rusage_stat(td);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001389 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1390 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1391 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001392 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
1393 }
1394
1395 show_run_stats();
1396
1397 for_each_td(td, i) {
1398 if (td_read(td) && td->io_bytes[DDIR_READ])
1399 td->ts.runtime[DDIR_READ] -= rt[i];
1400 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1401 td->ts.runtime[DDIR_WRITE] -= rt[i];
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001402 if (td_trim(td) && td->io_bytes[DDIR_TRIM])
1403 td->ts.runtime[DDIR_TRIM] -= rt[i];
Jens Axboe4c6d91e2012-03-30 10:30:35 +02001404 }
1405
1406 free(rt);
1407 return NULL;
1408}
1409
1410/*
1411 * Called from signal handler. It _should_ be safe to just run this inline
1412 * in the sig handler, but we should be disturbing the system less by just
1413 * creating a thread to do it.
1414 */
1415void show_running_run_stats(void)
1416{
1417 pthread_t thread;
1418
1419 pthread_create(&thread, NULL, __show_running_run_stats, NULL);
1420 pthread_detach(thread);
1421}
1422
Jens Axboe68704082007-01-10 19:56:37 +01001423static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +02001424{
Jens Axboe68704082007-01-10 19:56:37 +01001425 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +01001426 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001427
Jens Axboe68704082007-01-10 19:56:37 +01001428 if (data > is->max_val)
1429 is->max_val = data;
1430 if (data < is->min_val)
1431 is->min_val = data;
1432
Jens Axboe802ad4a2011-10-05 09:51:58 +02001433 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +02001434 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001435 is->mean.u.f += delta / (is->samples + 1.0);
1436 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +02001437 }
Jens Axboe68704082007-01-10 19:56:37 +01001438
Jens Axboe3c39a372006-06-06 20:56:12 +02001439 is->samples++;
1440}
1441
Jens Axboebb3884d2007-01-17 17:23:11 +11001442static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +02001443 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -07001444 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001445{
Jens Axboe306ddc92009-05-18 13:08:12 +02001446 const int nr_samples = iolog->nr_samples;
1447
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001448 if (!iolog->nr_samples)
1449 iolog->avg_last = t;
1450
Jens Axboe3c39a372006-06-06 20:56:12 +02001451 if (iolog->nr_samples == iolog->max_samples) {
1452 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
1453
1454 iolog->log = realloc(iolog->log, new_size);
1455 iolog->max_samples <<= 1;
1456 }
1457
Jens Axboe306ddc92009-05-18 13:08:12 +02001458 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -07001459 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +02001460 iolog->log[nr_samples].ddir = ddir;
1461 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +02001462 iolog->nr_samples++;
1463}
1464
Jens Axboe7fb28d32011-12-01 15:17:24 +01001465static inline void reset_io_stat(struct io_stat *ios)
1466{
1467 ios->max_val = ios->min_val = ios->samples = 0;
1468 ios->mean.u.f = ios->S.u.f = 0;
1469}
1470
Jens Axboebb3884d2007-01-17 17:23:11 +11001471static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +02001472 unsigned long val, enum fio_ddir ddir,
1473 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001474{
Jens Axboe7fb28d32011-12-01 15:17:24 +01001475 unsigned long elapsed, this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001476
Jens Axboeff58fce2010-08-25 12:02:08 +02001477 if (!ddir_rw(ddir))
1478 return;
1479
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001480 elapsed = mtime_since_now(&td->epoch);
1481
1482 /*
1483 * If no time averaging, just add the log sample.
1484 */
1485 if (!iolog->avg_msec) {
1486 __add_log_sample(iolog, val, ddir, bs, elapsed);
1487 return;
1488 }
1489
1490 /*
1491 * Add the sample. If the time period has passed, then
1492 * add that entry to the log and clear.
1493 */
1494 add_stat_sample(&iolog->avg_window[ddir], val);
1495
Jens Axboe7fb28d32011-12-01 15:17:24 +01001496 /*
1497 * If period hasn't passed, adding the above sample is all we
1498 * need to do.
1499 */
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001500 this_window = elapsed - iolog->avg_last;
1501 if (this_window < iolog->avg_msec)
1502 return;
1503
Jens Axboe7fb28d32011-12-01 15:17:24 +01001504 /*
1505 * Note an entry in the log. Use the mean from the logged samples,
1506 * making sure to properly round up. Only write a log entry if we
1507 * had actual samples done.
1508 */
1509 if (iolog->avg_window[DDIR_READ].samples) {
1510 unsigned long mr;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001511
Jens Axboe7fb28d32011-12-01 15:17:24 +01001512 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001513 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed);
Jens Axboe7fb28d32011-12-01 15:17:24 +01001514 }
1515 if (iolog->avg_window[DDIR_WRITE].samples) {
1516 unsigned long mw;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001517
Jens Axboe7fb28d32011-12-01 15:17:24 +01001518 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
1519 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed);
1520 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001521 if (iolog->avg_window[DDIR_TRIM].samples) {
1522 unsigned long mw;
1523
1524 mw = iolog->avg_window[DDIR_TRIM].mean.u.f + 0.50;
1525 __add_log_sample(iolog, mw, DDIR_TRIM, 0, elapsed);
1526 }
1527
Jens Axboe7fb28d32011-12-01 15:17:24 +01001528
1529 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1530 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001531 reset_io_stat(&iolog->avg_window[DDIR_TRIM]);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001532 iolog->avg_last = elapsed;
Jens Axboebb3884d2007-01-17 17:23:11 +11001533}
1534
Jens Axboe306ddc92009-05-18 13:08:12 +02001535void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001536{
Jens Axboeff58fce2010-08-25 12:02:08 +02001537 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +11001538
Jens Axboeff58fce2010-08-25 12:02:08 +02001539 if (!ddir_rw(ddir))
1540 return;
1541
1542 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +02001543 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +11001544}
1545
Yu-ju Hong83349192011-08-13 00:53:44 +02001546static void add_clat_percentile_sample(struct thread_stat *ts,
1547 unsigned long usec, enum fio_ddir ddir)
1548{
1549 unsigned int idx = plat_val_to_idx(usec);
1550 assert(idx < FIO_IO_U_PLAT_NR);
1551
1552 ts->io_u_plat[ddir][idx]++;
1553}
1554
Jens Axboe1e97cce2006-12-05 11:44:16 +01001555void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001556 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001557{
Jens Axboe756867b2007-03-06 15:19:24 +01001558 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001559
Jens Axboeff58fce2010-08-25 12:02:08 +02001560 if (!ddir_rw(ddir))
1561 return;
1562
Jens Axboed85f5112007-06-18 09:41:23 +02001563 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001564
Jens Axboe7b9f7332011-10-03 10:06:44 +02001565 if (td->clat_log)
1566 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +02001567
1568 if (ts->clat_percentiles)
1569 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +02001570}
1571
Jens Axboe1e97cce2006-12-05 11:44:16 +01001572void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001573 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001574{
Jens Axboe756867b2007-03-06 15:19:24 +01001575 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001576
Jens Axboeff58fce2010-08-25 12:02:08 +02001577 if (!ddir_rw(ddir))
1578 return;
1579
Jens Axboed85f5112007-06-18 09:41:23 +02001580 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001581
Jens Axboe7b9f7332011-10-03 10:06:44 +02001582 if (td->slat_log)
1583 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001584}
1585
Jens Axboe02af0982010-06-24 09:59:34 +02001586void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
1587 unsigned long usec, unsigned int bs)
1588{
1589 struct thread_stat *ts = &td->ts;
1590
Jens Axboeff58fce2010-08-25 12:02:08 +02001591 if (!ddir_rw(ddir))
1592 return;
1593
Jens Axboe02af0982010-06-24 09:59:34 +02001594 add_stat_sample(&ts->lat_stat[ddir], usec);
1595
Jens Axboe7b9f7332011-10-03 10:06:44 +02001596 if (td->lat_log)
1597 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001598}
1599
Jens Axboe306ddc92009-05-18 13:08:12 +02001600void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001601 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001602{
Jens Axboe756867b2007-03-06 15:19:24 +01001603 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001604 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001605
Jens Axboeff58fce2010-08-25 12:02:08 +02001606 if (!ddir_rw(ddir))
1607 return;
1608
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001609 spent = mtime_since(&td->bw_sample_time, t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001610 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001611 return;
Jens Axboe9602d8d2012-02-20 20:19:28 +01001612
1613 /*
Josh Carter5daa4eb2012-02-20 10:12:22 +01001614 * Compute both read and write rates for the interval.
1615 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001616 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
Josh Carter5daa4eb2012-02-20 10:12:22 +01001617 uint64_t delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001618
Josh Carter5daa4eb2012-02-20 10:12:22 +01001619 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
1620 if (!delta)
1621 continue; /* No entries for interval */
Jens Axboe3c39a372006-06-06 20:56:12 +02001622
Josh Carter5daa4eb2012-02-20 10:12:22 +01001623 rate = delta * 1000 / spent / 1024;
1624 add_stat_sample(&ts->bw_stat[ddir], rate);
1625
1626 if (td->bw_log)
1627 add_log_sample(td, td->bw_log, rate, ddir, bs);
1628
1629 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
1630 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001631
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001632 fio_gettime(&td->bw_sample_time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +02001633}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001634
1635void add_iops_sample(struct thread_data *td, enum fio_ddir ddir,
1636 struct timeval *t)
1637{
1638 struct thread_stat *ts = &td->ts;
1639 unsigned long spent, iops;
1640
1641 if (!ddir_rw(ddir))
1642 return;
1643
1644 spent = mtime_since(&td->iops_sample_time, t);
1645 if (spent < td->o.iops_avg_time)
1646 return;
1647
Jens Axboe9602d8d2012-02-20 20:19:28 +01001648 /*
1649 * Compute both read and write rates for the interval.
1650 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001651 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
Jens Axboe9602d8d2012-02-20 20:19:28 +01001652 uint64_t delta;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001653
Jens Axboe9602d8d2012-02-20 20:19:28 +01001654 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
1655 if (!delta)
1656 continue; /* No entries for interval */
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001657
Jens Axboe9602d8d2012-02-20 20:19:28 +01001658 iops = (delta * 1000) / spent;
1659 add_stat_sample(&ts->iops_stat[ddir], iops);
1660
1661 if (td->iops_log)
1662 add_log_sample(td, td->iops_log, iops, ddir, 0);
1663
Jens Axboe421f4a82012-02-28 08:20:26 +01001664 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
Jens Axboe9602d8d2012-02-20 20:19:28 +01001665 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001666
1667 fio_gettime(&td->iops_sample_time, NULL);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001668}