Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

arcserve UDP check

Rating
0 votes
Favoured:
0
Current Version
1.0
Last Release Date
2014-06-21
Compatible With
  • Nagios 1.x
  • Nagios 3.x
  • Nagios 4.x
License
GPL
Hits
23033
Files:
FileDescription
get_backupUDP.vbsget_backupUDP.vbs
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
NRPE command script that reads arcserve UDP's internal SQL database, looks for latest backup date and status for all hosts and compare it to the age limit.
I am not programmer, but I needed to monitor UDP backup status and did not find any Nagios plugin out there.
I examined the SQL databace that UDP uses and found table which seems to hold needed information. I did not find any documentation or reference, it is all unsupported guess work.
The user running NRPE service must be given dbreader right to the SQL database "your_UDP_serverARCSERVE_APP".
Constant "Backup_Server" inside script must be set accordingly to your SQL server name.

Copy script to your NRPE plugins directory and add command to nrpe.cfg like this:

command[get_backupUDP]=cscript.exe //nologo //T:60 "C:Program Files (x86)ICWpluginsv2get_backupUDP.vbs"

Sorry I do not know about Nagios versions compatibility.
To Do:
1. The backup time in arcserve database seems to be in GMT timezone while script uses Now() function which returns local timezone! (please help to resolve this)
2. It might be nice to pass age limits by arguments to the script.
3. There is no proper vbs error checking implemented