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$ |
33 |
|
$fqdn |
34 |
|
$pidfile |
35 |
|
$retry_wait |
36 |
+ |
$ostype |
37 |
+ |
@data |
38 |
|
); |
39 |
|
|
40 |
|
if (@ARGV != 2) { |
47 |
|
$seq_no = 1; |
48 |
|
$retry_wait = 60; |
49 |
|
|
50 |
+ |
# work out our platform, if we can. |
51 |
+ |
$ostype = `uname -s`; |
52 |
+ |
chomp $ostype; |
53 |
+ |
$ostype = "unknown" if not defined $ostype; |
54 |
+ |
|
55 |
|
# write our PID to a file |
56 |
< |
$pidfile = "/var/tmp/ihost.pid"; |
56 |
> |
# use home dir by default |
57 |
> |
#$pidfile = $ENV{"HOME"}; |
58 |
> |
# or drop it in /var/tmp if we can't find HOME |
59 |
> |
$pidfile = "/var/tmp" if not defined $pidfile; |
60 |
> |
$pidfile .= "/.ihost.pid"; |
61 |
|
&write_pid(); |
62 |
|
|
63 |
|
&tcp_configure(); |
259 |
|
} |
260 |
|
|
261 |
|
|
253 |
– |
|
254 |
– |
|
262 |
|
#----------------------------------------------------------------------- |
263 |
|
# send_udp_packet |
264 |
|
# Sends a UDP packet to an i-scream filter. |
267 |
|
#----------------------------------------------------------------------- |
268 |
|
sub send_udp_packet() { |
269 |
|
|
270 |
< |
my(@statgrab) = `./statgrab.pl`; |
271 |
< |
my(%packet); |
272 |
< |
for (my($i) = 0; $i <= $#statgrab; $i++) { |
273 |
< |
$statgrab[$i] =~ /^([^\s]*) (.*)$/; |
274 |
< |
$packet{$1} = $2; |
270 |
> |
my($plugins_dir) = "plugins"; |
271 |
> |
|
272 |
> |
opendir PLUGINS, $plugins_dir; |
273 |
> |
my(@plugins) = readdir PLUGINS; |
274 |
> |
foreach my $plugin (@plugins) { |
275 |
> |
push @data, `$plugins_dir/$plugin $ostype` if -x "$plugins_dir/$plugin" && -f "$plugins_dir/$plugin"; |
276 |
|
} |
277 |
|
|
278 |
+ |
# get some extra data |
279 |
|
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 |
– |
|
280 |
|
my($ip); |
281 |
|
$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; |
282 |
|
|
283 |
< |
<packet seq_no="$seq_no" machine_name="$fqdn" date="$date" type="data" ip="$ip"> |
284 |
< |
<load> |
285 |
< |
<load1>$packet{"packet.load.load1"}</load1> |
286 |
< |
<load5>$packet{"packet.load.load5"}</load5> |
287 |
< |
<load15>$packet{"packet.load.load15"}</load15> |
288 |
< |
</load> |
289 |
< |
<os> |
290 |
< |
<name>$packet{"packet.os.name"}</name> |
291 |
< |
<release>$packet{"packet.os.release"}</release> |
304 |
< |
<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> |
283 |
> |
# add some extra data to the array |
284 |
> |
push(@data, "packet.attributes.seq_no $seq_no"); |
285 |
> |
push(@data, "packet.attributes.machine_name $fqdn"); |
286 |
> |
push(@data, "packet.attributes.date $date"); |
287 |
> |
push(@data, "packet.attributes.type data"); |
288 |
> |
push(@data, "packet.attributes.ip $ip"); |
289 |
> |
|
290 |
> |
# sort the data |
291 |
> |
@data = sort(grep(!/^$/, grep(/^packet\./, @data))); |
292 |
|
|
293 |
< |
EOF |
293 |
> |
# turn the array into some nice XML |
294 |
> |
my($xml) = &make_xml("", ""); |
295 |
|
|
340 |
– |
# Make the packet smaller by stripping out newlines and leading spaces. |
341 |
– |
$xml =~ s/\n\s*//g; |
342 |
– |
|
296 |
|
my($sock) = new IO::Socket::INET ( |
297 |
|
PeerPort => $udp_port, |
298 |
|
PeerAddr => $filter_addr, |
299 |
|
Proto => 'udp' |
300 |
|
) or die "Could not send UDP: $!\n"; |
301 |
< |
|
301 |
> |
|
302 |
|
print $sock $xml or die "Could not send UDP packet: $!\n"; |
303 |
|
close($sock); |
304 |
|
$seq_no++; |
308 |
|
} |
309 |
|
|
310 |
|
|
358 |
– |
|
359 |
– |
|
311 |
|
#----------------------------------------------------------------------- |
312 |
|
# send_tcp_heartbeat |
313 |
|
# Establishes a TCP connection to an i-scream filter. |
391 |
|
return; |
392 |
|
} |
393 |
|
|
394 |
+ |
|
395 |
|
#----------------------------------------------------------------------- |
396 |
|
# write_pid |
397 |
|
# Writes the PID (process ID) of this instance to $pidfile. |
403 |
|
close PID; |
404 |
|
|
405 |
|
return; |
406 |
+ |
} |
407 |
+ |
|
408 |
+ |
#----------------------------------------------------------------------- |
409 |
+ |
# make_xml |
410 |
+ |
# Turns an array of plugins data into an XML string. |
411 |
+ |
#----------------------------------------------------------------------- |
412 |
+ |
sub make_xml() { |
413 |
+ |
my($curlevel, $curline) = @_; |
414 |
+ |
my($xmltemp) = ""; my($curtag) = ""; my($attributes) = ""; |
415 |
+ |
while(1) { |
416 |
+ |
$curline = shift(@data) if $curline eq ""; |
417 |
+ |
return $xmltemp if not defined $curline; |
418 |
+ |
chomp $curline; |
419 |
+ |
# dealing with nest (or attributes) |
420 |
+ |
if($curline =~ /^$curlevel([^\.\s]+\.)/) { |
421 |
+ |
$curtag=$1; |
422 |
+ |
if($curline =~ /^$curlevel$curtag([^\.\s]+)\s+(.*)$/) { |
423 |
+ |
$xmltemp .= &make_xml("$curlevel$curtag", $curline); |
424 |
+ |
} |
425 |
+ |
elsif($curline =~ /^$curlevel$curtag(attributes)\.([^\.\s]+)\s+(.*)$/) { |
426 |
+ |
$attributes .= " $2=\"$3\""; |
427 |
+ |
} |
428 |
+ |
else { |
429 |
+ |
$xmltemp .= &make_xml("$curlevel$curtag", $curline); |
430 |
+ |
} |
431 |
+ |
my($nextline) = $data[0]; chomp $nextline if defined $nextline; |
432 |
+ |
if((defined $nextline) && ($nextline =~ /^$curlevel$curtag/)) { |
433 |
+ |
$curline = ""; |
434 |
+ |
} |
435 |
+ |
else { |
436 |
+ |
$curtag =~ s/(.*)\./$1/; |
437 |
+ |
$xmltemp = "<$curtag$attributes>$xmltemp</$curtag>" unless $curtag eq ""; |
438 |
+ |
return $xmltemp; |
439 |
+ |
} |
440 |
+ |
} |
441 |
+ |
# dealing with value |
442 |
+ |
elsif($curline =~ /^$curlevel([^\.\s]+)\s+(.*)$/) { |
443 |
+ |
$curtag=$1; |
444 |
+ |
$xmltemp=$2; |
445 |
+ |
my($nextline) = $data[0]; chomp $nextline if defined $nextline; |
446 |
+ |
if(defined $nextline && ($nextline =~ /^$curlevel$curtag\./ || $nextline =~ /^$curlevel$curtag\s+/)) { |
447 |
+ |
$curline = ""; |
448 |
+ |
} |
449 |
+ |
else { |
450 |
+ |
$xmltemp = "<$curtag$attributes>$xmltemp</$curtag>" unless $curtag eq ""; |
451 |
+ |
return $xmltemp; |
452 |
+ |
} |
453 |
+ |
} |
454 |
+ |
} |
455 |
|
} |