Report initial node filesystem sizes/utilization

Change Iba195e7c5cec372c6ba4daf7059da5b6fb6740ec implemented
collection of output for `df -i` (inode counts) and `df -m`
(megabytes data) in validate-host, but did not add them to the
report file template. Correct this oversight so that the collected
information will be included in that file.

Change-Id: I8c2c4a90f18394a04fde84355a89a15bf5aa66b4
This commit is contained in:
Jeremy Stanley 2021-02-07 17:47:44 +00:00
parent e7915b65b7
commit b1521dbdb5
1 changed files with 13 additions and 0 deletions

View File

@ -51,4 +51,17 @@ Route to Known Host v6
======================
Known Host: {{ zuul_site_traceroute_host }}
{{ zdi.traceroute_v6 }}
{% endif %}
{% if 'df_i' in zdi %}
Initial FS Inode Counts
=======================
{{ zdi.df_i }}
{% endif %}
{% if 'df_m' in zdi %}
Initial FS Utilization
======================
{{ zdi.df_m }}
{% endif %}