init
This commit is contained in:
117
VWD-report.sh
Executable file
117
VWD-report.sh
Executable file
@@ -0,0 +1,117 @@
|
||||
#!/bin/bash
|
||||
|
||||
xyz="VWD"
|
||||
# 2016-03-01
|
||||
#ENDE_DATUM_MANUELL="2022-06-01"
|
||||
AUSGABEDIR=/var/www/html/$xyz-report/
|
||||
MAILREC=$1
|
||||
|
||||
function get_png {
|
||||
d=$1; t=$2; i=$3; a=$START; e=$ENDE; h=$IMGH; w=$IMGW; mm=$4
|
||||
if [[ $t == alert* ]]
|
||||
then
|
||||
rm -f $d$t$mm.png
|
||||
echo "http://10.101.0.11/graph.php?device=$d&type=$t&id=$i&from=$a&to=$e&$width=$w&height=$h"
|
||||
wget -q -O $d$t$mm.png "http://10.101.0.11/graph.php?device=$d&type=$t&id=$i&from=$a&to=$e&$width=$w&height=$h"
|
||||
else
|
||||
rm -f $d$t$mm.png
|
||||
echo "http://10.101.0.11/graph.php?device=$d&type=$t&from=$a&to=$e&$width=$w&height=$h"
|
||||
wget -q -O $d$t$mm.png "http://10.101.0.11/graph.php?device=$d&type=$t&from=$a&to=$e&$width=$w&height=$h"
|
||||
fi
|
||||
}
|
||||
|
||||
function get_pngp {
|
||||
p=$1; a=$START; e=$ENDE; h=$IMGH; w=$IMGW; mm=$2;
|
||||
rm -f $p$mm.png
|
||||
echo "http://10.101.0.11/graph.php?type=port_bits&to=$e&id=$p&from=$a&height=$h&width=$w&scale=auto"
|
||||
wget -q -O $p$mm.png "http://10.101.0.11/graph.php?type=port_bits&to=$e&id=$p&from=$a&height=$h&width=$w&scale=auto"
|
||||
}
|
||||
|
||||
function init {
|
||||
COUNT=$1
|
||||
mkdir -p $AUSGABEDIR && pushd $AUSGABEDIR
|
||||
ENDE=`date +%s`
|
||||
MDATE=`date +%Y-%m-%d`
|
||||
|
||||
if [ "$ENDE_DATUM_MANUELL" != "" ]
|
||||
then
|
||||
ENDE=`date -d "$ENDE_DATUM_MANUELL" +%s`
|
||||
MDATE=$ENDE_DATUM_MANUELL
|
||||
fi
|
||||
|
||||
MONAT=`expr $COUNT \* 60 \* 60 \* 24 \* 31`
|
||||
START=`expr $ENDE - $MONAT`
|
||||
|
||||
IMGW=400
|
||||
IMGH=`expr $IMGW / 3`
|
||||
}
|
||||
|
||||
function destruct {
|
||||
popd
|
||||
}
|
||||
|
||||
MONATE=1
|
||||
init $MONATE;
|
||||
|
||||
# ="deviceid:alert_status_id deviceid:alert_status_id ..."
|
||||
#devices="73:718 74:719 176:821 242:12282 78:723 79:724 75:720 76:721 217:5708 218:5738 77:722 238:12184 241:12239 240:12225 239:12211 243:12474 244:12486 251:13523 256:13800";
|
||||
#graphs="alert_status device_ucd_ss_cpu device_ucd_memory device_storage device_ucd_load device_diskio processor device_processor device_NETAPP-MIB_cp_ops";
|
||||
# sp-1 sp-2
|
||||
devices="5:9779 290:21071 292:22024 296:22206 297:68865 298:22208"
|
||||
graphs="alert_status device_processor device_la device_availability"
|
||||
|
||||
#
|
||||
ports=""
|
||||
|
||||
for DEV in $devices
|
||||
do
|
||||
device=$(echo $DEV | cut -f1 -d:)
|
||||
id=$(echo $DEV | cut -f2 -d:)
|
||||
for GRAPH in $graphs
|
||||
do
|
||||
type=$GRAPH
|
||||
get_png $device $type $id $MONATE
|
||||
done
|
||||
done
|
||||
|
||||
for PORT in $ports
|
||||
do
|
||||
get_pngp $PORT $MONATE
|
||||
done
|
||||
|
||||
destruct;
|
||||
|
||||
MONATE=6
|
||||
init $MONATE;
|
||||
|
||||
for DEV in $devices
|
||||
do
|
||||
device=$(echo $DEV | cut -f1 -d:)
|
||||
id=$(echo $DEV | cut -f2 -d:)
|
||||
for GRAPH in $graphs
|
||||
do
|
||||
type=$GRAPH
|
||||
get_png $device $type $id $MONATE
|
||||
done
|
||||
done
|
||||
|
||||
for PORT in $ports
|
||||
do
|
||||
get_pngp $PORT $MONATE
|
||||
done
|
||||
|
||||
destruct;
|
||||
|
||||
htmldoc -t pdf14 -f "/var/www/tmp/$xyz-report_$MDATE.pdf" --book --toclevels 3 --no-numbered --toctitle "Inhaltsverzeichnis" --no-title --linkstyle underline --size A4 --left 0.75in --right 0.50in --top 0.50in --bottom 0.50in --header .t. --header1 ... --footer dt/ --nup 1 --tocheader ... --tocfooter dti --color --no-pscommands --no-xrxcomments --compression=1 --jpeg=90 --fontsize 8.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 8.0 --headfootfont Helvetica --charset iso-8859-1 --links --embedfonts --pagemode outline --pagelayout single --firstpage p1 --pageeffect none --pageduration 10 --effectduration 1.0 --no-encryption --permissions all --owner-password "" --user-password "" --browserwidth 1000 --no-strict --no-overflow /var/www/html/$xyz-report.html
|
||||
|
||||
for MAIL in $MAILREC
|
||||
do
|
||||
echo "TO: $MAIL" > /tmp/$xyz-mailreportfile.tmp
|
||||
echo "FROM: CONET Services Monitoring Reporter <help@conet.de>" >> /tmp/$xyz-mailreportfile.tmp
|
||||
echo "SUBJECT: $xyz Monitoring Report $MDATE" >> /tmp/$xyz-mailreportfile.tmp
|
||||
echo "X-CONET-SRC: root@conlxsyslog03:/scripts/VWD-report.sh" >> /tmp/$xyz-mailreportfile.tmp
|
||||
echo "" >> /tmp/$xyz-mailreportfile.tmp
|
||||
echo "" >> /tmp/$xyz-mailreportfile.tmp
|
||||
echo "" | mutt -H /tmp/$xyz-mailreportfile.tmp -a /var/www/tmp/$xyz-report_$MDATE.pdf -- $MAIL
|
||||
rm /tmp/$xyz-mailreportfile.tmp
|
||||
done
|
||||
Reference in New Issue
Block a user