ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/java/SystemMonitor.java
(Generate patch)

Comparing projects/cms/source/host/java/SystemMonitor.java (file contents):
Revision 1.8 by tdb, Fri Jan 19 00:13:49 2001 UTC vs.
Revision 1.10 by tdb, Sat May 18 18:15:57 2002 UTC

# Line 1 | Line 1
1 + /*
2 + * i-scream central monitoring system
3 + * Copyright (C) 2000-2002 i-scream
4 + *
5 + * This program is free software; you can redistribute it and/or
6 + * modify it under the terms of the GNU General Public License
7 + * as published by the Free Software Foundation; either version 2
8 + * of the License, or (at your option) any later version.
9 + *
10 + * This program is distributed in the hope that it will be useful,
11 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 + * GNU General Public License for more details.
14 + *
15 + * You should have received a copy of the GNU General Public License
16 + * along with this program; if not, write to the Free Software
17 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 + */
19 +
20   //---PACKAGE DECLARATION---
21  
22   //---IMPORTS---
# Line 8 | Line 27 | import java.util.*;
27  
28   /**
29   * Gathers system information then outputs it as XML
30 < * Collects data based on properties gained from the configurator
31 < * then packages these up using XMLFormatter and outputs them if
32 < * the timeout has passed.
30 > * Collects data based on properties gained from the
31 > * configurator then packages these up using XMLFormatter
32 > * and outputs them if the timeout has passed.
33   *
34   * @author  $Author$
35   * @version $Id$
# Line 24 | Line 43 | class SystemMonitor {
43   //---CONSTRUCTORS---
44  
45   /**
46 < * Public constructor for the class. Takes in a Config object to gain its
47 < * properties from.
46 > * Public constructor for the class. Takes in a Config
47 > * object to gain its properties from.
48   *
49   */  
50   public SystemMonitor( Config config ){
# Line 34 | Line 53 | class SystemMonitor {
53          
54          lastCheck = System.currentTimeMillis();
55          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        /*
56          
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        
57      }
58  
59   //---PUBLIC METHODS---
# Line 67 | Line 69 | class SystemMonitor {
69          String ip = new String();
70          try {
71              host = InetAddress.getLocalHost().getHostName();
72 <                    ip = InetAddress.getLocalHost().getHostAddress();
72 >            ip = InetAddress.getLocalHost().getHostAddress();
73          } catch(UnknownHostException e) {
74              System.out.println(e);
75          }
76 <                String date = Long.toString(System.currentTimeMillis());
76 >        String date = Long.toString(System.currentTimeMillis());
77          XMLFormatter xml = new XMLFormatter("packet", "machine_name=\""+host+"\" ip=\""+ip+"\" date=\""+date+"\" seq_no=\""+sequence+"\" type=\"data\"");
78  
79 <            // get and decode the data
80 <            DecodeCPU_TXT details = new DecodeCPU_TXT();
79 >        // get and decode the data
80 >        DecodeCPU_TXT details = new DecodeCPU_TXT();
81  
82          // add the decoded info
83          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        */
84          
85          // increment sequence.
86          sequence++;
# Line 117 | Line 101 | class SystemMonitor {
101  
102   //---STATIC ATTRIBUTES---
103  
104 < } // class
104 > } // class

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines