aboutsummaryrefslogtreecommitdiff
path: root/src/util/benchmark.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-02-28 18:13:49 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-02-28 18:13:58 +0100
commit5a4d49e84c6829741f6e288088e08c7d0332df49 (patch)
tree5c22071d970b79dc950ad8856fb22c6c3d53e38f /src/util/benchmark.c
parent98cd2e57b35c8cc1eb94ff7f28c1df63846dd5eb (diff)
downloadgnunet-5a4d49e84c6829741f6e288088e08c7d0332df49.tar.gz
gnunet-5a4d49e84c6829741f6e288088e08c7d0332df49.zip
add bytes recv/sent to URL request benchmarking
Diffstat (limited to 'src/util/benchmark.c')
-rw-r--r--src/util/benchmark.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/benchmark.c b/src/util/benchmark.c
index bb1c3c79a..caf6cd64a 100644
--- a/src/util/benchmark.c
+++ b/src/util/benchmark.c
@@ -137,12 +137,14 @@ write_benchmark_data (struct BenchmarkData *bd)
137 for (unsigned int i = 0; i < bd->urd_len; i++) 137 for (unsigned int i = 0; i < bd->urd_len; i++)
138 { 138 {
139 struct UrlRequestData *urd = &bd->urd[i]; 139 struct UrlRequestData *urd = &bd->urd[i];
140 GNUNET_asprintf (&s, "url %s status %u count %llu time_us %llu time_us_max %llu\n", 140 GNUNET_asprintf (&s, "url %s status %u count %llu time_us %llu time_us_max %llu bytes_sent %llu bytes_received %llu\n",
141 urd->request_url, 141 urd->request_url,
142 urd->status, 142 urd->status,
143 (unsigned long long) urd->count, 143 (unsigned long long) urd->count,
144 (unsigned long long) urd->time.rel_value_us, 144 (unsigned long long) urd->time.rel_value_us,
145 (unsigned long long) urd->time_max.rel_value_us); 145 (unsigned long long) urd->time_max.rel_value_us,
146 (unsigned long long) urd->bytes_sent,
147 (unsigned long long) urd->bytes_received);
146 GNUNET_assert (GNUNET_SYSERR != GNUNET_DISK_file_write_blocking (fh, s, strlen (s))); 148 GNUNET_assert (GNUNET_SYSERR != GNUNET_DISK_file_write_blocking (fh, s, strlen (s)));
147 GNUNET_free (s); 149 GNUNET_free (s);
148 } 150 }