From b32d92e890caac903491116e9d817aa780c0323b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 23 Jul 2014 15:03:00 +0200 Subject: Imported Upstream version 1.8.14 --- contrib/create_webpage_compact.sh | 151 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100755 contrib/create_webpage_compact.sh (limited to 'contrib/create_webpage_compact.sh') diff --git a/contrib/create_webpage_compact.sh b/contrib/create_webpage_compact.sh new file mode 100755 index 0000000..d8df05b --- /dev/null +++ b/contrib/create_webpage_compact.sh @@ -0,0 +1,151 @@ +#!/bin/bash +# +# Copyright (c) 2003-2004 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" + +# Full path to the rrdcgi executable. +rrdcgi=/usr/local/bin/rrdcgi + +# Where should rrdcgi store the graphs? This path must be within the +# document root and writable by the webserver user. +img_dir=/usr/local/apache2/htdocs/images/graphs + +# Where will the graphs show up on the webserver? +web_dir=/images/graphs + +# Size of graph area (excluding title, legends etc.) +graph_width=500 +graph_height=150 + +# Graphs to include on page +graph_daily=1 +graph_weekly=1 +graph_monthly=0 + + +# No need to edit below this point. + +color[0]="2020FF" +color[1]="20FF20" +color[2]="FF2020" +color[3]="FF21FF" +color[4]="21FFFF" +color[5]="FFFF21" +color[6]="8F21FF" +color[7]="21FF8F" +color[8]="FF8F21" +color[9]="FF2190" +color[10]="2190FF" +color[11]="90FF21" + +cat << EOF +#!$rrdcgi + + +$hostname + + +

$hostname

+EOF + + +IFS=" +" + +i=0 +groups= + +for line in `eval $ipmi_cmd -c -v sdr list full` ; do + + IFS=, + + split=($line) + + file="$rrd_dir/$hostname-${split[0]}.rrd" + group=`echo "${split[2]}" | tr ' .-' ___` + + group_color=${group}_color + + if [ -z "${!group}" ] ; then + groups="$groups $group" + + declare $group_color=0 + + group_unit=${group}_unit + declare $group_unit="${split[2]}" + fi + + declare $group="${!group} + DEF:var$i=\"$file\":var:AVERAGE LINE1:var$i#${color[${!group_color}]}:\"${split[0]}\"" + + declare $group_color=$[ ${!group_color} + 1 ] + + c=$[ c + 1 ] + i=$[ i + 1 ] +done + +IFS=" " + +for group in $groups ; do + + group_unit=${group}_unit + + IFS=, + + echo "

${!group_unit}

" + + if [ "$graph_daily" -ne 0 ] ; then + cat << EOF +" + --lazy + --vertical-label "${!group_unit}" + --title "Daily graph" + --height $graph_height + --width $graph_width ${!group} +> +EOF + fi + + if [ "$graph_weekly" -ne 0 ] ; then + cat << EOF +" + --lazy + --start -7d + --vertical-label "${!group_unit}" + --title "Weelky graph" + --height $graph_height + --width $graph_width ${!group} +> +EOF + fi + + if [ "$graph_monthly" -ne 0 ] ; then + cat << EOF +" + --lazy + --start -30d + --vertical-label "${!group_unit}" + --title "Monthly graph" + --height $graph_height + --width $graph_width ${!group} +> +EOF + fi +done + +cat << EOF + + +EOF -- cgit v1.2.3