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

Comparing projects/cms/source/host/ihost-perl/ihost.pl (file contents):
Revision 1.32 by pjm2, Fri Mar 16 18:25:59 2001 UTC vs.
Revision 1.40 by tdb, Mon Nov 19 22:31:18 2001 UTC

# Line 5 | Line 5
5   # http://www.i-scream.org.uk
6   #
7   # An all-in-one script to act as an i-scream host on
8 < # a typical Unix/Linux box.  You may adapt the data-gathering
9 < # methods as you see fit.
10 < #  - pjm2@ukc.ac.uk
8 > # a typical Unix/Linux box.
9   #
10   # $Author$
11   # $Id$
# Line 35 | Line 33 | use vars qw (
33               $fqdn
34               $pidfile
35               $retry_wait
36 +             @data
37              );
38  
39   if (@ARGV != 2) {
# Line 45 | Line 44 | $filter_manager_addr = $ARGV[0];
44   $filter_manager_port = $ARGV[1];
45  
46   $seq_no = 1;
47 < $retry_wait = 6;
47 > $retry_wait = 60;
48  
49   # write our PID to a file
50   $pidfile = "/var/tmp/ihost.pid";
# Line 75 | Line 74 | while (1) {
74      else {
75          $delay = $next_tcp;
76      }
77 <    `sleep $delay`;
77 >    sleep $delay;
78   }
79  
80   # we'll probably never get here...
# Line 90 | Line 89 | exit(0);
89   #-----------------------------------------------------------------------
90   sub wait_then_retry() {
91      print "Will retry configuration with filter manager in $retry_wait seconds.\n";
92 <    `sleep $retry_wait`;
92 >    sleep $retry_wait;
93   }
94  
95  
# Line 250 | Line 249 | sub tcp_configure() {
249   }
250  
251  
253
254
252   #-----------------------------------------------------------------------
253   # send_udp_packet
254   # Sends a UDP packet to an i-scream filter.
# Line 260 | Line 257 | sub tcp_configure() {
257   #-----------------------------------------------------------------------
258   sub send_udp_packet() {
259  
260 <    my(@statgrab) = `./statgrab.pl`;
261 <    my(%packet);
262 <    for (my($i) = 0; $i <= $#statgrab; $i++) {
263 <        $statgrab[$i] =~ /^([^\s]*) (.*)$/;
264 <        $packet{$1} = $2;
260 >    my($plugins_dir) = "plugins";
261 >    
262 >    opendir PLUGINS, $plugins_dir;
263 >    my(@plugins) = readdir PLUGINS;
264 >    foreach my $plugin (@plugins) {
265 >        push @data, `$plugins_dir/$plugin` if -x "$plugins_dir/$plugin" && -f "$plugins_dir/$plugin";
266      }
267      
268 +    # get some extra data
269      my($date) = time;
270 +    my($ip);
271 +    $ip = inet_ntoa(scalar(gethostbyname(hostname())) || 'localhost') or $ip = 'localhost';
272      
273 <    my($disk_info) = "<disk>";
274 <    my($i) = 0;
275 <    while (defined $packet{"packet.disk.p$i.attributes.mount"}) {
276 <        $disk_info .= "<p$i";
277 <        $disk_info .= " name=\"" . $packet{"packet.disk.p$i.attributes.name"} . "\"";
278 <        $disk_info .= " kbytes=\"" . $packet{"packet.disk.p$i.attributes.kbytes"} . "\"";
278 <        $disk_info .= " used=\"" . $packet{"packet.disk.p$i.attributes.used"} . "\"";
279 <        $disk_info .= " avail=\"" . $packet{"packet.disk.p$i.attributes.avail"} . "\"";
280 <        $disk_info .= " mount=\"" . $packet{"packet.disk.p$i.attributes.mount"} . "\"";
281 <        $disk_info .= "></p$i>";
282 <        ++$i;
283 <    }
284 <    $disk_info .= "</disk>";
285 <
286 <    my($ip) = inet_ntoa(scalar(gethostbyname(hostname())) || 'localhost');
287 <
288 <    # Build the XML packet this way, as we can clearly
289 <    # see the structure and contents... I like this ;-)
290 <    # [Note that the server rejects UDP packets that are
291 <    # larger than 8196 bytes]
292 <    my($xml) = <<EOF;
273 >    # add some extra data to the array
274 >    push(@data, "packet.attributes.seq_no=$seq_no");
275 >    push(@data, "packet.attributes.machine_name=$fqdn");
276 >    push(@data, "packet.attributes.date=$date");
277 >    push(@data, "packet.attributes.type=data");
278 >    push(@data, "packet.attributes.ip=$ip");
279      
280 < <packet seq_no="$seq_no" machine_name="$fqdn" date="$date" type="data" ip="$ip">
281 <    <load>
282 <        <load1>$packet{"packet.load.load1"}</load1>
283 <        <load5>$packet{"packet.load.load5"}</load5>
284 <        <load15>$packet{"packet.load.load15"}</load15>
285 <    </load>
300 <    <os>
301 <        <name>$packet{"packet.os.name"}</name>
302 <        <release>$packet{"packet.os.release"}</release>
303 <        <platform>$packet{"packet.os.platform"}</platform>
304 <        <sysname>$packet{"packet.os.sysname"}</sysname>
305 <        <version>$packet{"packet.os.version"}</version>
306 <        <uptime>$packet{"packet.os.uptime"}</uptime>
307 <    </os>
308 <    <users>
309 <        <count>$packet{"packet.users.count"}</count>
310 <        <list>$packet{"packet.users.list"}</list>
311 <    </users>
312 <    <processes>
313 <        <total>$packet{"packet.processes.total"}</total>
314 <        <sleeping>$packet{"packet.processes.sleeping"}</sleeping>
315 <        <zombie>$packet{"packet.processes.zombie"}</zombie>
316 <        <stopped>$packet{"packet.processes.stopped"}</stopped>
317 <        <cpu>$packet{"packet.processes.cpu"}</cpu>
318 <    </processes>
319 <    <cpu>
320 <        <idle>$packet{"packet.cpu.idle"}</idle>
321 <        <user>$packet{"packet.cpu.user"}</user>
322 <        <kernel>$packet{"packet.cpu.kernel"}</kernel>
323 <        <iowait>$packet{"packet.cpu.iowait"}</iowait>
324 <        <swap>$packet{"packet.cpu.swap"}</swap>
325 <    </cpu>
326 <    <memory>
327 <        <total>$packet{"packet.memory.total"}</total>
328 <        <free>$packet{"packet.memory.free"}</free>
329 <    </memory>
330 <    <swap>
331 <        <total>$packet{"packet.swap.total"}</total>
332 <        <free>$packet{"packet.swap.free"}</free>
333 <    </swap>
334 <    $disk_info
335 < </packet>
336 <
337 < EOF
338 <
339 <    # Make the packet smaller by stripping out newlines and leading spaces.
340 <    $xml =~ s/\n\s*//g;
341 <
280 >    # sort the data
281 >    @data = sort(@data);
282 >    
283 >    # turn the array into some nice XML
284 >    my($xml) = &make_xml("", "");
285 >    
286      my($sock) = new IO::Socket::INET (
287                                        PeerPort => $udp_port,
288                                        PeerAddr => $filter_addr,
289                                        Proto => 'udp'
290                                       ) or die "Could not send UDP: $!\n";
291 <
291 >    
292      print $sock $xml or die "Could not send UDP packet: $!\n";
293      close($sock);
294      $seq_no++;
# Line 354 | Line 298 | EOF
298   }
299  
300  
357
358
301   #-----------------------------------------------------------------------
302   # send_tcp_heartbeat
303   # Establishes a TCP connection to an i-scream filter.
304   # The heartbeat is used as a guaranteed "I'm alive" delivery mechanism.
305 + # If we need to reconfigure, then we complete the heartbeat before
306 + # doing so.
307   #-----------------------------------------------------------------------
308   sub send_tcp_heartbeat() {
309  
310 +    my ($doReconfigure) = 0;
311 +
312      my($sock) = new IO::Socket::INET(
313                                       PeerAddr => $filter_addr,
314                                       PeerPort => $tcp_port,
# Line 409 | Line 355 | sub send_tcp_heartbeat() {
355      if ($response eq "ERROR\n") {
356          close($sock);
357          print "Server configuration changed.  Reconfiguring with filter manager.\n";
358 <        &tcp_configure();
413 <        return;
358 >        $doReconfigure = 1;
359      }
360      if (!$response eq "OK\n") {
361          close($sock);
# Line 431 | Line 376 | sub send_tcp_heartbeat() {
376      close($sock);
377      print "^";
378      
379 +    &tcp_configure() if $doReconfigure;
380 +    
381      return;
382   }
383  
384 +
385   #-----------------------------------------------------------------------
386   # write_pid
387   # Writes the PID (process ID) of this instance to $pidfile.
# Line 445 | Line 393 | sub write_pid() {
393      close PID;
394      
395      return;
396 + }
397 +
398 + #-----------------------------------------------------------------------
399 + # make_xml
400 + # Turns an array of plugins data into an XML string.
401 + #-----------------------------------------------------------------------
402 + sub make_xml() {
403 +    my($curlevel, $curline) = @_;
404 +    my($xmltemp) = ""; my($curtag) = ""; my($attributes) = "";
405 +    while(1) {
406 +        $curline = shift(@data) if $curline eq ""; chomp $curline;
407 +        if($curline =~ /^$curlevel([^\.\s]+\.)/) {
408 +            $curtag=$1;
409 +        }
410 +        if($curline =~ /^$curlevel$curtag([^\.\s]+)\s+(.*)$/) {
411 +            $xmltemp .= "<$1$attributes>$2</$1>";
412 +        }
413 +        elsif($curline =~ /^$curlevel$curtag(attributes)\.([^\.=]+)=(.*)$/) {
414 +            $attributes .= " $2=\"$3\"";
415 +        }
416 +        else {
417 +            $xmltemp .= &make_xml("$curlevel$curtag", $curline);
418 +        }
419 +        my($nextline) = $data[0]; chomp $nextline if defined $nextline;
420 +        $curtag =~ s/(.*)\./$1/;                
421 +        if((defined $nextline) && ($nextline =~ /^$curlevel$curtag\./)) {
422 +            $curline = "";
423 +        }
424 +        else {
425 +            $xmltemp = "<$curtag$attributes>$xmltemp</$curtag>" unless $curtag eq "";
426 +            return $xmltemp;
427 +        }
428 +    }
429   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines