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.33 by pjm2, Tue Mar 20 12:58:22 2001 UTC vs.
Revision 1.36 by tdb, Wed Nov 14 16:41:30 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 +             @statgrab
37              );
38  
39   if (@ARGV != 2) {
# 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`;
264 <    my(%packet);
265 <    for (my($i) = 0; $i <= $#statgrab; $i++) {
266 <        $statgrab[$i] =~ /^([^\s]*) (.*)$/;
267 <        $packet{$1} = $2;
268 <    }
260 >    @statgrab = `./statgrab.pl`;
261      
262 +    # get some extra data
263      my($date) = time;
271    
272    my($disk_info) = "<disk>";
273    my($i) = 0;
274    while (defined $packet{"packet.disk.p$i.attributes.mount"}) {
275        $disk_info .= "<p$i";
276        $disk_info .= " name=\"" . $packet{"packet.disk.p$i.attributes.name"} . "\"";
277        $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
264      my($ip);
265      $ip = inet_ntoa(scalar(gethostbyname(hostname())) || 'localhost') or $ip = 'localhost';
288
289    # Build the XML packet this way, as we can clearly
290    # see the structure and contents... I like this ;-)
291    # [Note that the server rejects UDP packets that are
292    # larger than 8196 bytes]
293    my($xml) = <<EOF;
266      
267 < <packet seq_no="$seq_no" machine_name="$fqdn" date="$date" type="data" ip="$ip">
268 <    <load>
269 <        <load1>$packet{"packet.load.load1"}</load1>
270 <        <load5>$packet{"packet.load.load5"}</load5>
271 <        <load15>$packet{"packet.load.load15"}</load15>
272 <    </load>
273 <    <os>
274 <        <name>$packet{"packet.os.name"}</name>
275 <        <release>$packet{"packet.os.release"}</release>
276 <        <platform>$packet{"packet.os.platform"}</platform>
305 <        <sysname>$packet{"packet.os.sysname"}</sysname>
306 <        <version>$packet{"packet.os.version"}</version>
307 <        <uptime>$packet{"packet.os.uptime"}</uptime>
308 <    </os>
309 <    <users>
310 <        <count>$packet{"packet.users.count"}</count>
311 <        <list>$packet{"packet.users.list"}</list>
312 <    </users>
313 <    <processes>
314 <        <total>$packet{"packet.processes.total"}</total>
315 <        <sleeping>$packet{"packet.processes.sleeping"}</sleeping>
316 <        <zombie>$packet{"packet.processes.zombie"}</zombie>
317 <        <stopped>$packet{"packet.processes.stopped"}</stopped>
318 <        <cpu>$packet{"packet.processes.cpu"}</cpu>
319 <    </processes>
320 <    <cpu>
321 <        <idle>$packet{"packet.cpu.idle"}</idle>
322 <        <user>$packet{"packet.cpu.user"}</user>
323 <        <kernel>$packet{"packet.cpu.kernel"}</kernel>
324 <        <iowait>$packet{"packet.cpu.iowait"}</iowait>
325 <        <swap>$packet{"packet.cpu.swap"}</swap>
326 <    </cpu>
327 <    <memory>
328 <        <total>$packet{"packet.memory.total"}</total>
329 <        <free>$packet{"packet.memory.free"}</free>
330 <    </memory>
331 <    <swap>
332 <        <total>$packet{"packet.swap.total"}</total>
333 <        <free>$packet{"packet.swap.free"}</free>
334 <    </swap>
335 <    $disk_info
336 < </packet>
337 <
338 < EOF
339 <
340 <    # Make the packet smaller by stripping out newlines and leading spaces.
341 <    $xml =~ s/\n\s*//g;
342 <
267 >    # add some extra data to the array
268 >    push(@statgrab, "packet.attributes.seq_no=$seq_no");
269 >    push(@statgrab, "packet.attributes.machine_name=$fqdn");
270 >    push(@statgrab, "packet.attributes.date=$date");
271 >    push(@statgrab, "packet.attributes.type=data");
272 >    push(@statgrab, "packet.attributes.ip=$ip");
273 >    
274 >    # turn the array into some nice XML
275 >    my($xml) = &make_xml("", "");
276 >    
277      my($sock) = new IO::Socket::INET (
278                                        PeerPort => $udp_port,
279                                        PeerAddr => $filter_addr,
280                                        Proto => 'udp'
281                                       ) or die "Could not send UDP: $!\n";
282 <
282 >    
283      print $sock $xml or die "Could not send UDP packet: $!\n";
284      close($sock);
285      $seq_no++;
# Line 355 | Line 289 | EOF
289   }
290  
291  
358
359
292   #-----------------------------------------------------------------------
293   # send_tcp_heartbeat
294   # Establishes a TCP connection to an i-scream filter.
295   # The heartbeat is used as a guaranteed "I'm alive" delivery mechanism.
296 + # If we need to reconfigure, then we complete the heartbeat before
297 + # doing so.
298   #-----------------------------------------------------------------------
299   sub send_tcp_heartbeat() {
300  
301 +    my ($doReconfigure) = 0;
302 +
303      my($sock) = new IO::Socket::INET(
304                                       PeerAddr => $filter_addr,
305                                       PeerPort => $tcp_port,
# Line 410 | Line 346 | sub send_tcp_heartbeat() {
346      if ($response eq "ERROR\n") {
347          close($sock);
348          print "Server configuration changed.  Reconfiguring with filter manager.\n";
349 <        &tcp_configure();
414 <        return;
349 >        $doReconfigure = 1;
350      }
351      if (!$response eq "OK\n") {
352          close($sock);
# Line 432 | Line 367 | sub send_tcp_heartbeat() {
367      close($sock);
368      print "^";
369      
370 +    &tcp_configure() if $doReconfigure;
371 +    
372      return;
373   }
374  
375 +
376   #-----------------------------------------------------------------------
377   # write_pid
378   # Writes the PID (process ID) of this instance to $pidfile.
# Line 446 | Line 384 | sub write_pid() {
384      close PID;
385      
386      return;
387 + }
388 +
389 + #-----------------------------------------------------------------------
390 + # make_xml
391 + # Turns an array of statgrab data into an XML string.
392 + #-----------------------------------------------------------------------
393 + sub make_xml() {
394 +    my($curlevel, $curline) = @_;
395 +    my($xmltemp) = ""; my($curtag) = ""; my($attributes) = "";
396 +    while(true) {
397 +        $curline = shift(@statgrab) if $curline eq ""; chomp $curline;
398 +        if($curline =~ /^$curlevel([^\.\s]+\.)/) {
399 +            $curtag=$1;
400 +        }
401 +        if($curline =~ /^$curlevel$curtag([^\.\s]+)\s+(.*)$/) {
402 +            $xmltemp .= "<$1$attributes>$2</$1>";
403 +        }
404 +        elsif($curline =~ /^$curlevel$curtag(attributes)\.([^\.=]+)=(.*)$/) {
405 +            $attributes .= " $2=\"$3\"";
406 +        }
407 +        else {
408 +            $xmltemp .= &make_xml("$curlevel$curtag", $curline);
409 +        }
410 +        my($nextline) = $statgrab[0]; chomp $nextline if defined $nextline;
411 +        $curtag =~ s/(.*)\./$1/;                
412 +        if(defined $nextline && $nextline =~ /^$curlevel$curtag\./) {
413 +            $curline = "";
414 +        }
415 +        else {
416 +            $xmltemp = "<$curtag$attributes>$xmltemp</$curtag>" unless $curtag eq "";
417 +            return $xmltemp;
418 +        }
419 +    }
420   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines