VNag is a framework that makes it easy to develop plugins for Nagios compatible software. You can use VNag to automatically get notified when a new OIDplus version is released. More information about VNag
Example setup using Linux and Icinga2
ln -s /var/www/vnag/plugins/webreader/icinga2.conf /etc/icinga2/conf.d/vnag_webreader.conf
apply Service "example_oidplus_version_check" { import "generic-service" check_command = "vnag_webreader" vars = { // The following page contains a machine-readable "VNag tag" which the VNag "web reader" plugin can read and redirect the output to the Nagios compatible software vnag_webreader_url = "%%ABS_WEB_PATH%%vnag.php" vnag_webreader_password = "%%WEBREADER_PASSWORD%%" vnag_webreader_signPubKey = "%%WEBREADER_PUBKEY%%" } assign where host.name == NodeName }
Example setup using Linux and Icinga2
object CheckCommand "cmd_oidplus" { command = [ "$cmd_oidplus_dir$/%%REL_LOC_PATH%%vnag.sh" ] arguments = { } } apply Service "example_oidplus_version_check" { import "generic-service" check_command = "cmd_oidplus" vars = { cmd_oidplus_dir = "%%SYSTEM_URL%%" } assign where host.name == NodeName }