Changes between Initial Version and Version 1 of WatchDog


Ignore:
Timestamp:
Apr 24, 2007, 8:40:33 PM (17 years ago)
Author:
Nicolas
Comment:

Converted by an automatic script

Legend:

Unmodified
Added
Removed
Modified
  • WatchDog

    v1 v1  
     1= Watchdogs =
     2
     3A '''watchdog''' is a mechanism for detecting system states (e.g. full filesystems, database failures, etc.) that require immediate attention by project staff. Typically the desired response to such a condition is to notify a pager, sending a short text description.
     4
     5BOINC provides a framework for defining watchdogs:
     6
     7
     8 * A set of '''watchdog scripts''' are run from cron. Each script checks for an error condition, and present, it appends a descriptive line to an error log file. An example is '''wd_nresults_changing.php''', which makes sure that the number of results changes.
     9 * The script '''wd.php''', also run from cron, scans the error log files. If any has been updated since the last run, it sends email to a set of recipients, containing the last line of the file.
     10
     11  These files are in the sched/ directory.