| 21 |
|
# You'd be silly not to use this ;) |
| 22 |
|
use strict; |
| 23 |
|
|
| 24 |
+ |
# Path's |
| 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"; |
| 30 |
+ |
|
| 31 |
|
# Run the following components: - |
| 32 |
|
&print_ident(); |
| 33 |
|
&include_osver(); |
| 34 |
+ |
&include_uptime(); |
| 35 |
|
&include_users(); |
| 36 |
|
&include_top(); |
| 37 |
|
&include_disk(); |
| 63 |
|
|
| 64 |
|
if (!defined $value) { |
| 65 |
|
if ($type) { |
| 66 |
< |
$value = 0; |
| 66 |
> |
$value = "0.00"; |
| 67 |
|
} |
| 68 |
|
else { |
| 69 |
|
$value = "unknown"; |
| 82 |
|
sub include_disk() { |
| 83 |
|
|
| 84 |
|
# Run the df program. |
| 85 |
< |
my(@df) = `df -ak`; |
| 85 |
> |
my(@df) = `$dfbin -ak`; |
| 86 |
|
|
| 87 |
|
# Go through each line of the program, looking for each thing we want. |
| 88 |
|
my($partition_no) = 0; |
| 108 |
|
sub include_users() { |
| 109 |
|
|
| 110 |
|
# Find out all users on this machine. |
| 111 |
< |
my($users) = `users`; |
| 112 |
< |
my(@users) = split(/\s+/, $users); |
| 113 |
< |
|
| 114 |
< |
my($users_count) = $#users + 1; |
| 111 |
> |
my($users) = `$usersbin`; |
| 112 |
> |
$users = "\n" unless defined $users; |
| 113 |
> |
chop $users; |
| 114 |
> |
my($users_count) = 0; |
| 115 |
> |
$users_count++ while $users =~ /\w+/g; |
| 116 |
|
my($users_list) = $users; |
| 117 |
|
|
| 118 |
|
&print_pair(1, "packet.users.count", $users_count); |
| 125 |
|
sub include_top() { |
| 126 |
|
|
| 127 |
|
# Find out some numbers from top. |
| 128 |
< |
my(@top) = `top -d2 -s1 0`; |
| 128 |
> |
my(@top) = `$topbin -d2 -s1 0`; |
| 129 |
|
my($top) = join(" ", @top); |
| 130 |
|
$top =~ s/\n//g; |
| 131 |
|
|
| 142 |
|
&print_pair(1, "packet.cpu.kernel", $top =~ /([^\s]+?)% kernel/); |
| 143 |
|
&print_pair(1, "packet.cpu.iowait", $top =~ /([^\s]+?)% iowait/); |
| 144 |
|
&print_pair(1, "packet.cpu.swap", $top =~ /([^\s]+?)% swap/); |
| 145 |
< |
&print_pair(1, "packet.memory.real", $top =~ /([^\s]+?)[MG] real/); |
| 146 |
< |
&print_pair(1, "packet.memory.free", $top =~ /([^\s]+?)[MG] free/); |
| 147 |
< |
&print_pair(1, "packet.memory.swap_in_use", $top =~ /([^\s]+?)[MG] swap in use/); |
| 148 |
< |
&print_pair(1, "packet.memory.swap_free", $top =~ /([^\s]+?)[MG] swap free/); |
| 149 |
< |
|
| 145 |
> |
|
| 146 |
> |
# The following need to be specified in megabytes. |
| 147 |
> |
# If they are preceeded by a G, then multiply by 1024. |
| 148 |
> |
|
| 149 |
> |
$top =~ /([^\s]+?)([MG]) real/; |
| 150 |
> |
my($real) = $1; |
| 151 |
> |
$real*=1024 if $2 eq "G"; |
| 152 |
> |
&print_pair(1, "packet.memory.real", $real); |
| 153 |
> |
|
| 154 |
> |
$top =~ /([^\s]+?)([MG]) free/; |
| 155 |
> |
my($free) = $1; |
| 156 |
> |
$free*=1024 if $2 eq "G"; |
| 157 |
> |
&print_pair(1, "packet.memory.free", $free); |
| 158 |
> |
|
| 159 |
> |
$top =~ /([^\s]+?)([MG]) swap in use/; |
| 160 |
> |
my($swap_in_use) = $1; |
| 161 |
> |
$swap_in_use*=1024 if $2 eq "G"; |
| 162 |
> |
# DO NOT print this one out... save it for in a moment... |
| 163 |
> |
|
| 164 |
> |
$top =~ /([^\s]+?)([MG]) swap free/; |
| 165 |
> |
my($swap_free) = $1; |
| 166 |
> |
$swap_free*=1024 if $2 eq "G"; |
| 167 |
> |
&print_pair(1, "packet.memory.swap_free", $swap_free); |
| 168 |
> |
|
| 169 |
> |
# AJ requested total swap instead of swap_in_use, so here we go! |
| 170 |
> |
&print_pair(1, "packet.memory.swap_total", $swap_free + $swap_in_use); |
| 171 |
|
} |
| 172 |
|
|
| 173 |
|
# sub to get details of the machine's operating system. |
| 176 |
|
# Find out details about the operating system |
| 177 |
|
# If these values remain undefined, then the print_pair |
| 178 |
|
# function shall show the value to be the string "unknown". |
| 179 |
< |
my($os_name) = `uname -s`; |
| 180 |
< |
my($os_release) = `uname -r`; |
| 181 |
< |
my($os_platform) = `uname -m`; |
| 182 |
< |
my($os_sysname) = `uname -n`; |
| 183 |
< |
my($os_version) = `uname -v`; |
| 179 |
> |
my($os_name) = `$unamebin -s`; |
| 180 |
> |
my($os_release) = `$unamebin -r`; |
| 181 |
> |
my($os_platform) = `$unamebin -m`; |
| 182 |
> |
my($os_sysname) = `$unamebin -n`; |
| 183 |
> |
my($os_version) = `$unamebin -v`; |
| 184 |
|
|
| 185 |
|
&print_pair(0, "packet.os.name", $os_name); |
| 186 |
|
&print_pair(0, "packet.os.release", $os_release); |
| 187 |
|
&print_pair(0, "packet.os.platform", $os_platform); |
| 188 |
|
&print_pair(0, "packet.os.sysname", $os_sysname); |
| 189 |
|
&print_pair(0, "packet.os.version", $os_version); |
| 190 |
+ |
|
| 191 |
+ |
} |
| 192 |
+ |
|
| 193 |
+ |
# sub to get system uptime. |
| 194 |
+ |
sub include_uptime() { |
| 195 |
+ |
|
| 196 |
+ |
# Need a regexp guru to strip the junk on this line |
| 197 |
+ |
my($uptime) = `$uptimebin`; |
| 198 |
+ |
|
| 199 |
+ |
&print_pair(0, "packet.os.uptime", $uptime); |
| 200 |
|
|
| 201 |
< |
} |
| 201 |
> |
} |