diff mbox series

[v3] mountstats: Adding 'Day, Hour:Min:Sec' to "mountstats --nfs" for ease of understanding.

Message ID 20200605144835.GA98618@fedora.rsable.com (mailing list archive)
State New, archived
Headers show
Series [v3] mountstats: Adding 'Day, Hour:Min:Sec' to "mountstats --nfs" for ease of understanding. | expand

Commit Message

Rohan Sable June 5, 2020, 2:48 p.m. UTC
This patch adds printing of 'Days, Hours:Mins:Sec' like below to --nfs in mountstats :
NFS mount age : 12 days, 23:59:59

Signed-off-by: Rohan Sable <rsable@redhat.com>
---
 tools/mountstats/mountstats.py | 2 ++
 1 file changed, 2 insertions(+)

Comments

Steve Dickson June 18, 2020, 5:09 p.m. UTC | #1
On 6/5/20 10:48 AM, Rohan Sable wrote:
> This patch adds printing of 'Days, Hours:Mins:Sec' like below to --nfs in mountstats :
> NFS mount age : 12 days, 23:59:59
> 
> Signed-off-by: Rohan Sable <rsable@redhat.com>
Committed.... 

steved.
> ---
>  tools/mountstats/mountstats.py | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py
> index d565385d..014f38a3 100755
> --- a/tools/mountstats/mountstats.py
> +++ b/tools/mountstats/mountstats.py
> @@ -4,6 +4,7 @@
>  """
>  
>  from __future__ import print_function
> +import datetime as datetime
>  
>  __copyright__ = """
>  Copyright (C) 2005, Chuck Lever <cel@netapp.com>
> @@ -391,6 +392,7 @@ class DeviceData:
>          """Pretty-print the NFS options
>          """
>          print('  NFS mount options: %s' % ','.join(self.__nfs_data['mountoptions']))
> +        print('  NFS mount age: %s' % datetime.timedelta(seconds = self.__nfs_data['age']))
>          print('  NFS server capabilities: %s' % ','.join(self.__nfs_data['servercapabilities']))
>          if 'nfsv4flags' in self.__nfs_data:
>              print('  NFSv4 capability flags: %s' % ','.join(self.__nfs_data['nfsv4flags']))
>
diff mbox series

Patch

diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py
index d565385d..014f38a3 100755
--- a/tools/mountstats/mountstats.py
+++ b/tools/mountstats/mountstats.py
@@ -4,6 +4,7 @@ 
 """
 
 from __future__ import print_function
+import datetime as datetime
 
 __copyright__ = """
 Copyright (C) 2005, Chuck Lever <cel@netapp.com>
@@ -391,6 +392,7 @@  class DeviceData:
         """Pretty-print the NFS options
         """
         print('  NFS mount options: %s' % ','.join(self.__nfs_data['mountoptions']))
+        print('  NFS mount age: %s' % datetime.timedelta(seconds = self.__nfs_data['age']))
         print('  NFS server capabilities: %s' % ','.join(self.__nfs_data['servercapabilities']))
         if 'nfsv4flags' in self.__nfs_data:
             print('  NFSv4 capability flags: %s' % ','.join(self.__nfs_data['nfsv4flags']))