diff options
author | Weston Andros Adamson <dros@netapp.com> | 2013-07-01 12:00:51 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2013-07-01 12:03:11 -0400 |
commit | 94642a397d27ea0cfc6d798bc505482023eb5ec1 (patch) | |
tree | f41f2586358ec13050cd0e9e04f4f0f6387a92ff /tools/nfs-iostat/nfs-iostat.py | |
parent | a402f768db1dc6497cf7f592b33e142936897de2 (diff) | |
download | nfs-utils-94642a397d27ea0cfc6d798bc505482023eb5ec1.tar.gz nfs-utils-94642a397d27ea0cfc6d798bc505482023eb5ec1.tar.xz nfs-utils-94642a397d27ea0cfc6d798bc505482023eb5ec1.zip |
nfsiostat: restore output format
Recent changes to support python 3 changed the output of nfsiostat from:
read: ops/s kB/s kB/op retrans
avg RTT (ms) avg exe (ms)
48.094 2889.133 60.072 0 (0.0%)
177.160 184.833
...
to:
read:
ops/s kB/s kB/op retrans avg RTT (ms) avg exe
(ms)
0.000
0.000
0.000
0 (0.0%)
0.000
0.000
...
Signed-off-by: Weston Andros Adamson <dros@netapp.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'tools/nfs-iostat/nfs-iostat.py')
-rw-r--r-- | tools/nfs-iostat/nfs-iostat.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/nfs-iostat/nfs-iostat.py b/tools/nfs-iostat/nfs-iostat.py index dfbef87..c035537 100644 --- a/tools/nfs-iostat/nfs-iostat.py +++ b/tools/nfs-iostat/nfs-iostat.py @@ -353,14 +353,14 @@ class DeviceData: exe_per_op = 0.0 op += ':' - print('%s' % op.lower().ljust(15)) + print('%s' % op.lower().ljust(15), end='') print(' ops/s\t\t kB/s\t\t kB/op\t\tretrans\t\tavg RTT (ms)\tavg exe (ms)') - print('\t\t%7.3f' % (ops / sample_time)) - print('\t%7.3f' % (kilobytes / sample_time)) - print('\t%7.3f' % kb_per_op) - print(' %7d (%3.1f%%)' % (retrans, retrans_percent)) - print('\t%7.3f' % rtt_per_op) + print('\t\t%7.3f' % (ops / sample_time), end='') + print('\t%7.3f' % (kilobytes / sample_time), end='') + print('\t%7.3f' % kb_per_op, end='') + print(' %7d (%3.1f%%)' % (retrans, retrans_percent), end='') + print('\t%7.3f' % rtt_per_op, end='') print('\t%7.3f' % exe_per_op) def ops(self, sample_time): @@ -392,7 +392,7 @@ class DeviceData: print() print(' op/s\t\trpc bklog') - print('%7.2f' % (sends / sample_time)) + print('%7.2f' % (sends / sample_time), end='') print('\t%7.2f' % backlog) if which == 0: |