summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 74470ba)
raw | patch | inline | side by side (parent: 74470ba)
author | Florian Forster <ff@octo.it> | |
Mon, 27 Jun 2016 06:42:12 +0000 (08:42 +0200) | ||
committer | Florian Forster <ff@octo.it> | |
Mon, 27 Jun 2016 06:42:12 +0000 (08:42 +0200) |
This new option allows to write RTT measurements to a CSV file for later
reporting.
reporting.
src/mans/oping.pod | patch | blob | history | |
src/oping.c | patch | blob | history | |
src/oping.h | patch | blob | history |
diff --git a/src/mans/oping.pod b/src/mans/oping.pod
index b609414ff70ec664e4e675f1d669c02971654bc7..425bdca25fc1b6bc6e5989af723ff53df070b7ef 100644 (file)
--- a/src/mans/oping.pod
+++ b/src/mans/oping.pod
=item B<-4>
-Force the use of IPv4.
+Force the use of IPv4.
=item B<-6>
returned by L<geteuid(2)>) differ, the only argument allowed for this option is
"-" (i.e. standard input).
+=item B<-O> I<filename>
+
+Write measurements in I<Comma Separated Values> (CSV) format to I<filename>.
+This option writes three columns per row: wall clock time in (fractional)
+seconds since epoch, hostname and the round trip time in milliseconds.
+
=item B<-Q> I<qos>
Specify the I<Quality of Service> (QoS) for outgoing packets. This is a
diff --git a/src/oping.c b/src/oping.c
index 53602d3c53feeb87cdd2682c3748ba4133e3a248..94515c2c2005fe7300ebd2e57cb920d5da7fec99 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
/**
* Object oriented C module to send ICMP and ICMPv6 `echo's.
- * Copyright (C) 2006-2014 Florian octo Forster <ff at octo.it>
+ * Copyright (C) 2006-2016 Florian octo Forster <ff at octo.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
static int opt_show_graph = 1;
static int opt_utf8 = 0;
#endif
+static char *opt_outfile = NULL;
-static int host_num = 0;
+static int host_num = 0;
+static FILE *outfile = NULL;
#if USE_NCURSES
static WINDOW *main_win = NULL;
" -I srcaddr source address\n"
" -D device outgoing interface name\n"
" -m mark mark to set on outgoing packets\n"
- " -f filename filename to read hosts from\n"
+ " -f filename read hosts from <filename>\n"
+ " -O filename write RTT measurements to <filename>\n"
#if USE_NCURSES
" -u / -U force / disable UTF-8 output\n"
" -g graph graph type to draw\n"
while (1)
{
- optchar = getopt (argc, argv, "46c:hi:I:t:Q:f:D:Z:P:m:w:"
+ optchar = getopt (argc, argv, "46c:hi:I:t:Q:f:D:Z:O:P:m:w:"
#if USE_NCURSES
"uUg:"
#endif
set_opt_send_qos (optarg);
break;
+ case 'O':
+ {
+ free (opt_outfile);
+ opt_outfile = strdup (optarg);
+ }
+
case 'P':
{
double new_percentile;
#endif
}
+ if (outfile != NULL)
+ {
+ struct timespec ts = { 0, 0 };
+
+ if (clock_gettime (CLOCK_REALTIME, &ts) == 0)
+ {
+ double t = ((double) ts.tv_sec) + (((double) ts.tv_nsec) / 1000000.0);
+
+ if ((sequence % 32) == 0)
+ fprintf (outfile, "#time,host,latency[ms]\n");
+
+ fprintf (outfile, "%.3f \"%s\" %.2f\n", t, context->host, latency);
+ }
+ }
+
#if USE_NCURSES
update_stats_from_context (context, iter);
wrefresh (main_win);
saved_set_uid = (uid_t) -1;
#endif
+ if (opt_outfile != NULL)
+ {
+ outfile = fopen (opt_outfile, "a");
+ if (outfile == NULL)
+ {
+ fprintf (stderr, "opening \"%s\" failed: %s\n",
+ opt_outfile, strerror (errno));
+ exit (EXIT_FAILURE);
+ }
+ }
+
ping_initialize_contexts (ping);
if (i == 0)
ping_destroy (ping);
+ if (outfile != NULL)
+ {
+ fclose (outfile);
+ outfile = NULL;
+ }
+
if (status == 0)
exit (EXIT_SUCCESS);
else
diff --git a/src/oping.h b/src/oping.h
index e5bc5fa9c284e981d137a17a40751b3e62a55a0e..197678232233d38519faf2b6b4e83f8825c79243 100644 (file)
--- a/src/oping.h
+++ b/src/oping.h
/**
* Object oriented C module to send ICMP and ICMPv6 `echo's.
- * Copyright (C) 2006-2011 Florian octo Forster <ff at octo.it>
+ * Copyright (C) 2006-2016 Florian octo Forster <ff at octo.it>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the