From c9956f8be63786f9ed7d9994ec1f83bba2e3746c Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 10 Oct 2019 12:18:29 -0400 Subject: Adjust output --- logparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logparse.py b/logparse.py index 1ef49b4..c42ea7b 100755 --- a/logparse.py +++ b/logparse.py @@ -348,7 +348,7 @@ def main(): # Total bandwidth consumed by this channel's use over time frame. bytecount = pkgs['size'].sum() gib = bytecount / 1e9 - print(f'Channel bytecount = {bytecount}') + print(f'Data transferred: {gib:.2f} GiB') # Number of unique hosts and geographic location unique_hosts = set(pkgs['ipaddress']) -- cgit