1 |
+ |
/* |
2 |
+ |
* i-scream central monitoring system |
3 |
+ |
* http://www.i-scream.org.uk |
4 |
+ |
* Copyright (C) 2000-2002 i-scream |
5 |
+ |
* |
6 |
+ |
* This program is free software; you can redistribute it and/or |
7 |
+ |
* modify it under the terms of the GNU General Public License |
8 |
+ |
* as published by the Free Software Foundation; either version 2 |
9 |
+ |
* of the License, or (at your option) any later version. |
10 |
+ |
* |
11 |
+ |
* This program is distributed in the hope that it will be useful, |
12 |
+ |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
+ |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
+ |
* GNU General Public License for more details. |
15 |
+ |
* |
16 |
+ |
* You should have received a copy of the GNU General Public License |
17 |
+ |
* along with this program; if not, write to the Free Software |
18 |
+ |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 |
+ |
*/ |
20 |
+ |
|
21 |
|
//---PACKAGE DECLARATION--- |
22 |
|
|
23 |
|
//---IMPORTS--- |
28 |
|
|
29 |
|
/** |
30 |
|
* Gathers system information then outputs it as XML |
31 |
< |
* Collects data based on properties gained from the configurator |
32 |
< |
* then packages these up using XMLFormatter and outputs them if |
33 |
< |
* the timeout has passed. |
31 |
> |
* Collects data based on properties gained from the |
32 |
> |
* configurator then packages these up using XMLFormatter |
33 |
> |
* and outputs them if the timeout has passed. |
34 |
|
* |
35 |
|
* @author $Author$ |
36 |
|
* @version $Id$ |
44 |
|
//---CONSTRUCTORS--- |
45 |
|
|
46 |
|
/** |
47 |
< |
* Public constructor for the class. Takes in a Config object to gain its |
48 |
< |
* properties from. |
47 |
> |
* Public constructor for the class. Takes in a Config |
48 |
> |
* object to gain its properties from. |
49 |
|
* |
50 |
|
*/ |
51 |
|
public SystemMonitor( Config config ){ |
54 |
|
|
55 |
|
lastCheck = System.currentTimeMillis(); |
56 |
|
sequence = 1; |
37 |
– |
|
38 |
– |
|
39 |
– |
// why oh why wont ultra edit let me put Long in the next line? oh its trying to |
40 |
– |
// correct keywords =| |
41 |
– |
/* |
57 |
|
|
43 |
– |
try { |
44 |
– |
udpcheckInterval = Long.parseLong(config.getProperty("UDPUpdateTime")) * 1000; |
45 |
– |
} |
46 |
– |
catch ( NumberFormatException e ){ |
47 |
– |
System.out.println("The value for UDPUpdateTime is invalid, using a default"); |
48 |
– |
// 5 mins |
49 |
– |
udpcheckInterval = 5000 * 60; |
50 |
– |
} |
51 |
– |
*/ |
52 |
– |
|
53 |
– |
// make the check interval into seconds |
54 |
– |
|
58 |
|
} |
59 |
|
|
60 |
|
//---PUBLIC METHODS--- |
70 |
|
String ip = new String(); |
71 |
|
try { |
72 |
|
host = InetAddress.getLocalHost().getHostName(); |
73 |
< |
ip = InetAddress.getLocalHost().getHostAddress(); |
73 |
> |
ip = InetAddress.getLocalHost().getHostAddress(); |
74 |
|
} catch(UnknownHostException e) { |
75 |
|
System.out.println(e); |
76 |
|
} |
77 |
< |
String date = Long.toString(System.currentTimeMillis()); |
78 |
< |
XMLFormatter xml = new XMLFormatter("packet", "machine_name=\""+host+"\" ip=\""+ip+"\" date=\""+date+"\" seq_no=\""+sequence+"\""); |
77 |
> |
String date = Long.toString(System.currentTimeMillis()); |
78 |
> |
XMLFormatter xml = new XMLFormatter("packet", "machine_name=\""+host+"\" ip=\""+ip+"\" date=\""+date+"\" seq_no=\""+sequence+"\" type=\"data\""); |
79 |
|
|
80 |
< |
// get and decode the data |
81 |
< |
DecodeCPU_TXT details = new DecodeCPU_TXT(); |
80 |
> |
// get and decode the data |
81 |
> |
DecodeCPU_TXT details = new DecodeCPU_TXT(); |
82 |
|
|
83 |
|
// add the decoded info |
84 |
|
xml.addString(details.getItems()); |
82 |
– |
|
83 |
– |
|
84 |
– |
/* |
85 |
– |
// MUST FIX THIS..!!!! |
86 |
– |
try { |
87 |
– |
long updateIn = ( lastCheck + udpcheckInterval )-System.currentTimeMillis(); |
88 |
– |
if ( updateIn > 0 ){ |
89 |
– |
Thread.sleep(updateIn); |
90 |
– |
} |
91 |
– |
else |
92 |
– |
{ |
93 |
– |
Thread.sleep(defaultUpdateTime); |
94 |
– |
} |
95 |
– |
} |
96 |
– |
catch( InterruptedException e ){ |
97 |
– |
System.out.println("Sleep interrupted"); |
98 |
– |
} |
99 |
– |
*/ |
85 |
|
|
86 |
|
// increment sequence. |
87 |
|
sequence++; |
102 |
|
|
103 |
|
//---STATIC ATTRIBUTES--- |
104 |
|
|
105 |
< |
} // class |
105 |
> |
} // class |