ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/client/monitors/Makefile
Revision: 1.12
Committed: Sun Mar 9 21:49:13 2003 UTC (21 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.11: +3 -2 lines
Log Message:
Added support for all the new stuff that ihost provides us with. Ideally
this lot needs to be revamped some day, but for now this brings it all back
up to date.

The biggest change is in the Disk monitor. It wasn't overly neat before,
so I've tidied that up, and also added support for inode monitoring.

Created the DiskIO, NetIO, and Paging monitors to support new types of data
we now handle. The first two sprung from the Disk monitor, whilst the last
is pretty normal.

Configuration has been updated to support the new monitors, although I
don't really have a feel for thresholds for the new types of data.

File Contents

# User Rev Content
1 tdb 1.11 # Makefile for uk.org.iscream.cms.server.client.monitors
2 tdb 1.12 # $Id: Makefile,v 1.11 2001/05/29 17:02:34 tdb Exp $
3 tdb 1.1
4     # Config Include
5 tdb 1.11 include ../../../../../../../Config.inc
6 tdb 1.1
7     # Defining Filenames (these will all be built)
8    
9 tdb 1.3 JAVA = CPU__Monitor.java Heartbeat__Monitor.java\
10 tdb 1.4 Memory__Monitor.java Swap__Monitor.java\
11 ajm 1.6 WebFeeder__Monitor.java Disk__Monitor.java\
12 tdb 1.8 Services__Monitor.java Load__Monitor.java\
13 tdb 1.10 Process__Monitor.java Queue__Monitor.java\
14 tdb 1.12 UserCount__Monitor.java DiskIO__Monitor.java\
15     NetIO__Monitor.java Paging__Monitor.java
16 tdb 1.1
17     # Build Rule
18     all : DOBUILD
19     clean : DOCLEAN
20    
21     # Main Include
22     include $(MKINC)