~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/watchdog.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require_once("docutil.php");
3
 
page_head("Watchdogs");
4
 
echo "
5
 
 
6
 
<p>
7
 
A <b>watchdog</b> is a mechanism for detecting system states
8
 
(e.g. full filesystems, database failures, etc.)
9
 
that require immediate attention by project staff.
10
 
Typically the desired response to such a condition is
11
 
to notify a pager, sending a short text description.
12
 
 
13
 
<p>
14
 
BOINC provides a framework for defining watchdogs:
15
 
 
16
 
<ul>
17
 
<li>
18
 
A set of <b>watchdog scripts</b> are run from cron.
19
 
Each script checks for an error condition,
20
 
and present, it appends a descriptive line to an error log file.
21
 
An example is <b>wd_nresults_changing.php</b>,
22
 
which makes sure that the number of results changes.
23
 
 
24
 
<li>
25
 
The script <b>wd.php</b>, also run from cron,
26
 
scans the error log files.
27
 
If any has been updated since the last run,
28
 
it sends email to a set of recipients,
29
 
containing the last line of the file.
30
 
 
31
 
</ul>
32
 
 
33
 
These files are in the sched/ directory.
34
 
";
35
 
page_tail();
36
 
?>