mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-27 19:25:27 +03:00
Value for free disk space is counterintuative on ext file systems (issue#644)
This commit is contained in:
parent
7d09e4e179
commit
af5598056a
@ -129,7 +129,7 @@ class Plugin(GlancesPlugin):
|
||||
'mnt_point': fs.mountpoint,
|
||||
'size': fs_usage.total,
|
||||
'used': fs_usage.used,
|
||||
'free': fs_usage.total - fs_usage.used,
|
||||
'free': fs_usage.free,
|
||||
'percent': fs_usage.percent,
|
||||
'key': self.get_key()}
|
||||
self.stats.append(fs_current)
|
||||
|
Loading…
Reference in New Issue
Block a user