Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_urlchange.py
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
Plugin takes a URL and extracts content from it using the provided regex. The matching logic looks at the first matching substring so regex must include ().
Matched content can be checked against warning or critical thresholds, or it can be saved to a file to check for changes in subsequent matches.
Examples:
Check if the most recent version(5.8.7 as of upload) of XI has changed:
python3 check_urlchange -u 'https://assets.nagios.com/downloads/nagiosxi/CHANGES-5.TXT' -r "^(d.d.d{1,})" -f change
Check for any changes to the New Glarus Thumbprint calendar:
python3 check_urlchange -u 'https://newglarusbrewing.com/beers/beerschedule' -r '(2021 Thumbprint Beers.*)' -f ng -s
Check to see if a patch fix is released for XI 5.8.7:
python3 check_urlchange -u 'https://assets.nagios.com/downloads/nagiosxi/CHANGES-5.TXT' -r "^5.8.(d)" -c ~:7
Matched content can be checked against warning or critical thresholds, or it can be saved to a file to check for changes in subsequent matches.
Examples:
Check if the most recent version(5.8.7 as of upload) of XI has changed:
python3 check_urlchange -u 'https://assets.nagios.com/downloads/nagiosxi/CHANGES-5.TXT' -r "^(d.d.d{1,})" -f change
Check for any changes to the New Glarus Thumbprint calendar:
python3 check_urlchange -u 'https://newglarusbrewing.com/beers/beerschedule' -r '(2021 Thumbprint Beers.*)' -f ng -s
Check to see if a patch fix is released for XI 5.8.7:
python3 check_urlchange -u 'https://assets.nagios.com/downloads/nagiosxi/CHANGES-5.TXT' -r "^5.8.(d)" -c ~:7
Reviews (0)
Be the first to review this listing!