CURRENT CONFIGURATION: Linux OpenSuSe, Nagios 3.2.3, NRPE; Windows 2003R2 x64 server, NSClient++ 0.3.9.330 2011-09-02
OBJECTIVE: Monitor MSSQL backup, IIS logs replication with Nagios. Check FOLDER with files (MSSQL backup, IIS logs, S3 logs, etc.). Send WARNING if files are older than some hours.
SOLUTION:
NRPE has to work on Nagios server and on Windows client computer with NSClient++.
Nagios server command.cfg file:
NRPE has to work on Nagios server and on Windows client computer with NSClient++.
Nagios server command.cfg file:
define command{ command_name check_nrpe_files_written command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c CheckFiles -a "path=$ARG1$" "pattern=$ARG2$" "filter=written gt -$ARG3$" truncate=4096 "master-syntax=files: %total%" max-dir-depth=$ARG4$ MinWarn=0 } define command{ command_name check_nrpe_files_creation command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c CheckFiles -a "path=$ARG1$" "pattern=$ARG2$" "filter=creation gt -$ARG3$" truncate=4096 "master-syntax=files: %total%" max-dir-depth=$ARG4$ MinWarn=0 }
Nagios server somename.cfg file examples:
define service{
...
check_command check_nrpe_files_creation!F:\\Backup\\SERVER01\\mssql\\backup\\default\\full!*.bkz!30h!0
normal_check_interval 720
}
define service{
...
check_command check_nrpe_files_creation!F:\\Backup\\SERVER06\\ServiceDesk\\backup!*.data!30h!0
normal_check_interval 720
}
define service{
...
check_command check_nrpe_files_creation!F:\\backup\\SERVER01!*-exchange_1_storage_group.bkf!8d!0
normal_check_interval 1440
}
define service{
...
check_command check_nrpe_files_written!D:\\Logs\\IISLogs!*WEB01*.log!6h!4
normal_check_interval 180
}
define service{
...
check_command check_nrpe_files_written!D:\\Replica\\UploadCopy\\s3!LastReplication.log!30h!0
normal_check_interval 720
}
NSClient++ NSC.ini file:
[modules] NRPEListener.dll [NRPE] allow_arguments=1 allow_nasty_meta_chars=1
Big thanks to NSClient++ author for program and excellent support.