xref: /openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/diskusage (revision 03409cf6b293f727b9f34670a133aefd6d5fabc7)
1#!/bin/bash
2#
3# config: 123 10
4# @brief: Collect disk usage information.
5#
6
7. $DREPORT_INCLUDE/functions
8
9desc="disk usage"
10file_name="disk-usage.log"
11command="df -hT"
12
13add_cmd_output "$command" "$file_name" "$desc"
14