bin/0040755000175500000240000000000010104176311010254 5ustar djhstaffbin/check-Linux0100755000175500000240000000531010103460735012355 0ustar djhstaff#!/usr/bin/perl # Check Load $loadavg=`/usr/bin/uptime`; chomp $loadavg; $loadavg =~ s/.*: //; $loadavg =~ s/,//g; $line1="load1 load5 load15"; $line2=$loadavg; # Check Disks @df=`df -k`; for (@df) { $_ =~ /.*?(\d+)\%\s+(\/\S*)/; my $dsk = $2; my $per = $1; if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/dev/shm' ) { $line1 .= " disk-$dsk"; $line2 .= " $per"; } } ## Check process count $numproc=`ps ax | wc -l`; chomp $numproc; $numproc =~ s/\s+//; $line1 .= " numproc-total"; $line2 .= " $numproc"; ## Check process count $numproc=`ps auxww | awk '\$1 == "httpd" || \$1 == "apache" {print}' | grep -c /httpd`; chomp $numproc; $numproc =~ s/\s+//; if( $numproc > 0 ) { $line1 .= " numproc-httpd"; $line2 .= " $numproc"; } ## Check process count #$numproc=`ps auxww | grep -c httpsd\$`; #chomp $numproc; #$numproc =~ s/\s+//; #if( $numproc > 0 ) { # $line1 .= " numproc-httpsd"; # $line2 .= " $numproc"; #} ## Check process count $numproc=`ps auxww | awk '\$1 == "mysql" || \$1 == "#27" {print}' | grep -c /mysqld`; chomp $numproc; $numproc =~ s/\s+//; if( $numproc > 0 ) { $line1 .= " numproc-mysqld"; $line2 .= " $numproc"; } ## Sendmail count $numsuccess=`grep -c 'sendmail.*Sent' /var/log/maillog`; chomp $numsuccess; $numsuccess =~ s/\s+//; $numdeferral=`grep -c 'sendmail.*Deferred:' /var/log/maillog`; chomp $numdeferral; $numdeferral =~ s/\s+//; #$numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`; #chomp $numfailure; $numfailure =~ s/\s+//; if( $numsuccess > 0 || $numdeferral > 0 ) { $line1 .= " sendmail-success sendmail-deferral"; $line2 .= " $numsuccess $numdeferral"; } $numimapd=`grep -c 'imapd.*Login user=' /var/log/maillog`; chomp $numimapd; $numimapd =~ s/\s+//; $numpop3d=`grep -c 'POP login by user' /var/log/maillog`; chomp $numpop3d; $numpop3d =~ s/\s+//; if( $numimapd > 0 || $numpop3d > 0 ) { $line1 .= " connect-imapd connect-pop3d"; $line2 .= " $numimapd $numpop3d"; } ##@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`; ##foreach $n (0 .. @mems) { chomp $mems[$n]; } ##$line1 .= " memtotal meminuse vmtotal vminuse"; ### Actually, vminuse = vmtotal - vmFREE ;) ##$mems[3] = $mems[2] - $mems[3]; ##$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]"; #@mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`; #foreach $n (0 .. @mems) { chomp $mems[$n]; } #foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; } #$line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache"; #$line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]"; # Print out lines print $line1, "\n"; print $line2, "\n"; bin/check-FreeBSD0100755000175500000240000000624510100252324012466 0ustar djhstaff#!/usr/bin/perl # Check Load $loadavg=`/sbin/sysctl vm.loadavg`; chomp $loadavg; $loadavg =~ s/vm.loadavg: { //; $loadavg =~ s/ }//; $line1="load1 load5 load15"; $line2=$loadavg; # Check Disks @df=`df -k`; for (@df) { $_ =~ /.*?(\d+)\%\s+(\/\S*)/; my $dsk = $2; my $per = $1; if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/usr/compat/linux/proc' ) { $line1 .= " disk-$dsk"; $line2 .= " $per"; } } # Check process count $numproc=`ps ax | wc -l`; chomp $numproc; $numproc =~ s/\s+//; $line1 .= " numproc-total"; $line2 .= " $numproc"; # Check process count $numproc=`ps auxww | awk '\$1 == "www" || \$1 == "apache" {print}' | grep httpd | wc -l`; chomp $numproc; $numproc =~ s/\s+//; if( $numproc > 0 ) { $line1 .= " numproc-httpd"; $line2 .= " $numproc"; } # Check process count $numproc=`ps auxww | awk '\$1 == "www" || \$1 == "psaadm" {print}' | grep httpsd | wc -l`; chomp $numproc; $numproc =~ s/\s+//; if( $numproc > 0 ) { $line1 .= " numproc-httpsd"; $line2 .= " $numproc"; } # Check process count $numproc=`ps -U mysql | grep mysqld | wc -l`; chomp $numproc; $numproc =~ s/\s+//; if( $numproc > 0 ) { $line1 .= " numproc-mysqld"; $line2 .= " $numproc"; } # Qmail count $numsuccess=`grep qmail:.\*delivery.\*success: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null| wc -l`; chomp $numsuccess; $numsuccess =~ s/\s+//; $numdeferral=`grep qmail:.\*delivery.\*deferral: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`; chomp $numdeferral; $numdeferral =~ s/\s+//; $numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`; chomp $numfailure; $numfailure =~ s/\s+//; #if( $numsuccess > 0 || $numdeferral > 0 || $numfailure > 0 ) { $line1 .= " qmail-success qmail-deferral qmail-failure"; $line2 .= " $numsuccess $numdeferral $numfailure"; #} $numimapd=`grep "imapd: Connection" /usr/local/psa/var/log/maillog | wc -l`; chomp $numimapd; $numimapd =~ s/\s+//; $numpop3d=`grep "pop3d: Connection" /usr/local/psa/var/log/maillog | wc -l`; chomp $numpop3d; $numpop3d =~ s/\s+//; if( $numimapd > 0 || $numpop3d > 0 ) { $line1 .= " connect-imapd connect-pop3d"; $line2 .= " $numimapd $numpop3d"; } #@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`; #foreach $n (0 .. @mems) { chomp $mems[$n]; } #$line1 .= " memtotal meminuse vmtotal vminuse"; ## Actually, vminuse = vmtotal - vmFREE ;) #$mems[3] = $mems[2] - $mems[3]; #$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]"; @mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`; foreach $n (0 .. @mems) { chomp $mems[$n]; } foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; } $line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache"; $line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]"; # Network @netstat=`netstat -inb`; for (@netstat) { my @stat = split(/\s+/, $_); if( $_ !~ /^lo\d/ && $stat[2] =~ /^$/ ) { if( $stat[4] > 0 || $stat[6] > 0 ) { $line1 .= " $stat[0]-Ibytes $stat[0]-Obytes"; $line2 .= " $stat[6] $stat[9]"; } } } # Print out lines print $line1, "\n"; print $line2, "\n"; bin/install-key0100755000175500000240000000012010070345225012430 0ustar djhstaff#!/bin/sh cat /root/.ssh/pinky.pub | ssh root@$1 "cat >> .ssh/authorized_keys" bin/install-check-FreeBSD0100755000175500000240000000021310070346252014131 0ustar djhstaff#!/bin/sh ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin scp -i /root/.ssh/pinky bin/check-FreeBSD root@$1:/usr/local/sc/bin/ bin/install-check-Linux0100755000175500000240000000021110073563410014014 0ustar djhstaff#!/bin/sh ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin scp -i /root/.ssh/pinky bin/check-Linux root@$1:/usr/local/sc/bin/ data-in/0040755000175500000240000000000010146731160011026 5ustar djhstaffdata-in/Linux_staging_2004111704050100644000175500000240000000016610146621120015046 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 24 0 data-in/Linux_psa1_2004111704050100644000175500000240000000011310146621120014246 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.14 0.28 0.12 4 26 231 data-in/Linux_r1z_2004111704050100644000175500000240000000030210146621121014117 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.89 0.93 0.35 84 34 23 126 16 3 1 1 0 2 data-in/Linux_r1m2_2004111704050100644000175500000240000000031210146621120014164 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.02 0.08 0.08 86 81 34 132 20 3 1606 738 36 997 data-in/Linux_r1m1_2004111704050100644000175500000240000000031210146621120014163 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.08 0.14 0.16 69 72 29 147 32 3 575 299 18 1708 data-in/Linux_r1a1_2004111704050100644000175500000240000000027510146621124014163 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.98 0.98 0.49 83 38 15 341 26 7654 4369 385 35903 data-in/Linux_r1a_2004111704050100644000175500000240000000031510146621124014075 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.88 1.52 0.97 91 32 27 186 20 21 5106 4076 85 6856 data-in/Linux_streamguys1_2004111704050100644000175500000240000000022310146621121015671 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.44 0.54 0.58 49 60 630 49 8 3 0 data-in/Linux_mnode_2004111704050100644000175500000240000000022410146621121014510 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.60 0.89 0.53 78 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111704050100644000175500000240000000022510146621120014757 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.03 0.00 19 52 501 141 15 3 0 data-in/Linux_hwnode3_2004111704050100644000175500000240000000022510146621121014756 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.39 0.81 0.90 73 17 837 101 27 3 0 data-in/FreeBSD_mb2_2004111704050100644000175500000240000000000010146621114014173 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704050100644000175500000240000000061110146621116014232 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.02 0.03 0.00 9 0 0 2 0 75 10 8 1 6 0 273 1 152 23408640 158674944 232095744 1551421440 140197888 1957971122 1531140749 data-in/FreeBSD_psa4_2004111704050100644000175500000240000000053510146621121014375 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 103992784 122644042 data-in/FreeBSD_psa3_2004111704050100644000175500000240000000062710146621121014376 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 1.26 1.28 1.23 21 2 10 28 2 140 34 9 1 12725 23507 7805 2429 67428 4448256 351891456 1101217792 566853632 74022912 1241077552 1455077272 data-in/FreeBSD_psa2_2004111704050100644000175500000240000000063110146621121014370 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.01 0.15 0.14 13 0 1 34 0 128 69 7 1 13078 17554 56107 500 6167 1335971840 297816064 345042944 110354432 17264640 1811408573 2515647311 data-in/FreeBSD_pinky_2004111704050100644000175500000240000000056610146621120014663 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes 0.04 0.45 0.59 71 13 31 52 75 310 10 14 4 0 0 12263424 170328064 744775680 72097792 43937792 828846410 3646748722 11 0 data-in/Linux_mb_2004111704050100644000175500000240000000015510146621120014006 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.42 0.35 0.14 13 16 80 15 1 data-in/Linux_r1q_2004111704050100644000175500000240000000027610146621121014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.62 1.85 1.65 89 80 42 153 20 11771 5997 186 29021 data-in/Linux_r1f_2004111704050100644000175500000240000000027410146621126014110 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.14 1.21 1.25 87 85 46 218 20 8544 12813 15 8672 data-in/Linux_steve_2004111704050100644000175500000240000000011310146621122014532 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2363 data-in/Linux_hwnode2_2004111704050100644000175500000240000000022510146621121014755 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.08 0.14 0.09 81 15 767 233 23 4 0 data-in/Linux_mb_2004111704100100644000175500000240000000015510146621574014017 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.08 0.23 0.14 13 16 80 15 1 data-in/Linux_staging_2004111704100100644000175500000240000000016610146621574015057 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 114 24 0 data-in/Linux_psa1_2004111704100100644000175500000240000000011310146621573014256 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.01 0.10 0.08 4 26 230 data-in/Linux_r1z_2004111704100100644000175500000240000000030510146621600014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.44 1.72 0.82 84 34 23 125 16 3 19 17 2 24 data-in/Linux_r1q_2004111704100100644000175500000240000000027610146621577014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.21 1.50 1.54 89 80 42 154 20 11801 6005 187 29079 data-in/Linux_r1m2_2004111704100100644000175500000240000000031310146621575014177 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.05 0.07 0.08 86 81 34 131 20 3 1674 772 37 1035 data-in/Linux_r1m1_2004111704100100644000175500000240000000031210146621575014175 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.08 0.12 0.14 69 72 29 146 32 3 593 313 18 1775 data-in/Linux_r1a1_2004111704100100644000175500000240000000026310146621575014166 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.57 1.45 0.83 83 34 14 132 19 8 16 0 42 data-in/Linux_r1a_2004111704100100644000175500000240000000031510146621600014070 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.14 1.29 1.01 91 32 27 183 20 21 5125 4098 85 6882 data-in/Linux_streamguys1_2004111704100100644000175500000240000000022310146621576015703 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.68 1.58 1.00 49 60 638 50 8 3 0 data-in/Linux_steve_2004111704100100644000175500000240000000011310146621576014543 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2363 data-in/Linux_mnode_2004111704100100644000175500000240000000022410146621576014522 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.62 1.27 0.78 79 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111704100100644000175500000240000000022510146621575014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.27 0.11 19 52 501 141 15 3 0 data-in/Linux_hwnode3_2004111704100100644000175500000240000000022410146621574014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.82 0.99 0.96 73 17 790 95 27 3 0 data-in/Linux_hwnode2_2004111704100100644000175500000240000000022510146621576014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.36 0.17 0.11 81 15 763 233 23 4 0 data-in/FreeBSD_mb2_2004111704100100644000175500000240000000000010146621571014176 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704100100644000175500000240000000061110146621574014236 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 155 22224896 158752768 233254912 1551368192 140197888 1958350765 1535658827 data-in/FreeBSD_psa4_2004111704100100644000175500000240000000053510146621575014406 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 104001544 122652446 data-in/FreeBSD_psa3_2004111704100100644000175500000240000000062710146621575014407 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 1.07 1.20 1.20 21 2 10 28 2 133 31 9 1 12763 23619 7827 2429 67551 4939776 315334656 1098469376 595861504 83832832 1242721164 1462627690 data-in/FreeBSD_psa2_2004111704100100644000175500000240000000063110146621574014400 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.01 0.07 0.09 13 0 1 34 0 131 69 7 1 13110 17617 56212 500 6175 1330176000 298717184 346738688 115781632 15036416 1818125688 2586862393 data-in/FreeBSD_pinky_2004111704100100644000175500000240000000056610146621575014675 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes 0.20 0.40 0.55 71 13 31 52 75 308 10 14 4 0 0 12337152 170213376 747352064 74117120 39383040 834042194 3652072719 11 0 data-in/Linux_r1f_2004111704100100644000175500000240000000027410146621607014110 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.16 1.20 1.24 87 85 46 214 20 8563 12874 15 8675 data-in/Linux_mb_2004111704150100644000175500000240000000015510146622250014014 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.01 0.09 0.09 13 16 86 15 1 data-in/Linux_staging_2004111704150100644000175500000240000000016610146622247015062 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 114 24 0 data-in/Linux_psa1_2004111704150100644000175500000240000000011310146622250014254 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.03 0.05 4 26 226 data-in/Linux_r1z_2004111704150100644000175500000240000000030510146622251014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.36 2.08 1.22 84 34 23 140 31 3 27 29 2 47 data-in/Linux_r1q_2004111704150100644000175500000240000000027610146622254014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.24 1.33 1.44 89 80 42 155 20 11840 6026 187 29128 data-in/Linux_r1m2_2004111704150100644000175500000240000000031310146622251014174 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.22 0.13 0.09 86 81 34 139 20 3 1743 826 38 1078 data-in/Linux_r1m1_2004111704150100644000175500000240000000031210146622252014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.12 0.19 0.17 69 73 29 162 32 3 610 328 18 1855 data-in/Linux_r1f_2004111704150100644000175500000240000000027410146622255014115 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.18 1.18 1.21 87 85 46 214 20 8576 12937 15 8682 data-in/Linux_r1a1_2004111704150100644000175500000240000000026510146622252014166 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.01 2.24 1.33 83 34 14 145 26 29 30 1 122 data-in/Linux_r1a_2004111704150100644000175500000240000000031510146622252014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.15 1.23 1.05 91 32 27 183 20 21 5140 4109 86 6907 data-in/Linux_streamguys1_2004111704150100644000175500000240000000022310146622252015700 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.64 1.17 0.98 49 60 629 50 8 3 0 data-in/Linux_steve_2004111704150100644000175500000240000000011310146622252014540 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2364 data-in/Linux_mnode_2004111704150100644000175500000240000000022410146622251014516 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.23 0.70 0.67 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111704150100644000175500000240000000022510146622251014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.09 0.07 19 52 502 141 15 3 0 data-in/Linux_hwnode3_2004111704150100644000175500000240000000022410146622250014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.93 1.17 1.07 73 17 784 95 27 3 0 data-in/FreeBSD_mb2_2004111704150100644000175500000240000000000010146622244014201 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704150100644000175500000240000000061110146622247014241 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 160 22220800 158756864 233254912 1551368192 140197888 1958520667 1537599977 data-in/FreeBSD_psa4_2004111704150100644000175500000240000000053510146622251014403 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104031847 122665396 data-in/FreeBSD_psa3_2004111704150100644000175500000240000000062710146622270014405 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 1.50 1.31 1.23 21 2 10 28 2 143 32 9 1 12801 23769 7899 2429 67697 3489792 322084864 1105661952 568643584 98553856 1244733356 1470938076 data-in/FreeBSD_psa2_2004111704150100644000175500000240000000063110146622250014375 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.45 0.20 0.12 13 0 1 34 0 127 69 7 1 13148 17671 56308 500 6185 1312636928 303824896 351272960 126717952 11997184 1825379107 2658160146 data-in/FreeBSD_pinky_2004111704150100644000175500000240000000056510146622251014671 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes 1.86 0.80 0.69 71 13 31 52 75 312 10 14 4 0 0 7413760 171368448 744869888 81424384 38326272 844890795 3657596052 11 0 data-in/Linux_hwnode2_2004111704150100644000175500000240000000022510146622252014764 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.15 0.10 81 15 771 233 23 4 0 data-in/Linux_mb_2004111704200100644000175500000240000000015510146622725014017 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.03 0.07 13 16 79 15 1 data-in/Linux_staging_2004111704200100644000175500000240000000016610146622724015056 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.62 0.17 0.06 8 100 118 26 0 data-in/Linux_psa1_2004111704200100644000175500000240000000011310146622722014254 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.16 0.03 0.03 4 26 237 data-in/Linux_r1z_2004111704200100644000175500000240000000030510146622727014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.85 2.78 1.73 84 35 23 131 25 3 45 40 2 71 data-in/Linux_r1q_2004111704200100644000175500000240000000027610146622730014124 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.92 1.97 1.70 89 80 42 153 20 11864 6037 187 29188 data-in/Linux_r1m2_2004111704200100644000175500000240000000031310146622725014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.02 0.10 0.08 86 81 34 133 20 3 1809 871 41 1112 data-in/Linux_r1m1_2004111704200100644000175500000240000000031210146622726014175 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.12 0.24 0.20 69 73 29 152 32 3 635 332 18 1928 data-in/Linux_r1f_2004111704200100644000175500000240000000027410146622732014111 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.24 1.20 1.21 87 85 46 210 20 8599 12974 15 8685 data-in/Linux_r1a1_2004111704200100644000175500000240000000026510146622726014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.07 2.81 1.83 83 35 14 140 27 48 38 1 202 data-in/Linux_r1a_2004111704200100644000175500000240000000031510146622731014077 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.79 1.39 1.15 91 32 27 184 20 21 5147 4136 86 6935 data-in/Linux_streamguys1_2004111704200100644000175500000240000000022310146622726015702 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.59 0.76 49 60 630 51 8 3 0 data-in/Linux_steve_2004111704200100644000175500000240000000011310146622726014542 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2368 data-in/Linux_mnode_2004111704200100644000175500000240000000022410146622724014517 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.33 0.51 0.59 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111704200100644000175500000240000000022510146622725014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.08 0.07 0.06 19 52 507 141 15 3 0 data-in/Linux_hwnode3_2004111704200100644000175500000240000000022510146622725014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.20 1.25 1.13 73 17 793 100 27 3 0 data-in/Linux_hwnode2_2004111704200100644000175500000240000000022510146622725014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.05 0.07 81 15 774 234 23 4 0 data-in/FreeBSD_mb2_2004111704200100644000175500000240000000000010146622721014175 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704200100644000175500000240000000061110146622723014234 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 163 22855680 158765056 232611840 1551368192 140197888 1958783300 1540151622 data-in/FreeBSD_psa4_2004111704200100644000175500000240000000053510146622725014405 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104039590 122672266 data-in/FreeBSD_psa3_2004111704200100644000175500000240000000062710146622727014410 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 1.69 1.49 1.33 21 2 10 29 2 153 32 9 1 12853 23893 7997 2433 67824 6656000 354484224 1092177920 568291328 76824576 1247058171 1476657447 data-in/FreeBSD_psa2_2004111704200100644000175500000240000000063010146622725014377 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.17 0.18 0.12 13 0 1 34 0 145 66 7 1 13164 17762 56330 500 6193 926736384 307896320 337080320 522756096 11980800 1832338375 2751033160 data-in/FreeBSD_pinky_2004111704200100644000175500000240000000056610146622725014674 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes 0.14 0.45 0.56 71 13 31 52 75 311 10 14 4 0 0 17022976 170762240 744624128 78102528 32890880 855900232 3663202465 11 0 data-in/Linux_mnode_2004111704250100644000175500000240000000022410146623400014514 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.23 0.39 0.51 78 47 138 38 1 12 0 data-in/Linux_mb_2004111704250100644000175500000240000000015510146623376014027 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.01 0.04 13 16 81 15 1 data-in/Linux_staging_2004111704250100644000175500000240000000016610146623377015070 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 1.05 0.72 0.32 8 100 119 26 0 data-in/Linux_psa1_2004111704250100644000175500000240000000011310146623400014253 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.01 0.01 4 26 237 data-in/Linux_r1z_2004111704250100644000175500000240000000030510146623400014126 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.63 2.56 1.91 84 35 23 122 16 3 57 57 2 94 data-in/Linux_r1q_2004111704250100644000175500000240000000027610146623402014126 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.72 1.97 1.73 89 80 42 183 22 11887 6049 188 29247 data-in/Linux_r1m2_2004111704250100644000175500000240000000031310146623400014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.00 0.04 0.06 86 81 34 133 20 3 1876 913 41 1157 data-in/Linux_r1m1_2004111704250100644000175500000240000000031210146623400014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.02 0.12 0.15 69 73 29 151 32 3 659 344 18 2005 data-in/Linux_r1a1_2004111704250100644000175500000240000000026510146623401014164 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.28 2.63 2.02 83 35 14 137 26 57 50 3 282 data-in/Linux_r1a_2004111704250100644000175500000240000000031510146623403014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.08 1.22 1.15 91 32 27 189 20 21 5165 4150 86 6961 data-in/Linux_streamguys1_2004111704250100644000175500000240000000022310146623401015676 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.59 0.69 0.75 49 60 627 48 8 3 0 data-in/Linux_steve_2004111704250100644000175500000240000000011310146623401014536 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2373 data-in/Linux_hwnode5_2004111704250100644000175500000240000000022510146623400014764 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.02 0.04 19 52 505 141 15 3 0 data-in/Linux_hwnode3_2004111704250100644000175500000240000000022410146623400014761 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.11 1.15 1.11 73 17 780 95 27 3 0 data-in/Linux_hwnode2_2004111704250100644000175500000240000000022510146623400014761 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.01 0.04 0.06 81 15 770 229 23 4 0 data-in/FreeBSD_mb2_2004111704250100644000175500000240000000000010146623374014207 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704250100644000175500000240000000061110146623400014232 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 165 22409216 158793728 233033728 1551364096 140197888 1959056679 1542124385 data-in/FreeBSD_psa4_2004111704250100644000175500000240000000053510146623377014416 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 0.00 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104045317 122679264 data-in/FreeBSD_psa3_2004111704250100644000175500000240000000062710146623414014407 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes 1.71 1.52 1.37 21 2 10 29 2 142 33 8 1 12889 24023 8031 2438 67955 3526656 365576192 1075662848 560795648 92872704 1249628049 1483666356 data-in/FreeBSD_psa2_2004111704250100644000175500000240000000063010146623400014373 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes 0.57 0.64 0.34 13 0 1 34 0 155 76 7 1 13201 17814 56450 500 6201 916832256 322846720 343015424 511836160 11919360 1840362730 2824632206 data-in/FreeBSD_pinky_2004111704250100644000175500000240000000056610146623400014670 0ustar djhstaffload1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes 0.04 0.44 0.56 71 13 31 52 75 305 10 14 4 0 0 16822272 171204608 743743488 79126528 32505856 861325203 3668148780 11 0 data-in/Linux_r1f_2004111704250100644000175500000240000000027410146623405014114 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.48 1.27 1.21 87 85 46 215 20 8634 13018 15 8691 data-in/Linux_mb_2004111704300100644000175500000240000000015510146624055014016 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.01 13 16 81 15 1 data-in/Linux_staging_2004111704300100644000175500000240000000016610146624052015053 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 1.04 0.98 0.54 8 100 119 26 0 data-in/Linux_psa1_2004111704300100644000175500000240000000011310146624052014253 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 237 data-in/Linux_r1z_2004111704300100644000175500000240000000030610146624056014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.14 2.64 2.09 84 35 23 128 18 3 75 69 2 115 data-in/Linux_r1m2_2004111704300100644000175500000240000000031310146624056014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.18 0.06 0.06 86 81 34 141 20 3 1929 976 43 1198 data-in/Linux_r1m1_2004111704300100644000175500000240000000031210146624055014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.20 0.13 0.14 69 73 29 162 32 3 689 361 18 2077 data-in/Linux_r1f_2004111704300100644000175500000240000000027410146624062014110 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.32 1.25 1.21 87 85 46 208 20 8669 13067 15 8695 data-in/Linux_r1a1_2004111704300100644000175500000240000000026510146624057014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.52 2.84 2.25 83 35 14 142 26 78 63 5 366 data-in/Linux_r1a_2004111704300100644000175500000240000000031510146624060014075 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.18 1.22 1.17 91 32 27 182