diff options
author | Matt Rendina <mrendina@stsci.edu> | 2019-10-10 12:18:29 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2019-10-10 12:18:29 -0400 |
commit | c9956f8be63786f9ed7d9994ec1f83bba2e3746c (patch) | |
tree | 788ccabfa856e04d39c43345375c0a6afeec7cc0 /logparse.py | |
parent | 793edf0e0fc503a37e7e1a095c98f0117d9235cb (diff) | |
download | conmets-c9956f8be63786f9ed7d9994ec1f83bba2e3746c.tar.gz |
Adjust output
Diffstat (limited to 'logparse.py')
-rwxr-xr-x | logparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']) |