summaryrefslogtreecommitdiffstats
path: root/lib/utils_disk.h
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.org>2019-02-19 20:49:13 (GMT)
committerGitHub <noreply@github.com>2019-02-19 20:49:13 (GMT)
commit555559fd303825e02c0aa196194ae15a2e88aadc (patch)
treeabebf547da25660bd158896bef8420de72811d55 /lib/utils_disk.h
parent931ed78b5dc062fff33652d87406f1547da5ddbe (diff)
parent270e7cba3830328424e3f2b6b9a6989b1ea5f89b (diff)
downloadmonitoring-plugins-555559f.tar.gz
Merge pull request #1567 from vdanjean/master
[check_disk] add support to display inodes usage in perfdata
Diffstat (limited to 'lib/utils_disk.h')
-rw-r--r--lib/utils_disk.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/utils_disk.h b/lib/utils_disk.h
index 83a3763..999270c 100644
--- a/lib/utils_disk.h
+++ b/lib/utils_disk.h
@@ -24,7 +24,8 @@ struct parameter_list
24 char *group; 24 char *group;
25 struct mount_entry *best_match; 25 struct mount_entry *best_match;
26 struct parameter_list *name_next; 26 struct parameter_list *name_next;
27 uintmax_t total, available, available_to_root, used, inodes_free, inodes_total; 27 uintmax_t total, available, available_to_root, used,
28 inodes_free, inodes_free_to_root, inodes_used, inodes_total;
28 double dfree_pct, dused_pct; 29 double dfree_pct, dused_pct;
29 double dused_units, dfree_units, dtotal_units; 30 double dused_units, dfree_units, dtotal_units;
30 double dused_inodes_percent, dfree_inodes_percent; 31 double dused_inodes_percent, dfree_inodes_percent;