15 lines
646 B
Plaintext
15 lines
646 B
Plaintext
# Run a complete discovery of all devices once every 6 hours
|
|
33 */6 * * * /opt/observium/discovery.php -h all >> /dev/null 2>&1
|
|
|
|
# Run automated discovery of newly added devices every 3 minutes
|
|
*/3 * * * * /opt/observium/discovery.php -h new >> /dev/null 2>&1
|
|
|
|
# Run multithreaded poller wrapper every 5 minutes
|
|
*/5 * * * * /opt/observium/poller-wrapper.py >> /dev/null 2>&1
|
|
|
|
# Run housekeeping script daily for syslog, eventlog and alert log
|
|
13 5 * * * /opt/observium/housekeeping.php -ysel
|
|
|
|
# Run housekeeping script daily for rrds, ports, orphaned entries in the database and performance data
|
|
47 4 * * * /opt/observium/housekeeping.php -yrptb
|