| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- #!/usr/bin/perl
- #
- # Copyright (C) Roman Dmitiriev, rnd@rajven.ru
- #
- use FindBin '$Bin';
- use lib "$Bin";
- use strict;
- use Time::Local;
- use FileHandle;
- use Rstat::config;
- use Rstat::mysql;
- use Rstat::main;
- use Rstat::nagios;
- use Data::Dumper;
- use Time::Local;
- use Date::Parse;
- use Getopt::Long;
- use Proc::Daemon;
- use Cwd;
- my $pf = '/var/run/nagios/hoststate-monitor.pid';
- my $log = '/var/log/nagios/logs/hoststate.log';
- my $daemon = Proc::Daemon->new(
- pid_file => $pf,
- work_dir => $HOME_DIR
- );
- # are you running? Returns 0 if not.
- my $pid = $daemon->Status($pf);
- my $daemonize = 1;
- GetOptions(
- 'daemon!' => \$daemonize,
- "help" => \&usage,
- "reload" => \&reload,
- "restart" => \&restart,
- "start" => \&run,
- "status" => \&status,
- "stop" => \&stop
- ) or &usage;
- exit(0);
- sub stop {
- if ($pid) {
- print "Stopping pid $pid...";
- if ($daemon->Kill_Daemon($pf)) {
- print "Successfully stopped.\n";
- } else {
- print "Could not find $pid. Was it running?\n";
- }
- } else {
- print "Not running, nothing to stop.\n";
- }
- }
- sub status {
- if ($pid) {
- print "Running with pid $pid.\n";
- } else {
- print "Not running.\n";
- }
- }
- sub run {
- if (!$pid) {
- print "Starting...";
- if ($daemonize) {
- # when Init happens, everything under it runs in the child process.
- # this is important when dealing with file handles, due to the fact
- # Proc::Daemon shuts down all open file handles when Init happens.
- # Keep this in mind when laying out your program, particularly if
- # you use filehandles.
- $daemon->Init;
- }
- setpriority(0,0,19);
- while(1) {
- eval {
- if (!-e $log) { sleep(30); }
- open(hoststate, "tail -n 0 -F $log |") || die "$log not found!";
- my $hdb = init_db();
- while (my $logline = <hoststate>) {
- next unless defined $logline;
- chomp($logline);
- #db_log_debug($hdb,"Host event RAW: $logline");
- my ($date,$hoststate,$hoststatetype,$hostname,$hostip,$hostid,$hosttype,$svc_control)= split (/\|/, $logline);
- #db_log_debug($hdb,"Host event: $date,$hoststate,$hoststatetype,$hostname,$hostip,$hostid,$hosttype,$svc_control");
- next if (!$hostid);
- if (time()-$last_refresh_config>=60) { init_option($hdb); }
- if (!$svc_control) { $svc_control=0; }
- if ($hoststate=~/UNREACHABLE/i) { $hoststate='DOWN'; }
- my $old_state = 'HARDDOWN';
- my $device = get_custom_record($hdb,'SELECT nagios_status,nagios_handler FROM User_auth WHERE id='.$hostid);
- if ($hosttype=~/device/i) { $device = get_custom_record($hdb,'SELECT nagios_status FROM devices WHERE id='.$hostid); }
- if ($device->{nagios_status}) { $old_state = $device->{nagios_status}; }
- db_log_debug($hdb,"Get old for $hostname [$hostip] id: $hostid type: $hosttype => state: $old_state");
- if ($hoststate eq "DOWN") { $hoststate=$hoststatetype.$hoststate; }
- db_log_debug($hdb,"Now for $hostname [$hostip] id: $hostid type: $hosttype => state: $hoststate");
- if ($hoststate !~ /$old_state/i) {
- #disable child
- my $full_action = ($svc_control eq 2);
- #Change device state
- db_log_debug($hdb,"Host changed! $hostname [$hostip] => $hoststate, old: $old_state");
- my $ip_aton=StrToIp($hostip);
- if ($hosttype=~/device/i) {
- do_sql($hdb,'UPDATE devices SET nagios_status="'.$hoststate.'" WHERE id='.$hostid);
- do_sql($hdb,'UPDATE User_auth SET nagios_status="'.$hoststate.'" WHERE deleted=0 AND ip_int='.$ip_aton);
- } else {
- do_sql($hdb,'UPDATE User_auth SET nagios_status="'.$hoststate.'" WHERE id='.$hostid);
- }
- if ($hoststate=~/UP/i) { nagios_host_svc_enable($hostname,1); }
- if ($hoststate=~/SOFTDOWN/i) { if ($svc_control) { nagios_host_svc_disable($hostname,$full_action); } }
- if ($hoststate=~/HARDDOWN/i) {
- if ($svc_control) { nagios_host_svc_disable($hostname,$full_action); }
- if ($device->{nagios_handler}) {
- db_log_info($hdb,"Event handler $device->{nagios_handler} for $hostname [$hostip] => $hoststate found!");
- if ($device->{nagios_handler}=~/restart-port/i) {
- my $run_cmd = "/usr/local/scripts/restart_port_snmp.pl $hostip & ";
- db_log_info($hdb,"Nagios eventhandler restart-port started for ip: $hostip");
- db_log_info($hdb,"Run handler: $run_cmd");
- system($run_cmd);
- }
- }
- }
- }
- }
- close(hoststate);
- };
- if ($@) { log_error("Exception found: $@"); }
- sleep(30);
- }
- } else {
- log_error("Already Running with pid $pid");
- }
- }
- sub usage {
- print "usage: hoststate-monitor.pl (start|stop|status|restart)\n";
- exit(0);
- }
- sub reload {
- print "reload process not implemented.\n";
- }
- sub restart {
- stop;
- run;
- }
|