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

Comparing projects/cms/source/host/generic/statgrab.pl (file contents):
Revision 1.34 by tdb, Mon Feb 26 23:58:42 2001 UTC vs.
Revision 1.36 by tdb, Sat Mar 3 21:26:55 2001 UTC

# Line 109 | Line 109 | sub include_disk() {
109      my($partition_no) = 0;
110      for (my($i) = 0; $i < $#df; $i++) {
111          my($line) = $df[$i];
112 <        $line =~ /^(\/[^\s]*)\s*([0-9]*)\s*([0-9]*)\s*([0-9]*)\s*[^\s]*\s*(\/[^\s]*)\s*/;
112 >        $line =~ /^([^\s]*)\s*([0-9]*)\s*([0-9]*)\s*([0-9]*)\s*[^\s]*\s*(\/[^\s]*)\s*/;
113          # $4 will not match unless everything before it does...
114          if (defined $5) {
115              my ($filesystem, $kbytes, $used, $avail, $mount) = ($1, $2, $3, $4, $5);
# Line 195 | Line 195 | sub include_top() {
195          &print_pair(0, "packet.processes.stopped", $top =~ / ([^\s]+?) stopped/);
196          &print_pair(0, "packet.processes.cpu", $top =~ /([^\s]+?)\s*running/);
197          &print_pair(0, "packet.cpu.idle", $top =~ /([^\s]+?)% idle/);
198        &print_pair(0, "packet.cpu.user", $top =~ /([^\s]+?)% user/);
198          &print_pair(0, "packet.cpu.kernel", $top =~ /([^\s]+?)% system/);
199          &print_pair(0, "packet.cpu.iowait", $top =~ /([^\s]+?)% interrupt/);
200          &print_pair(0, "packet.cpu.swap", $top =~ /([^\s]+?)% swap/);
201 +
202 +        # FreeBSD is a bit different, we need to get user and nice.
203 +        my($user) = 0;
204 +        if($top =~ /([^\s]+?)% user/) { $user += $1; }
205 +        if($top =~ /([^\s]+?)% nice/) { $user += $1; }
206 +        &print_pair(0, "packet.cpu.user", $user);
207          
208          # The following need to be specified in megabytes.
209          # If they are preceeded by a G, then multiply by 1024.  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines