diff --git a/perty-nagios-mailer.pl/trunk/perty-nagios-mailer.pl b/perty-nagios-mailer.pl/trunk/perty-nagios-mailer.pl index 4523f9b..2028f87 100644 --- a/perty-nagios-mailer.pl/trunk/perty-nagios-mailer.pl +++ b/perty-nagios-mailer.pl/trunk/perty-nagios-mailer.pl @@ -28,7 +28,7 @@ my $pnp4nagios_phpdir = '/usr/share/nagios/html/pnp4nagios'; my $nagios_cgiurl = "http://nagios/nagios/cgi-bin"; my $pnp4nagios_url = "http://nagios/nagios/pnp4nagios/"; my $from_address = 'nagios@opensource.is'; -my $logo = '/usr/share/nagios/images/sblogo.png'; +my $logo = '/usr/share/nagios/html/images/sblogo.png'; if (@ARGV != 8) { usage(); @@ -36,6 +36,11 @@ if (@ARGV != 8) { my ($recipient, $date, $type, $host, $ip, $service, $state, $message) = @ARGV; +my %nagioscmd = ( + service_downtime => 56, + service_ack => 34, +); + my $rrd = ''; if (-f "$pnp4nagios_perfdata/$host/$service.rrd") { my $t = time(); @@ -68,44 +73,85 @@ EO ); my $state_color = '#33FF00'; + if ($state eq 'WARNING') { $state_color = '#FFFF00'; } elsif ($state eq 'CRITICAL') { $state_color = '#F83838'; } + +my $ack = ''; +if ($state ne 'OK') { + my $ackurl = sprintf("%s/cmd.cgi?host=%s&service=%s", + $nagios_cgiurl, + $host, + $service); + $ack = qq{ +
+ | |||
Host | +Host | $host ($ip) | |
Service | +Service | $service | |
State | +State | $state | |
Date | +Date | $date | |
Type | +Type | $type | |
Description | +Description | ||
$message |