| 21 |
|
# You'd be silly not to use this ;) |
| 22 |
|
use strict; |
| 23 |
|
|
| 24 |
< |
# Paths |
| 25 |
< |
my($topbin) = "/usr/local/sbin/top"; |
| 26 |
< |
my($dfbin) = "/usr/bin/df"; |
| 27 |
< |
my($usersbin) = "/usr/ucb/users"; |
| 28 |
< |
my($unamebin) = "/usr/bin/uname"; |
| 29 |
< |
my($uptimebin) = "/usr/bin/uptime"; |
| 24 |
> |
# Have to hope this will work really. |
| 25 |
> |
my($ostype) = `uname -s`; chop($ostype); |
| 26 |
|
|
| 27 |
+ |
# Decide which paths we should use. |
| 28 |
+ |
my($topbin); my($dfbin); my($usersbin); my($unamebin); my($uptimebin); |
| 29 |
+ |
|
| 30 |
+ |
if ($ostype eq "SunOS") { |
| 31 |
+ |
# covers: Solaris 8 |
| 32 |
+ |
$topbin = "/usr/local/sbin/top -d2 -s1 0"; |
| 33 |
+ |
$dfbin = "/usr/bin/df"; |
| 34 |
+ |
$usersbin = "/usr/ucb/users"; |
| 35 |
+ |
$unamebin = "/usr/bin/uname"; |
| 36 |
+ |
$uptimebin = "/usr/bin/uptime"; |
| 37 |
+ |
} |
| 38 |
+ |
elsif ($ostype eq "Linux") { |
| 39 |
+ |
# covers: Debian r2.2 |
| 40 |
+ |
$topbin = "/usr/bin/top -d1 -n0 -b"; |
| 41 |
+ |
$dfbin = "/bin/df"; |
| 42 |
+ |
$usersbin = "/usr/bin/users"; |
| 43 |
+ |
$unamebin = "/bin/uname"; |
| 44 |
+ |
$uptimebin = "/usr/bin/uptime"; |
| 45 |
+ |
} |
| 46 |
+ |
elsif ($ostype eq "FreeBSD") { |
| 47 |
+ |
# covers: FreeBSD 4.2-STABLE |
| 48 |
+ |
$topbin = "/usr/bin/top -d2 -s1 0"; |
| 49 |
+ |
$dfbin = "/bin/df"; |
| 50 |
+ |
$usersbin = "/usr/bin/users"; |
| 51 |
+ |
$unamebin = "/usr/bin/uname"; |
| 52 |
+ |
$uptimebin = "/usr/bin/uptime"; |
| 53 |
+ |
} |
| 54 |
+ |
else { |
| 55 |
+ |
print "statgrab.pl Error: Unable to identify system type - \"$ostype\".\n"; |
| 56 |
+ |
print "\"uname -s\" does not report one of the following known types;\n"; |
| 57 |
+ |
print " SunOS, Linux, FreeBSD\n"; |
| 58 |
+ |
exit(1); |
| 59 |
+ |
} |
| 60 |
+ |
|
| 61 |
|
# Run the following components: - |
| 62 |
|
&print_ident(); |
| 63 |
|
&include_osver(); |
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 45 |
– |
|
| 46 |
– |
|
| 47 |
– |
|
| 48 |
– |
|
| 75 |
|
# prints out an identifier for this version of statgrab.pl |
| 76 |
|
# the host should check this when reading data |
| 77 |
|
# means the host must be checked and updated to work with newer versions. |
| 146 |
|
sub include_top() { |
| 147 |
|
|
| 148 |
|
# Find out some numbers from top. |
| 149 |
< |
my(@top) = `$topbin -d2 -s1 0`; |
| 149 |
> |
my(@top) = `$topbin`; |
| 150 |
|
my($top) = join(" ", @top); |
| 151 |
|
$top =~ s/\n//g; |
| 152 |
|
|
| 127 |
– |
&print_pair(0, "packet.load.load1", $top =~ /load averages:\s*([^\s]+?),/); |
| 128 |
– |
&print_pair(0, "packet.load.load5", $top =~ /load averages:\s*.+?,\s*([^\s]+?),/); |
| 129 |
– |
&print_pair(0, "packet.load.load15", $top =~ /load averages:\s*.+?,\s*.+?,\s*([^\s]+?)\s/); |
| 153 |
|
&print_pair(0, "packet.processes.total", $top =~ /([^\s]+?) processes:/); |
| 154 |
|
&print_pair(0, "packet.processes.sleeping", $top =~ / ([^\s]+?) sleeping/); |
| 155 |
|
&print_pair(0, "packet.processes.zombie", $top =~ / ([^\s]+?) zombie/); |
| 230 |
|
|
| 231 |
|
# grab the uptime |
| 232 |
|
my($uptime) = `$uptimebin`; |
| 233 |
+ |
|
| 234 |
+ |
&print_pair(0, "packet.load.load1", $uptime =~ /load average.?:\s*([^\s]+?),/); |
| 235 |
+ |
&print_pair(0, "packet.load.load5", $uptime =~ /load average.?:\s*.+?,\s*([^\s]+?),/); |
| 236 |
+ |
&print_pair(0, "packet.load.load15", $uptime =~ /load average.?:\s*.+?,\s*.+?,\s*([^\s]+)/); |
| 237 |
|
|
| 238 |
|
# work out the days, hours, and minutes |
| 239 |
|
|