diff options
author | Vadim Kochan <vadim4j@gmail.com> | 2015-10-28 07:39:26 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-10-28 09:31:58 +0100 |
commit | c3b1504c716b7a91d8d1563aed6b9f766dc27e3f (patch) | |
tree | 215c8596bc5109717c1605d52ae70e00a46e667a | |
parent | e3822bdbd11f1546b002f00cc018a612e2f3d3e5 (diff) |
flowtop: Add command-line option to show rates in bits
Add -b,--bits command line option to show rates in bits/s instead of
bytes/s.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | flowtop.8 | 3 | ||||
-rw-r--r-- | flowtop.c | 29 |
2 files changed, 27 insertions, 5 deletions
@@ -114,6 +114,9 @@ endpoints. .SS -s, --show-src Also show source information of the flow, not only destination information. .PP +.SS -b, --bits +Show flow rates in bits per second instead of bytes per second. +.PP .SS -u, --update The built-in database update mechanism will be invoked to get Maxmind's latest database. To configure search locations for databases, the file @@ -104,6 +104,11 @@ struct sysctl_params_ctx { int nfct_tstamp; }; +enum rate_units { + RATE_BITS, + RATE_BYTES +}; + static volatile bool is_flow_collecting; static volatile sig_atomic_t sigint = 0; static int what = INCLUDE_IPV4 | INCLUDE_IPV6 | INCLUDE_TCP; @@ -114,8 +119,9 @@ static unsigned int interval = 1; static bool show_src = false; static bool resolve_dns = true; static bool resolve_geoip = true; +static enum rate_units rate_type = RATE_BYTES; -static const char *short_options = "vhTUsDIS46ut:nG"; +static const char *short_options = "vhTUsDIS46ut:nGb"; static const struct option long_options[] = { {"ipv4", no_argument, NULL, '4'}, {"ipv6", no_argument, NULL, '6'}, @@ -127,6 +133,7 @@ static const struct option long_options[] = { {"no-dns", no_argument, NULL, 'n'}, {"no-geoip", no_argument, NULL, 'G'}, {"show-src", no_argument, NULL, 's'}, + {"bits", no_argument, NULL, 'b'}, {"update", no_argument, NULL, 'u'}, {"interval", required_argument, NULL, 't'}, {"version", no_argument, NULL, 'v'}, @@ -261,6 +268,7 @@ static void help(void) " -S|--sctp Show only SCTP flows\n" " -n|--no-dns Don't perform hostname lookup\n" " -s|--show-src Also show source, not only dest\n" + " -b|--bits Show rates in bits/s instead of bytes/s\n" " -u|--update Update GeoIP databases\n" " -t|--interval <time> Refresh time in seconds (default 1s)\n" " -v|--version Print version and exit\n" @@ -821,14 +829,22 @@ static char *bandw2str(double bytes, char *buf, size_t len) static char *rate2str(double rate, char *buf, size_t len) { + const char * const unit_fmt[2][4] = { + { "%.1fGbit/s", "%.1fMbit/s", "%.1fkbit/s", "%gbit/s" }, + { "%.1fGB/s", "%.1fMB/s", "%.1fkB/s", "%gB/s" } + }; + + if (rate_type == RATE_BITS) + rate *= 8; + if (rate > 1000000000.) - snprintf(buf, len, "%.1fGB/s", rate / 1000000000.); + snprintf(buf, len, unit_fmt[rate_type][0], rate / 1000000000.); else if (rate > 1000000.) - snprintf(buf, len, "%.1fMB/s", rate / 1000000.); + snprintf(buf, len, unit_fmt[rate_type][1], rate / 1000000.); else if (rate > 1000.) - snprintf(buf, len, "%.1fkB/s", rate / 1000.); + snprintf(buf, len, unit_fmt[rate_type][2], rate / 1000.); else - snprintf(buf, len, "%gB/s", rate); + snprintf(buf, len, unit_fmt[rate_type][3], rate); return buf; } @@ -1533,6 +1549,9 @@ int main(int argc, char **argv) case 's': show_src = true; break; + case 'b': + rate_type = RATE_BITS; + break; case 'u': update_geoip(); die(); |