File: README

package info (click to toggle)
taskd 1.1.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,576 kB
  • ctags: 1,141
  • sloc: cpp: 13,971; python: 1,523; sh: 1,080; perl: 610; ansic: 48; makefile: 21
file content (19 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Monitoring Scripts
------------------

These monitoring scripts create and update an rrdtool data file, then generate
several graphs from it.  There are three scripts, named:

  create
  update
  graph

The create script is run once to create the taskd.rrd file.

The update script and graph script are run hourly, at staggered times, and
update the taskd.rrd file.  They are run from cron like this:

  0   * * * * cd /home/taskd/mon && ./update ./taskd.rrd
  30 23 * * * cd /home/taskd/mon && ./graph  ./taskd.rrd

---