diff options
Diffstat (limited to 'contrib/collect_data.sh')
-rwxr-xr-x | contrib/collect_data.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/collect_data.sh b/contrib/collect_data.sh new file mode 100755 index 0000000..c0a5099 --- /dev/null +++ b/contrib/collect_data.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# +# Copyright (c) 2003 Fredrik Ohrn. All Rights Reserved. +# +# See the included COPYING file for license details. +# + +# Edit the variables + +hostname=$HOSTNAME + +ipmi_cmd="/usr/local/bin/ipmitool -I open" +rrd_dir="/some/dir/rrd" + +# No need to edit below this point. + +IFS=" +" + +for line in `eval $ipmi_cmd -c sdr list full` ; do + + IFS=, + + split=($line) + + file="$rrd_dir/$hostname-${split[0]}.rrd" + + rrdupdate "$file" "N:${split[1]}" +done |