Collect initial node filesystem sizes/utilization

Include calls to `df -i` (inode counts) and `df -m` (megabytes data)
in validate-host, to aid in troubleshooting build failures where the
builds start out with too little free space. This way the initial
capacity and utilization of all available filesystems will be
recorded with other basic node diagnostic data.

Change-Id: Iba195e7c5cec372c6ba4daf7059da5b6fb6740ec
This commit is contained in:
Jeremy Stanley 2021-02-06 20:27:01 +00:00
parent 8bdb2b538c
commit e7915b65b7
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,8 @@ command_map = {
'network_routing_v4': 'ip route show',
'network_routing_v6': 'ip -6 route show',
'network_neighbors': 'ip neighbor show',
'df_i': 'df -i',
'df_m': 'df -m',
}