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 20 21 5184 4165 87 6987 data-in/Linux_streamguys1_2004111704300100644000175500000240000000022310146624054015677 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.16 0.84 0.76 49 60 627 48 8 3 0 data-in/Linux_steve_2004111704300100644000175500000240000000011310146624056014541 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2369 data-in/Linux_mnode_2004111704300100644000175500000240000000022410146624055014517 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.57 0.43 0.49 78 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111704300100644000175500000240000000022510146624055014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 6.61 2.27 0.82 19 52 510 141 15 3 0 data-in/Linux_hwnode3_2004111704300100644000175500000240000000022410146624056014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.76 1.09 1.10 73 17 801 96 27 3 0 data-in/Linux_hwnode2_2004111704300100644000175500000240000000022510146624054014763 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.03 0.04 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111704300100644000175500000240000000000010146624051014174 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704300100644000175500000240000000061110146624054014234 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 166 22896640 158797824 232542208 1551364096 140197888 1959248452 1543888969 data-in/FreeBSD_psa4_2004111704300100644000175500000240000000053510146624054014403 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 1811947520 137199616 104194048 45060096 32768 104049880 122685282 data-in/FreeBSD_psa3_2004111704300100644000175500000240000000062710146624055014405 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 2.27 1.80 1.52 21 2 10 29 2 139 32 9 1 12933 24121 8049 2438 68081 9863168 364273664 1097560064 533946368 92790784 1251408309 1490414994 data-in/FreeBSD_psa2_2004111704300100644000175500000240000000063010146624056014377 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.46 0.36 0.27 13 0 1 34 0 140 72 7 1 13271 17842 56829 500 6207 873943040 329523200 367362048 523698176 11923456 1846661421 2876521363 data-in/FreeBSD_pinky_2004111704300100644000175500000240000000056610146624055014673 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.19 0.36 0.49 71 13 31 52 75 304 10 14 4 0 0 10313728 168169472 748933120 83501056 32485376 866832380 3673573472 11 0 data-in/Linux_r1q_2004111704300100644000175500000240000000027610146624061014124 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.59 2.81 2.13 89 80 42 286 20 11909 6072 188 29303 data-in/Linux_mb_2004111704350100644000175500000240000000015510146624530014021 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 80 15 1 data-in/Linux_staging_2004111704350100644000175500000240000000016610146624530015061 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.08 0.60 0.51 8 100 113 26 0 data-in/Linux_psa1_2004111704350100644000175500000240000000011310146624530014261 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.11 0.10 0.04 4 26 233 data-in/Linux_r1m2_2004111704350100644000175500000240000000031410146624531014202 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.14 0.10 0.08 86 81 34 138 20 3 2009 1032 45 1239 data-in/Linux_r1m1_2004111704350100644000175500000240000000031210146624527014204 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.11 0.19 0.17 69 73 29 154 32 3 712 364 18 2157 data-in/Linux_r1f_2004111704350100644000175500000240000000027410146624535014122 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.79 1.37 1.25 87 85 46 210 20 8690 13130 15 8702 data-in/Linux_r1a1_2004111704350100644000175500000240000000026510146624540014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.47 3.12 2.53 83 35 14 144 26 96 76 5 453 data-in/Linux_streamguys1_2004111704350100644000175500000240000000022310146624532015705 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.20 0.99 0.80 49 60 626 47 8 3 0 data-in/Linux_steve_2004111704350100644000175500000240000000011310146624532014545 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2370 data-in/Linux_mnode_2004111704350100644000175500000240000000022410146624530014522 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.33 0.34 0.42 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111704350100644000175500000240000000022510146624527015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.07 0.98 0.68 19 52 502 141 15 3 0 data-in/Linux_r1z_2004111704350100644000175500000240000000030610146624531014136 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.21 2.49 2.18 84 35 23 123 16 3 89 78 4 133 data-in/Linux_hwnode3_2004111704350100644000175500000240000000022410146624531014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 2.73 1.89 1.42 73 17 794 94 27 3 0 data-in/Linux_hwnode2_2004111704350100644000175500000240000000022510146624530014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.02 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111704350100644000175500000240000000000010146624524014206 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704350100644000175500000240000000061110146624530014240 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 285 1 169 22540288 158867456 232837120 1551355904 140197888 1959523048 1546432172 data-in/FreeBSD_psa4_2004111704350100644000175500000240000000053510146624530014407 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 1811947520 137199616 104194048 45060096 32768 104072731 122698902 data-in/FreeBSD_psa3_2004111704350100644000175500000240000000061610146624527014414 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.67 1.75 1.58 21 2 10 29 2 134 31 9 1 1246 3747 802 0 90 4096000 360603648 1085267968 586231808 62234624 1253059201 1496613909 data-in/FreeBSD_psa2_2004111704350100644000175500000240000000062710146624530014407 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.23 0.73 0.51 13 0 1 34 0 154 73 7 1 13302 17929 56923 500 6216 843890688 323391488 345382912 583815168 9969664 1854323909 3017114188 data-in/FreeBSD_pinky_2004111704350100644000175500000240000000056610146624530014676 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.22 0.35 0.46 71 13 31 52 75 291 10 14 4 0 0 12230656 170147840 745664512 83132416 32088064 872181185 3678962595 11 0 data-in/Linux_r1q_2004111704350100644000175500000240000000026410146624531014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.30 3.07 2.48 89 77 42 125 21 27 10 0 30 data-in/Linux_r1a_2004111704350100644000175500000240000000031510146624533014107 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.76 1.37 1.23 91 32 27 194 20 21 5203 4190 87 7014 data-in/Linux_mb_2004111704400100644000175500000240000000015510146625204014014 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.01 0.02 0.00 13 16 76 15 1 data-in/Linux_staging_2004111704400100644000175500000240000000016610146625203015053 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.21 0.36 8 100 113 26 0 data-in/Linux_psa1_2004111704400100644000175500000240000000011310146625204014254 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.03 0.01 4 26 234 data-in/Linux_r1z_2004111704400100644000175500000240000000030710146625204014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.07 1.20 1.73 84 34 23 124 16 3 100 84 4 149 data-in/Linux_r1q_2004111704400100644000175500000240000000026410146625205014123 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.30 2.47 2.36 89 77 42 134 23 54 24 1 82 data-in/Linux_r1m2_2004111704400100644000175500000240000000031410146625204014174 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.16 0.13 0.09 86 81 34 140 20 3 2091 1080 46 1281 data-in/Linux_r1m1_2004111704400100644000175500000240000000031210146625204014171 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.23 0.17 0.16 69 73 29 153 32 3 734 387 18 2237 data-in/Linux_r1f_2004111704400100644000175500000240000000027410146625210014105 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.28 1.25 1.22 87 85 46 213 20 8708 13172 15 8705 data-in/Linux_r1a1_2004111704400100644000175500000240000000026610146625205014166 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.62 3.29 2.74 83 35 14 149 34 192 84 7 528 data-in/Linux_r1a_2004111704400100644000175500000240000000031510146625206014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.23 1.28 1.22 91 32 27 190 20 21 5241 4211 87 7039 data-in/Linux_streamguys1_2004111704400100644000175500000240000000022310146625204015676 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 2.16 0.97 0.78 49 60 627 48 8 3 0 data-in/Linux_steve_2004111704400100644000175500000240000000011310146625205014537 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.06 0.03 0.00 73 63 2370 data-in/Linux_mnode_2004111704400100644000175500000240000000022410146625205014516 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.30 0.38 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111704400100644000175500000240000000022510146625204014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.10 0.40 0.50 19 52 501 141 15 3 0 data-in/Linux_hwnode3_2004111704400100644000175500000240000000022410146625204014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.20 1.43 1.34 73 17 785 94 27 3 0 data-in/Linux_hwnode2_2004111704400100644000175500000240000000022510146625203014761 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111704400100644000175500000240000000000010146625200014172 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704400100644000175500000240000000061110146625203014232 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 77 10 8 1 6 0 285 1 173 22069248 158978048 233115648 1551437824 140197888 1960170454 1549403293 data-in/FreeBSD_psa4_2004111704400100644000175500000240000000053510146625204014402 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 1811902464 137199616 104247296 45051904 32768 104079606 122707142 data-in/FreeBSD_psa3_2004111704400100644000175500000240000000061710146625204014402 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.22 1.36 1.44 21 2 10 30 2 128 31 9 1 1302 3895 826 0 210 4091904 347840512 1085808640 592424960 68268032 1255300597 1511405811 data-in/FreeBSD_psa2_2004111704400100644000175500000240000000063010146625204014374 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.28 0.36 13 0 1 34 0 155 76 7 1 13359 18008 57233 500 6224 726290432 323751936 366555136 679526400 10326016 1862584180 3113712415 data-in/FreeBSD_pinky_2004111704400100644000175500000240000000056610146625204014671 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.28 0.40 71 13 31 52 75 302 10 14 4 0 0 12042240 170545152 745377792 84656128 30781440 877595965 3684377083 11 0 data-in/Linux_mb_2004111704450100644000175500000240000000015510146625661014030 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.01 0.02 0.00 13 16 82 15 1 data-in/Linux_psa1_2004111704450100644000175500000240000000011310146625657014275 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 235 data-in/Linux_r1z_2004111704450100644000175500000240000000030710146625660014144 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.13 0.49 1.27 84 34 23 128 18 3 116 87 6 166 data-in/Linux_r1m2_2004111704450100644000175500000240000000031410146625660014207 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.16 0.10 86 81 34 137 20 3 2168 1139 47 1325 data-in/Linux_r1m1_2004111704450100644000175500000240000000031210146625661014205 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.24 0.16 0.15 69 73 29 154 32 3 768 400 18 2316 data-in/Linux_r1f_2004111704450100644000175500000240000000027410146625665014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.20 1.23 1.21 87 85 46 206 20 8729 13219 15 8712 data-in/Linux_r1a1_2004111704450100644000175500000240000000026710146625662014203 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.26 2.81 2.68 83 35 14 142 23 207 109 9 619 data-in/Linux_r1a_2004111704450100644000175500000240000000031510146625662014114 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.28 1.25 1.22 91 32 27 187 20 21 5254 4227 88 7064 data-in/Linux_streamguys1_2004111704450100644000175500000240000000022310146625662015713 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.59 0.88 0.79 49 60 627 48 8 3 0 data-in/Linux_steve_2004111704450100644000175500000240000000011310146625662014553 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111704450100644000175500000240000000022410146625661014531 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.31 0.37 0.39 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111704450100644000175500000240000000022510146625660015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.02 0.16 0.36 19 52 491 136 15 3 0 data-in/Linux_hwnode3_2004111704450100644000175500000240000000022410146625657015003 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.03 1.07 1.19 73 17 775 96 27 3 0 data-in/Linux_hwnode2_2004111704450100644000175500000240000000022510146625660014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111704450100644000175500000240000000000010146625655014215 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704450100644000175500000240000000061110146625657014254 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.08 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 285 1 179 22773760 158924800 232546304 1551355904 140197888 1960490490 1551748021 data-in/FreeBSD_psa4_2004111704450100644000175500000240000000053510146625660014415 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 1811943424 137203712 104194048 45060096 32768 104084925 122714076 data-in/FreeBSD_psa3_2004111704450100644000175500000240000000061710146625660014415 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.34 1.29 1.37 21 2 10 30 2 139 36 9 1 1342 4045 834 0 343 9777152 364081152 1105207296 546279424 73089024 1257994576 1525083863 data-in/FreeBSD_psa2_2004111704450100644000175500000240000000063010146625662014411 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.06 0.19 0.30 13 0 1 34 0 154 69 7 1 13391 18039 57351 500 6233 668262400 281636864 383172608 762322944 11055104 1869924907 3187250890 data-in/FreeBSD_pinky_2004111704450100644000175500000240000000056610146625660014704 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.17 0.32 0.40 71 13 31 52 75 299 10 14 4 0 0 15458304 171089920 741531648 84611072 30711808 883392502 3689784965 11 0 data-in/Linux_staging_2004111704450100644000175500000240000000016610146625660015067 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.07 0.25 8 100 113 26 0 data-in/Linux_r1q_2004111704450100644000175500000240000000026510146625661014137 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.47 2.34 2.32 89 77 42 136 21 77 55 1 132 data-in/Linux_mb_2004111704500100644000175500000240000000015510146626334014022 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 76 15 1 data-in/Linux_staging_2004111704500100644000175500000240000000016610146626334015062 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.02 0.17 8 100 113 26 0 data-in/Linux_psa1_2004111704500100644000175500000240000000011310146626334014262 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 235 data-in/Linux_r1z_2004111704500100644000175500000240000000031010146626336014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.01 0.19 0.92 84 34 23 119 16 3 134 100 6 184 data-in/Linux_r1q_2004111704500100644000175500000240000000026610146626335014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.88 2.93 2.58 89 77 42 130 21 114 78 1 184 data-in/Linux_r1m2_2004111704500100644000175500000240000000031410146626334014202 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.16 0.11 86 81 34 137 20 3 2243 1194 50 1357 data-in/Linux_r1m1_2004111704500100644000175500000240000000031210146626335014200 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.21 0.18 69 73 29 150 32 3 794 406 18 2388 data-in/Linux_r1f_2004111704500100644000175500000240000000027410146626344014117 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.13 1.15 1.17 87 85 46 207 20 8751 13285 15 8715 data-in/Linux_r1a1_2004111704500100644000175500000240000000026710146626335014175 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.11 2.33 2.55 83 34 14 142 25 226 135 9 697 data-in/Linux_r1a_2004111704500100644000175500000240000000031510146626341014103 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.90 1.48 1.31 91 32 27 192 20 21 5261 4259 88 7092 data-in/Linux_streamguys1_2004111704500100644000175500000240000000022310146626335015705 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.47 0.76 0.77 49 60 627 48 8 3 0 data-in/Linux_steve_2004111704500100644000175500000240000000011310146626336014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.09 0.04 0.01 73 63 2370 data-in/Linux_mnode_2004111704500100644000175500000240000000022410146626334014523 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.31 0.35 0.36 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111704500100644000175500000240000000022510146626335014774 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.05 0.25 19 52 493 136 15 3 0 data-in/Linux_hwnode3_2004111704500100644000175500000240000000022410146626333014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.56 0.75 1.01 73 17 786 97 27 3 0 data-in/Linux_hwnode2_2004111704500100644000175500000240000000022510146626336014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111704500100644000175500000240000000000010146626331014201 0ustar djhstaffdata-in/Linux_mb_2004111704550100644000175500000240000000015510146627007014025 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.06 0.02 0.00 13 16 78 15 1 data-in/FreeBSD_psa4_2004111704500100644000175500000240000000053510146626334014410 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 1811943424 137203712 104194048 45060096 32768 104090362 122721392 data-in/FreeBSD_psa3_2004111704500100644000175500000240000000062010146626334014402 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.14 1.16 1.28 21 2 10 31 2 131 31 9 1 1376 4157 856 0 469 4087808 348332032 1087733760 551497728 106782720 1259826301 1535079460 data-in/FreeBSD_psa2_2004111704500100644000175500000240000000061310146626333014402 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 1.02 0.77 0.50 13 0 1 33 0 130 68 7 1 15 23 32 0 3 1030270976 199135232 384217088 482516992 10309632 1878792614 3304715764 data-in/FreeBSD_pinky_2004111704500100644000175500000240000000056610146626334014677 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 2.31 0.81 0.57 71 13 31 52 75 305 10 14 4 0 0 12791808 169684992 744161280 87379968 29384704 888664016 3695135439 11 0 data-in/FreeBSD_r4p_2004111704500100644000175500000240000000061110146626334014241 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 285 1 181 21716992 159621120 232906752 1551355904 140197888 1961506536 1555488361 data-in/Linux_staging_2004111704550100644000175500000240000000016610146627006015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.11 8 100 113 26 0 data-in/Linux_psa1_2004111704550100644000175500000240000000011310146627010014257 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 234 data-in/Linux_r1z_2004111704550100644000175500000240000000031010146627011014127 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.06 0.65 84 34 23 120 16 3 149 108 8 203 data-in/Linux_r1q_2004111704550100644000175500000240000000026610146627011014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.54 2.65 2.54 89 77 42 128 20 132 91 2 237 data-in/Linux_r1m2_2004111704550100644000175500000240000000031410146627011014200 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.05 0.07 86 81 34 129 20 3 2323 1243 50 1395 data-in/Linux_r1m1_2004111704550100644000175500000240000000031210146627010014174 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.11 0.15 69 73 29 150 32 3 811 429 18 2469 data-in/Linux_r1f_2004111704550100644000175500000240000000027410146627015014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.23 1.21 1.19 87 85 46 204 20 8808 13324 15 8722 data-in/Linux_r1a1_2004111704550100644000175500000240000000027010146627010014163 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.17 1.03 1.92 83 34 14 136 25 251 144 11 778 data-in/Linux_r1a_2004111704550100644000175500000240000000031510146627013014105 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.28 1.31 1.27 91 32 27 186 20 21 5276 4270 88 7117 data-in/Linux_streamguys1_2004111704550100644000175500000240000000022310146627012015703 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.67 0.66 0.70 49 60 627 47 8 3 0 data-in/Linux_mnode_2004111704550100644000175500000240000000022410146627011014521 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.25 0.35 0.35 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111704550100644000175500000240000000022510146627010014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.08 0.05 0.18 19 52 496 136 15 3 0 data-in/Linux_hwnode3_2004111704550100644000175500000240000000022410146627011014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.69 0.67 0.89 73 17 795 95 27 3 0 data-in/Linux_hwnode2_2004111704550100644000175500000240000000022510146627010014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.04 0.02 0.00 81 15 768 229 23 4 0 data-in/FreeBSD_mb2_2004111704550100644000175500000240000000000010146627004014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111704550100644000175500000240000000061010146627007014243 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 1 2 0 74 9 8 1 6 0 285 1 183 23158784 160677888 230387712 1551376384 140197888 1962839343 1557865090 data-in/FreeBSD_psa4_2004111704550100644000175500000240000000053510146627007014413 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 1811943424 137203712 104194048 45060096 32768 104096591 122728582 data-in/FreeBSD_psa3_2004111704550100644000175500000240000000061710146627007014413 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.38 1.24 1.27 21 2 10 31 2 139 31 9 1 1414 4255 876 0 605 9879552 336384000 1079119872 579391488 93659136 1261398607 1541983106 data-in/FreeBSD_psa2_2004111704550100644000175500000240000000061510146627010014402 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.46 0.60 0.48 13 0 1 33 0 138 74 7 1 49 94 129 0 12 1020055552 252764160 388792320 432881664 11956224 1888632543 3437315698 data-in/FreeBSD_pinky_2004111704550100644000175500000240000000056610146627010014674 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.24 0.48 0.49 71 13 31 52 75 299 10 14 4 0 0 12013568 171274240 744198144 86642688 29274112 894239764 3700569184 11 0 data-in/Linux_steve_2004111704550100644000175500000240000000011310146627012014543 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2370 data-in/Linux_mb_2004111705000100644000175500000240000000015510146627464014023 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 77 15 1 data-in/Linux_staging_2004111705000100644000175500000240000000016610146627464015063 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.07 8 100 113 26 0 data-in/Linux_psa1_2004111705000100644000175500000240000000011310146627463014262 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.19 0.06 0.01 4 26 236 data-in/Linux_r1z_2004111705000100644000175500000240000000031010146627466014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.05 0.47 84 34 23 123 16 3 165 120 8 222 data-in/Linux_r1q_2004111705000100644000175500000240000000026710146627465014135 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.27 2.36 2.43 89 77 42 136 21 161 114 2 292 data-in/Linux_r1m2_2004111705000100644000175500000240000000031410146627466014205 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.07 0.07 86 81 34 136 20 3 2383 1295 52 1432 data-in/Linux_r1m1_2004111705000100644000175500000240000000031210146627463014177 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.30 0.18 0.16 69 73 29 153 32 3 832 442 18 2536 data-in/Linux_r1f_2004111705000100644000175500000240000000027410146627471014115 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.20 1.18 1.17 87 85 46 206 20 8835 13394 15 8725 data-in/Linux_r1a1_2004111705000100644000175500000240000000027010146627465014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.70 0.62 1.48 83 34 14 146 28 276 194 14 847 data-in/Linux_r1a_2004111705000100644000175500000240000000031510146627467014111 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.22 1.23 1.24 91 32 27 186 20 21 5288 4288 89 7143 data-in/Linux_streamguys1_2004111705000100644000175500000240000000022310146627466015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.51 0.55 0.62 49 60 625 46 8 3 0 data-in/Linux_steve_2004111705000100644000175500000240000000011310146627465014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705000100644000175500000240000000022410146627465014525 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.31 0.34 78 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111705000100644000175500000240000000022510146627465014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.12 19 52 495 136 15 3 0 data-in/Linux_hwnode3_2004111705000100644000175500000240000000022410146627466014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.05 0.64 0.79 73 17 787 95 27 3 0 data-in/Linux_hwnode2_2004111705000100644000175500000240000000022510146627465014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 768 229 23 4 0 data-in/FreeBSD_mb2_2004111705000100644000175500000240000000000010146627460014201 0ustar djhstaffdata-in/Linux_mb_2004111705050100644000175500000240000000015610146630141014013 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.02 0.01 0.00 13 16 103 15 1 data-in/FreeBSD_r4p_2004111705000100644000175500000240000000061010146627463014240 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 1 2 0 74 9 8 1 6 0 285 1 186 18325504 160825344 234217472 1552232448 140197888 1964087557 1559807117 data-in/FreeBSD_psa4_2004111705000100644000175500000240000000053510146627464014411 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 1811943424 137203712 104194048 45060096 32768 104103168 122736370 data-in/FreeBSD_psa3_2004111705000100644000175500000240000000061710146627463014410 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.27 1.25 1.25 21 2 10 32 2 126 31 9 1 1442 4405 892 0 731 4087808 352501760 1080295424 590848000 70701056 1262731785 1546711835 data-in/FreeBSD_psa2_2004111705000100644000175500000240000000061610146627464014407 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 1.44 0.95 0.64 13 0 1 33 0 130 71 7 1 98 139 343 0 20 1022570496 258621440 382222336 430002176 13033472 1896713435 3502293628 data-in/FreeBSD_pinky_2004111705000100644000175500000240000000056610146627464014700 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 2.68 1.03 0.72 71 13 31 52 75 288 11 14 4 0 0 10964992 169398272 746618880 66117632 50302976 899636466 3705690352 11 0 data-in/Linux_staging_2004111705050100644000175500000240000000016610146630140015051 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.04 8 100 113 26 0 data-in/Linux_psa1_2004111705050100644000175500000240000000011310146630137014257 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.02 0.00 4 26 235 data-in/Linux_r1z_2004111705050100644000175500000240000000031010146630140014120 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.01 0.33 84 34 23 126 16 3 180 130 8 239 data-in/Linux_r1q_2004111705050100644000175500000240000000026710146630142014124 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.61 2.78 2.61 89 77 42 138 20 185 124 2 349 data-in/Linux_r1m2_2004111705050100644000175500000240000000031410146630141014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.01 0.06 0.07 86 81 34 136 20 3 2449 1345 54 1464 data-in/Linux_r1m1_2004111705050100644000175500000240000000031210146630141014167 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.07 0.17 0.16 69 73 29 147 32 3 880 448 18 2611 data-in/Linux_r1f_2004111705050100644000175500000240000000027410146630146014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.30 1.30 1.23 87 85 46 205 20 8857 13445 15 8740 data-in/Linux_r1a1_2004111705050100644000175500000240000000027010146630140014155 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.22 0.35 1.12 83 34 14 132 26 318 211 14 930 data-in/Linux_r1a_2004111705050100644000175500000240000000031510146630145014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.14 1.47 1.32 91 32 27 192 20 21 5305 4304 89 7171 data-in/Linux_streamguys1_2004111705050100644000175500000240000000022310146630140015673 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.21 0.42 0.55 49 60 625 46 8 3 0 data-in/Linux_steve_2004111705050100644000175500000240000000011310146630142014535 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705050100644000175500000240000000022410146630141014513 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.34 0.35 78 47 138 38 1 12 0 data-in/Linux_hwnode3_2004111705050100644000175500000240000000022410146630140014757 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.37 0.42 0.65 73 17 785 94 27 3 0 data-in/Linux_hwnode2_2004111705050100644000175500000240000000022510146630140014757 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.24 0.07 0.02 81 15 764 229 23 4 0 data-in/FreeBSD_mb2_2004111705050100644000175500000240000000000010146630135014177 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705050100644000175500000240000000061010146630141014230 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.00 0.00 9 0 0 2 0 74 9 8 1 6 0 291 1 188 18358272 160784384 234221568 1552236544 140197888 1964270761 1561435557 data-in/FreeBSD_psa4_2004111705050100644000175500000240000000053510146630141014400 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 1811943424 137203712 104194048 45060096 32768 104109857 122743856 data-in/FreeBSD_psa3_2004111705050100644000175500000240000000061710146630141014400 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.29 1.22 1.23 21 2 10 32 2 129 30 9 1 1486 4515 912 0 861 9285632 364556288 1065455616 578166784 80969728 1264478220 1551941140 data-in/FreeBSD_psa2_2004111705050100644000175500000240000000061710146630140014376 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.10 0.36 0.44 13 0 1 34 0 131 70 7 1 120 181 375 0 30 1027252224 261169152 374874112 429510656 13643776 1901940795 3534713483 data-in/FreeBSD_pinky_2004111705050100644000175500000240000000056610146630141014667 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.13 0.56 0.60 71 13 31 52 75 305 10 14 4 0 0 13541376 170037248 743043072 70447104 46333952 905084070 3710923529 11 0 data-in/Linux_hwnode5_2004111705050100644000175500000240000000022510146630141014763 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.13 0.03 0.09 19 52 496 136 15 3 0 data-in/Linux_mb_2004111705100100644000175500000240000000015510146630614014013 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 83 15 1 data-in/Linux_staging_2004111705100100644000175500000240000000016610146630612015051 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.01 8 100 113 26 0 data-in/Linux_psa1_2004111705100100644000175500000240000000011310146630614014253 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 232 data-in/Linux_r1z_2004111705100100644000175500000240000000031010146630615014123 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.00 0.23 84 34 23 137 25 3 193 141 8 256 data-in/Linux_r1q_2004111705100100644000175500000240000000026710146630615014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.43 2.56 2.55 89 77 42 137 21 207 156 3 409 data-in/Linux_r1m2_2004111705100100644000175500000240000000031410146630614014173 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.06 0.07 86 81 34 136 20 3 2522 1412 55 1498 data-in/Linux_r1m1_2004111705100100644000175500000240000000031210146630614014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.10 0.22 0.18 69 73 29 147 32 3 891 464 18 2685 data-in/Linux_r1f_2004111705100100644000175500000240000000027410146630620014104 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.23 1.22 1.20 87 85 46 205 20 8883 13488 15 8748 data-in/Linux_r1a1_2004111705100100644000175500000240000000027110146630614014160 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.19 0.21 0.83 83 34 14 134 28 388 221 16 1001 data-in/Linux_r1a_2004111705100100644000175500000240000000031510146630617014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.64 1.51 1.37 91 32 27 185 21 21 5325 4308 89 7195 data-in/Linux_streamguys1_2004111705100100644000175500000240000000022310146630616015677 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 3.82 2.16 1.15 49 60 624 45 8 3 0 data-in/Linux_steve_2004111705100100644000175500000240000000011310146630615014536 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705100100644000175500000240000000022410146630615014515 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.26 0.31 0.34 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111705100100644000175500000240000000022510146630612014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.06 19 52 497 136 15 3 0 data-in/Linux_hwnode3_2004111705100100644000175500000240000000022410146630614014761 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.75 0.50 0.61 73 17 794 95 27 3 0 data-in/Linux_hwnode2_2004111705100100644000175500000240000000022510146630615014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.07 0.05 0.01 81 15 758 230 23 4 0 data-in/FreeBSD_mb2_2004111705100100644000175500000240000000000010146630610014171 0ustar djhstaffdata-in/Linux_psa1_2004111705150100644000175500000240000000011310146631270014257 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.08 0.02 0.01 4 26 232 data-in/FreeBSD_psa4_2004111705100100644000175500000240000000053510146630614014401 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.08 0.02 0.01 14 0 0 2 0 75 7 7 1 0 0 0 1811939328 137207808 104194048 45060096 32768 104115976 122751236 data-in/FreeBSD_psa3_2004111705100100644000175500000240000000061710146630614014401 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.34 1.25 1.24 21 2 10 32 2 138 35 9 1 1532 4663 918 0 985 9719808 364920832 1098817536 560644096 64331776 1266354835 1558174543 data-in/FreeBSD_psa2_2004111705100100644000175500000240000000061710146630614014400 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.05 0.14 0.31 13 0 1 34 0 131 68 7 1 150 217 484 0 38 1024167936 263471104 374820864 430321664 13668352 1907409769 3570524355 data-in/FreeBSD_pinky_2004111705100100644000175500000240000000056510146630615014670 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.16 0.42 0.54 71 13 31 52 75 299 10 14 4 0 0 8302592 168607744 749514752 73691136 43290624 910494966 3716326539 11 0 data-in/FreeBSD_r4p_2004111705100100644000175500000240000000061010146630613014230 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 73 8 8 1 6 0 297 1 190 20185088 160788480 232419328 1552207872 140197888 1964418883 1563147954 data-in/Linux_staging_2004111705150100644000175500000240000000016610146631266015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_r1z_2004111705150100644000175500000240000000031010146631271014127 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.02 0.17 84 34 23 127 16 3 211 165 8 273 data-in/Linux_r1q_2004111705150100644000175500000240000000026710146631271014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.45 2.37 2.45 89 77 42 142 21 233 162 3 464 data-in/Linux_r1m2_2004111705150100644000175500000240000000031410146631271014200 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.09 0.08 86 81 34 144 20 3 2579 1496 56 1533 data-in/Linux_r1m1_2004111705150100644000175500000240000000031210146631272014176 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.15 0.16 69 73 29 177 51 3 914 480 18 2761 data-in/Linux_r1f_2004111705150100644000175500000240000000027410146631276014121 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.07 1.49 1.28 87 85 46 201 20 8910 13565 15 8763 data-in/Linux_r1a1_2004111705150100644000175500000240000000027110146631271014165 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.30 0.21 0.65 83 34 14 138 27 406 232 18 1086 data-in/Linux_r1a_2004111705150100644000175500000240000000031510146631274014106 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.17 1.30 1.31 91 32 27 183 20 21 5337 4337 90 7221 data-in/Linux_steve_2004111705150100644000175500000240000000011310146631271014542 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705150100644000175500000240000000022410146631271014521 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.28 0.33 0.34 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111705150100644000175500000240000000022510146631271014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.03 19 52 499 136 15 3 0 data-in/Linux_hwnode3_2004111705150100644000175500000240000000022410146631270014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.42 0.54 73 17 798 95 27 3 0 data-in/Linux_hwnode2_2004111705150100644000175500000240000000022510146631271014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.02 0.00 81 15 770 230 23 4 0 data-in/FreeBSD_mb2_2004111705150100644000175500000240000000000010146631264014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705150100644000175500000240000000061010146631271014236 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.01 0.00 9 0 0 2 0 72 7 8 1 6 0 297 1 193 20701184 160747520 231956480 1552195584 140197888 1964648060 1565922387 data-in/FreeBSD_psa4_2004111705150100644000175500000240000000053510146631267014413 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.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104121951 122758298 data-in/FreeBSD_psa3_2004111705150100644000175500000240000000062010146631270014377 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.44 1.43 1.32 21 2 10 33 2 138 36 9 1 1632 4821 984 0 1108 4112384 312295424 1078599680 638693376 64733184 1268898018 1565742030 data-in/FreeBSD_psa2_2004111705150100644000175500000240000000061710146631270014404 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.08 0.23 13 0 1 34 0 131 67 7 1 194 284 628 0 47 1025552384 267333632 370733056 428879872 13950976 1913733047 3605738517 data-in/FreeBSD_pinky_2004111705150100644000175500000240000000056510146631271014674 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.05 0.33 0.48 71 13 31 52 75 309 10 14 4 0 0 4227072 171495424 748916736 80707584 38055936 925786333 3722064563 11 0 data-in/Linux_mb_2004111705150100644000175500000240000000015510146631266014024 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 80 15 1 data-in/Linux_streamguys1_2004111705150100644000175500000240000000022310146631272015703 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.28 1.20 1.02 49 60 624 45 8 3 0 data-in/Linux_mb_2004111705200100644000175500000240000000015510146631744014021 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 77 15 1 data-in/Linux_staging_2004111705200100644000175500000240000000016610146631744015061 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705200100644000175500000240000000011310146631744014261 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.16 0.03 0.01 4 26 233 data-in/Linux_r1z_2004111705200100644000175500000240000000031010146631745014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.01 0.02 0.12 84 34 23 127 18 3 228 174 8 294 data-in/Linux_r1q_2004111705200100644000175500000240000000026710146631746014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.73 2.85 2.64 89 77 42 135 21 263 183 3 520 data-in/Linux_r1m2_2004111705200100644000175500000240000000031410146631742014177 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.10 0.10 0.09 86 81 34 146 20 3 2634 1544 59 1567 data-in/Linux_r1m1_2004111705200100644000175500000240000000031210146631744014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.14 0.14 0.16 69 73 29 171 50 3 939 488 18 2849 data-in/Linux_r1f_2004111705200100644000175500000240000000027410146631751014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.68 1.48 1.32 87 85 46 209 20 8938 13619 15 8771 data-in/Linux_r1a_2004111705200100644000175500000240000000031510146631750014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.80 1.41 1.33 91 32 27 187 20 21 5349 4346 90 7247 data-in/Linux_streamguys1_2004111705200100644000175500000240000000022310146631746015705 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.59 0.79 49 60 624 45 8 3 0 data-in/Linux_steve_2004111705200100644000175500000240000000011310146631745014544 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705200100644000175500000240000000022410146631745014523 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.20 0.30 0.33 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111705200100644000175500000240000000022510146631745014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 19 52 500 136 15 3 0 data-in/Linux_hwnode3_2004111705200100644000175500000240000000022410146631743014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.28 0.36 0.48 73 17 804 96 27 3 0 data-in/Linux_hwnode2_2004111705200100644000175500000240000000022510146631746014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.03 0.00 81 15 777 230 23 4 0 data-in/FreeBSD_mb2_2004111705200100644000175500000240000000000010146631741014200 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705200100644000175500000240000000061010146631743014236 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 74 9 8 1 6 0 297 1 195 19382272 161828864 232185856 1552203776 140197888 1965848794 1567879643 data-in/FreeBSD_psa4_2004111705200100644000175500000240000000053510146631745014410 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 1811935232 137207808 104198144 45060096 32768 104127872 122765806 data-in/FreeBSD_psa3_2004111705200100644000175500000240000000062010146631744014401 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.58 1.38 1.32 21 2 10 33 2 151 38 9 1 1670 4951 994 2 1239 8065024 359739392 1078366208 578195456 74067968 1276660702 1573859933 data-in/FreeBSD_psa2_2004111705200100644000175500000240000000061710146631744014406 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.23 0.13 0.19 13 0 1 34 0 130 66 7 1 235 332 719 0 55 1030660096 269836288 363626496 428376064 13950976 1920661265 3643169662 data-in/FreeBSD_pinky_2004111705200100644000175500000240000000056610146631745014677 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.06 0.32 0.46 71 13 31 52 75 296 10 14 4 0 0 16429056 170364928 741871616 77004800 37732352 932481647 3727549127 11 0 data-in/Linux_r1a1_2004111705200100644000175500000240000000027110146631745014167 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.05 0.13 0.48 83 34 14 125 24 412 239 18 1161 data-in/Linux_staging_2004111705250100644000175500000240000000016610146632417015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705250100644000175500000240000000011310146632421014257 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.02 0.04 0.00 4 26 232 data-in/Linux_r1z_2004111705250100644000175500000240000000031110146632421014127 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.00 0.08 84 34 23 127 17 3 245 194 10 311 data-in/Linux_r1q_2004111705250100644000175500000240000000026710146632421014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.24 2.43 2.51 89 77 42 135 20 293 206 4 577 data-in/Linux_r1m2_2004111705250100644000175500000240000000031410146632421014177 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.08 0.08 86 81 34 139 20 3 2710 1611 59 1602 data-in/Linux_r1m1_2004111705250100644000175500000240000000031210146632420014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.01 0.08 0.12 69 73 29 166 50 3 976 520 18 2920 data-in/Linux_r1f_2004111705250100644000175500000240000000027410146632426014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.59 1.45 1.33 87 85 46 199 20 8961 13685 15 8784 data-in/Linux_r1a1_2004111705250100644000175500000240000000027110146632421014164 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.12 0.14 0.38 83 34 14 124 23 424 262 20 1237 data-in/Linux_r1a_2004111705250100644000175500000240000000031510146632424014105 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.25 1.29 1.28 91 32 27 187 20 21 5363 4352 90 7275 data-in/Linux_streamguys1_2004111705250100644000175500000240000000022310146632422015702 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.61 0.69 0.78 49 60 624 45 8 3 0 data-in/Linux_steve_2004111705250100644000175500000240000000011310146632421014541 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2371 data-in/Linux_mnode_2004111705250100644000175500000240000000022410146632421014520 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.32 0.35 0.34 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111705250100644000175500000240000000022510146632416014774 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.02 0.02 0.00 19 52 500 136 15 3 0 data-in/Linux_hwnode3_2004111705250100644000175500000240000000022410146632420014764 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.35 0.34 0.43 73 17 806 96 27 3 0 data-in/Linux_hwnode2_2004111705250100644000175500000240000000022510146632420014764 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.02 0.00 81 15 769 230 23 4 0 data-in/FreeBSD_mb2_2004111705250100644000175500000240000000000010146632415014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705250100644000175500000240000000061010146632421014235 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.03 0.01 0.00 9 0 1 2 0 74 9 8 1 6 0 297 1 197 18903040 162840576 231653376 1552203776 140197888 1967155117 1571010379 data-in/FreeBSD_psa4_2004111705250100644000175500000240000000053510146632421014405 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 1811935232 137207808 104198144 45060096 32768 104133781 122772868 data-in/FreeBSD_psa3_2004111705250100644000175500000240000000062110146632421014400 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.18 1.27 1.28 21 2 10 34 2 139 32 9 1 1718 5085 1030 2 1373 9572352 364306432 1078116352 553304064 93134848 1278577589 1584419060 data-in/FreeBSD_psa2_2004111705250100644000175500000240000000061710146632417014411 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.08 0.07 0.14 13 0 1 34 0 132 69 7 1 287 388 842 0 64 1026019328 288907264 364359680 413425664 13737984 1926715514 3715642976 data-in/FreeBSD_pinky_2004111705250100644000175500000240000000056610146632421014674 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.27 0.40 0.48 71 13 31 52 75 299 10 14 4 0 0 15073280 171118592 741773312 78524416 36913152 937789831 3732877870 11 0 data-in/Linux_mb_2004111705250100644000175500000240000000015510146632420014016 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.02 0.02 0.00 13 16 81 15 1 data-in/Linux_mb_2004111705300100644000175500000240000000015510146633075014021 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.02 0.00 13 16 77 15 1 data-in/Linux_psa1_2004111705300100644000175500000240000000011310146633074014260 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.01 0.00 4 26 233 data-in/Linux_r1z_2004111705300100644000175500000240000000031110146633076014132 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.02 0.05 84 34 23 130 16 3 259 204 10 330 data-in/Linux_r1m2_2004111705300100644000175500000240000000031410146633075014201 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.16 0.06 0.07 86 81 34 146 20 3 2771 1667 61 1642 data-in/Linux_r1m1_2004111705300100644000175500000240000000031310146633075014177 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.16 0.09 0.10 69 73 29 168 50 3 1004 528 18 2998 data-in/Linux_r1f_2004111705300100644000175500000240000000027410146633102014104 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.34 1.39 1.34 87 85 46 200 20 8992 13729 15 8792 data-in/Linux_r1a1_2004111705300100644000175500000240000000027110146633074014165 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.17 0.13 0.31 83 34 14 133 28 439 267 22 1312 data-in/Linux_r1a_2004111705300100644000175500000240000000031510146633100014071 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.25 1.26 91 32 27 182 20 21 5380 4376 91 7300 data-in/Linux_streamguys1_2004111705300100644000175500000240000000022310146633076015704 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.85 0.70 0.72 49 60 628 45 8 3 0 data-in/Linux_steve_2004111705300100644000175500000240000000011310146633076014544 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2373 data-in/Linux_mnode_2004111705300100644000175500000240000000022410146633074014521 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.22 0.37 0.35 78 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111705300100644000175500000240000000022510146633075014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.01 0.02 0.00 19 52 508 140 15 3 0 data-in/Linux_hwnode3_2004111705300100644000175500000240000000022410146633075014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.82 0.40 0.40 73 17 808 95 27 3 0 data-in/Linux_hwnode2_2004111705300100644000175500000240000000022510146633076014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 774 230 23 4 0 data-in/FreeBSD_mb2_2004111705300100644000175500000240000000000010146633070014176 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705300100644000175500000240000000061010146633074014236 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 74 9 8 1 6 0 297 1 199 19783680 160944128 232669184 1552203776 140197888 1967597168 1573590192 data-in/FreeBSD_psa4_2004111705300100644000175500000240000000053510146633074014406 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 1811931136 137211904 104198144 45060096 32768 104141246 122780308 data-in/FreeBSD_psa3_2004111705300100644000175500000240000000062210146633075014403 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.25 1.29 1.28 21 2 10 34 2 147 37 9 1 1778 5241 1094 6 1500 10731520 356274176 1084170240 570253312 77004800 1280907061 1594467610 data-in/FreeBSD_psa2_2004111705300100644000175500000240000000062010146633074014377 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.03 0.09 13 0 1 34 0 134 69 7 1 334 422 1032 0 72 1022730240 296321024 365301760 408645632 13451264 1933755854 3764801782 data-in/FreeBSD_pinky_2004111705300100644000175500000240000000056510146633075014675 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.35 0.46 71 13 31 52 75 310 10 14 5 0 0 8138752 170467328 751579136 81002496 32215040 943232628 3738281772 11 0 data-in/Linux_staging_2004111705300100644000175500000240000000016610146633074015060 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 114 26 0 data-in/Linux_r1q_2004111705300100644000175500000240000000026710146633077014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.40 2.38 2.45 89 77 42 139 24 323 226 4 636 data-in/Linux_mb_2004111705350100644000175500000240000000015510146633550014024 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.01 0.00 13 16 77 15 1 data-in/Linux_staging_2004111705350100644000175500000240000000016610146633550015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705350100644000175500000240000000011310146633550014264 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.65 0.15 0.05 4 26 233 data-in/Linux_r1z_2004111705350100644000175500000240000000031110146633551014135 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.03 0.05 84 34 23 129 24 3 277 207 10 349 data-in/Linux_r1q_2004111705350100644000175500000240000000026710146633551014136 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.82 2.80 2.62 89 77 42 136 23 344 248 4 688 data-in/Linux_r1m2_2004111705350100644000175500000240000000031410146633551014205 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 134 20 3 2840 1710 63 1678 data-in/Linux_r1m1_2004111705350100644000175500000240000000031310146633550014202 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.08 0.09 69 73 29 167 50 3 1022 539 18 3077 data-in/Linux_r1f_2004111705350100644000175500000240000000027410146633557014127 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.64 1.35 1.32 87 85 46 219 20 9029 13764 15 8806 data-in/Linux_r1a1_2004111705350100644000175500000240000000027110146633550014171 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.14 0.26 83 34 14 130 26 459 272 22 1389 data-in/Linux_r1a_2004111705350100644000175500000240000000031510146633554014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.75 1.42 1.31 91 32 27 192 20 21 5401 4393 91 7328 data-in/Linux_streamguys1_2004111705350100644000175500000240000000022310146633551015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.39 1.54 1.06 49 60 613 46 8 3 0 data-in/Linux_steve_2004111705350100644000175500000240000000011310146633552014550 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2363 data-in/Linux_mnode_2004111705350100644000175500000240000000022410146633551014526 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.29 0.33 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111705350100644000175500000240000000022510146633550014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.04 0.01 19 52 525 146 15 3 0 data-in/Linux_hwnode3_2004111705350100644000175500000240000000022410146633550014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.34 0.37 73 17 801 95 27 3 0 data-in/Linux_hwnode2_2004111705350100644000175500000240000000022510146633550014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.02 0.03 0.00 81 15 774 230 23 4 0 data-in/FreeBSD_mb2_2004111705350100644000175500000240000000000010146633544014211 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705350100644000175500000240000000061010146633550014242 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 74 9 8 1 6 0 303 1 201 18661376 160964608 233771008 1552203776 140197888 1967854445 1576781442 data-in/FreeBSD_psa4_2004111705350100644000175500000240000000053510146633546014417 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.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104146813 122787346 data-in/FreeBSD_psa2_2004111705350100644000175500000240000000062010146633547014411 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.03 0.07 0.08 13 0 1 34 0 131 70 7 1 425 475 1492 0 81 1016975360 295006208 366239744 411910144 16318464 1941072297 3833192111 data-in/FreeBSD_pinky_2004111705350100644000175500000240000000056610146633550014701 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 2.27 0.84 0.64 71 13 31 52 75 302 10 14 5 0 0 16109568 170262528 742993920 81850368 32186368 948391534 3743597941 11 0 data-in/FreeBSD_psa3_2004111705350100644000175500000240000000062210146633547014414 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.33 1.17 1.20 21 2 10 34 2 147 32 9 1 1818 5375 1110 6 1633 11939840 343498752 1083555840 581611520 77828096 1282913228 1602551634 data-in/Linux_mb_2004111705400100644000175500000240000000015510146634224014017 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 78 15 1 data-in/Linux_staging_2004111705400100644000175500000240000000016610146634224015057 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705400100644000175500000240000000011310146634224014257 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.04 0.02 4 26 234 data-in/Linux_r1z_2004111705400100644000175500000240000000031110146634225014130 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.00 0.02 84 34 23 121 16 3 295 224 12 372 data-in/Linux_r1q_2004111705400100644000175500000240000000026710146634226014132 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.33 2.53 2.54 89 77 42 137 21 375 260 5 752 data-in/Linux_r1m2_2004111705400100644000175500000240000000031410146634225014200 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.04 0.06 86 81 34 141 20 3 2906 1763 64 1717 data-in/Linux_r1m1_2004111705400100644000175500000240000000031310146634225014176 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.05 0.08 69 73 29 169 50 3 1038 563 18 3156 data-in/Linux_r1f_2004111705400100644000175500000240000000027410146634232014112 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.54 1.50 1.38 87 86 46 210 20 9100 13815 15 8816 data-in/Linux_r1a1_2004111705400100644000175500000240000000027110146634223014163 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.16 0.19 0.25 83 34 14 127 24 476 292 24 1463 data-in/Linux_r1a_2004111705400100644000175500000240000000031510146634227014105 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.58 1.38 91 32 27 189 20 22 5414 4404 91 7353 data-in/Linux_streamguys1_2004111705400100644000175500000240000000022310146634226015703 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.53 0.82 0.86 49 60 612 45 8 3 0 data-in/Linux_steve_2004111705400100644000175500000240000000011310146634226014543 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.06 0.03 0.00 73 63 2366 data-in/Linux_mnode_2004111705400100644000175500000240000000022410146634225014521 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.24 0.31 0.33 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111705400100644000175500000240000000022510146634225014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.06 0.01 19 52 503 135 15 3 0 data-in/Linux_hwnode3_2004111705400100644000175500000240000000022410146634224014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.15 0.29 0.34 73 17 805 95 27 3 0 data-in/Linux_hwnode2_2004111705400100644000175500000240000000022510146634225014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.02 0.02 0.00 81 15 774 229 23 4 0 data-in/FreeBSD_mb2_2004111705400100644000175500000240000000000010146634221014176 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705400100644000175500000240000000061010146634225014236 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 74 9 8 1 6 0 303 1 203 19410944 160968704 233017344 1552203776 140197888 1968048088 1579028311 data-in/FreeBSD_psa4_2004111705400100644000175500000240000000053510146634223014404 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.03 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104152632 122794372 data-in/FreeBSD_psa3_2004111705400100644000175500000240000000062110146634223014377 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 0.94 1.06 1.14 21 2 10 35 2 140 32 9 1 1860 5517 1224 6 1757 5070848 292155392 1088442368 649424896 63340544 1285727515 1613747310 data-in/FreeBSD_psa2_2004111705400100644000175500000240000000062010146634224014376 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.05 0.07 13 0 1 34 0 136 73 7 1 517 512 1806 0 92 1014689792 293236736 364036096 418033664 16453632 1951295050 3972874521 data-in/FreeBSD_pinky_2004111705400100644000175500000240000000056610146634224014674 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.18 0.43 0.50 71 13 31 52 75 296 10 14 5 0 0 14815232 168869888 743116800 84471808 32129024 953751616 3748991634 11 0 data-in/Linux_staging_2004111705450100644000175500000240000000016610146634676015077 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705450100644000175500000240000000011310146634700014263 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.02 0.00 4 26 234 data-in/Linux_r1q_2004111705450100644000175500000240000000026710146634702014136 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.31 2.31 2.43 89 77 42 144 24 393 284 5 806 data-in/Linux_r1m2_2004111705450100644000175500000240000000031410146634701014204 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.28 0.10 0.06 86 81 34 142 20 3 2975 1797 65 1751 data-in/Linux_r1m1_2004111705450100644000175500000240000000031310146634701014202 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.09 0.05 0.07 69 73 29 172 50 3 1067 578 18 3226 data-in/Linux_r1f_2004111705450100644000175500000240000000027410146634706014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.79 1.64 1.45 87 86 46 208 20 9173 13873 15 8830 data-in/Linux_r1a1_2004111705450100644000175500000240000000027110146634700014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.32 0.25 0.26 83 35 14 131 24 493 315 28 1542 data-in/Linux_r1a_2004111705450100644000175500000240000000031510146634702014110 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.26 1.33 1.31 91 32 27 188 20 22 5427 4428 92 7379 data-in/Linux_steve_2004111705450100644000175500000240000000011310146634700014545 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.01 0.00 73 63 2373 data-in/Linux_streamguys1_2004111705450100644000175500000240000000022310146634701015706 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 2.63 1.75 1.17 49 60 612 45 8 3 0 data-in/Linux_mnode_2004111705450100644000175500000240000000022410146634701014525 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.37 0.33 0.33 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111705450100644000175500000240000000022510146634701014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.12 0.05 0.01 19 52 500 143 15 3 0 data-in/Linux_hwnode3_2004111705450100644000175500000240000000022410146634700014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.28 0.33 0.35 73 17 805 97 27 3 0 data-in/Linux_hwnode2_2004111705450100644000175500000240000000022510146634701014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111705450100644000175500000240000000000010146634674014217 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705450100644000175500000240000000061010146634700014241 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 74 9 8 1 6 0 303 1 205 19431424 160968704 232996864 1552203776 140197888 1968491257 1592258482 data-in/FreeBSD_psa4_2004111705450100644000175500000240000000053510146634700014411 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 1811886080 137211904 104251392 45051904 32768 104160307 122802392 data-in/FreeBSD_psa3_2004111705450100644000175500000240000000062110146634700014404 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 0.94 1.10 1.13 21 2 10 35 2 151 36 9 1 1906 5625 1278 6 1901 4120576 336502784 1098248192 582737920 76824576 1288997788 1622979303 data-in/FreeBSD_psa2_2004111705450100644000175500000240000000062110146634700014403 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.04 0.06 13 0 1 34 0 141 74 7 1 567 539 2060 0 101 1005735936 292450304 368660480 422572032 17031168 1959534076 4049708818 data-in/FreeBSD_pinky_2004111705450100644000175500000240000000056510146634700014677 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.32 0.48 0.53 71 13 31 52 75 294 10 14 5 0 0 7364608 172392448 744824832 62521344 56299520 959014493 3754327950 11 0 data-in/Linux_mb_2004111705450100644000175500000240000000015510146634676014037 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.02 0.00 13 16 75 15 1 data-in/Linux_r1z_2004111705450100644000175500000240000000031110146634701014134 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.02 0.01 84 34 23 123 16 3 311 232 12 391 data-in/Linux_mb_2004111705500100644000175500000240000000015510146635354014025 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 81 15 1 data-in/Linux_staging_2004111705500100644000175500000240000000016610146635354015065 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111705500100644000175500000240000000011310146635354014265 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.01 0.02 0.00 4 26 234 data-in/Linux_r1z_2004111705500100644000175500000240000000031110146635354014135 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.00 0.00 84 34 23 117 16 3 323 236 12 411 data-in/Linux_r1q_2004111705500100644000175500000240000000026710146635355014137 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.82 2.83 2.62 89 77 42 139 21 414 323 5 866 data-in/Linux_r1m2_2004111705500100644000175500000240000000031410146635355014206 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.28 0.16 0.10 86 81 34 133 20 3 3043 1845 68 1785 data-in/Linux_r1m1_2004111705500100644000175500000240000000031310146635355014204 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.03 0.06 0.07 69 73 29 169 50 3 1093 590 18 3301 data-in/Linux_r1f_2004111705500100644000175500000240000000027410146635365014123 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.54 1.51 1.44 87 86 46 207 20 9206 13911 15 8838 data-in/Linux_r1a1_2004111705500100644000175500000240000000027110146635355014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.34 0.25 0.25 83 35 14 139 39 502 334 28 1615 data-in/Linux_r1a_2004111705500100644000175500000240000000031510146635361014106 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.50 1.37 91 32 27 190 20 22 5440 4442 92 7406 data-in/Linux_streamguys1_2004111705500100644000175500000240000000022310146635356015711 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.26 0.80 0.90 49 60 612 45 8 3 0 data-in/Linux_steve_2004111705500100644000175500000240000000011310146635356014551 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.01 0.02 0.00 73 63 2374 data-in/Linux_mnode_2004111705500100644000175500000240000000022410146635356014530 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.28 0.31 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111705500100644000175500000240000000022510146635355014777 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.02 0.00 19 52 491 132 15 3 0 data-in/Linux_hwnode3_2004111705500100644000175500000240000000022410146635354014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.38 0.43 0.38 73 17 812 93 29 3 0 data-in/Linux_hwnode2_2004111705500100644000175500000240000000022510146635356014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.00 0.00 81 15 773 229 23 4 0 data-in/FreeBSD_mb2_2004111705500100644000175500000240000000000010146635351014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705500100644000175500000240000000061010146635355014244 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 74 9 8 1 6 0 303 1 207 19427328 160972800 232996864 1552203776 140197888 1968697190 1594272443 data-in/FreeBSD_psa3_2004111705500100644000175500000240000000062110146635354014406 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 0.80 0.94 1.05 21 2 10 35 2 134 34 8 1 1972 5747 1304 6 2030 3928064 290500608 1092878336 622866432 88260608 1290985823 1633269993 data-in/FreeBSD_psa2_2004111705500100644000175500000240000000062010146635353014403 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.04 0.04 0.05 13 0 1 34 0 133 72 7 1 603 584 2221 0 109 999292928 291229696 368766976 429551616 17608704 1966298301 4112715141 data-in/FreeBSD_pinky_2004111705500100644000175500000240000000056610146635355014703 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 2.30 0.92 0.70 71 13 31 52 75 293 10 14 5 0 0 12091392 170827776 745062400 70373376 45047808 964572811 3759759418 11 0 data-in/FreeBSD_psa4_2004111705500100644000175500000240000000053510146635353014412 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 1811927040 137216000 104198144 45060096 32768 104166030 122809386 data-in/Linux_staging_2004111705550100644000175500000240000000016610146636030015062 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 113 26 0 data-in/Linux_r1z_2004111705550100644000175500000240000000031110146636031014133 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.01 0.00 84 34 23 117 16 3 336 244 12 430 data-in/Linux_r1q_2004111705550100644000175500000240000000026710146636031014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.31 2.46 2.51 89 77 42 140 24 446 341 6 926 data-in/Linux_r1m2_2004111705550100644000175500000240000000031410146636031014203 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.01 0.07 0.07 86 81 34 132 20 3 3104 1877 68 1820 data-in/Linux_r1m1_2004111705550100644000175500000240000000031310146636031014201 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 69 73 29 166 50 3 1119 601 18 3380 data-in/Linux_r1f_2004111705550100644000175500000240000000027410146636036014124 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.39 1.51 1.46 87 86 46 209 20 9242 13970 15 8850 data-in/Linux_r1a1_2004111705550100644000175500000240000000027110146636031014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.14 0.27 0.26 83 35 14 128 29 515 337 28 1695 data-in/Linux_r1a_2004111705550100644000175500000240000000031510146636032014107 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.17 1.34 1.34 91 32 27 189 20 23 5458 4473 92 7432 data-in/Linux_steve_2004111705550100644000175500000240000000011310146636032014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2374 data-in/Linux_streamguys1_2004111705550100644000175500000240000000022310146636032015706 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.34 0.47 0.71 49 60 612 45 8 3 0 data-in/Linux_mnode_2004111705550100644000175500000240000000022410146636030014523 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.24 0.30 0.30 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111705550100644000175500000240000000022510146636027015001 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.05 0.01 0.00 19 52 489 132 15 3 0 data-in/Linux_hwnode3_2004111705550100644000175500000240000000022410146636030014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.04 0.48 0.39 73 17 820 89 27 3 0 data-in/Linux_hwnode2_2004111705550100644000175500000240000000022510146636030014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.14 0.06 0.01 81 15 762 223 23 4 0 data-in/FreeBSD_mb2_2004111705550100644000175500000240000000000010146636025014210 0ustar djhstaffdata-in/FreeBSD_r4p_2004111705550100644000175500000240000000061010146636030014240 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 74 9 8 1 6 0 303 1 209 19333120 160997376 233082880 1552187392 140197888 1968867380 1596317386 data-in/FreeBSD_psa4_2004111705550100644000175500000240000000053510146636030014410 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 1811927040 137216000 104198144 45060096 32768 104172843 122817022 data-in/FreeBSD_psa3_2004111705550100644000175500000240000000062110146636027014411 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.02 1.13 1.11 21 2 10 35 2 136 30 8 1 2016 5867 1324 6 2160 4096000 347136000 1067515904 609853440 69832704 1292762410 1641915799 data-in/FreeBSD_psa2_2004111705550100644000175500000240000000062110146636027014410 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.02 13 0 1 34 0 132 70 7 1 635 645 2369 0 118 1008054272 289689600 353054720 434057216 21594112 1974501414 4254865406 data-in/FreeBSD_pinky_2004111705550100644000175500000240000000056610146636031014700 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.28 0.52 0.57 71 13 31 52 75 302 11 14 5 0 0 13443072 170807296 742313984 74530816 41734144 969948930 3764877295 11 0 data-in/Linux_mb_2004111705550100644000175500000240000000015510146636030014022 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.02 0.02 0.00 13 16 86 15 1 data-in/Linux_psa1_2004111705550100644000175500000240000000011310146636031014263 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 232 data-in/Linux_mb_2004111706000100644000175500000240000000015510146636503014016 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 78 15 1 data-in/Linux_staging_2004111706000100644000175500000240000000016610146636504015057 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.22 0.05 0.02 8 100 113 26 0 data-in/Linux_psa1_2004111706000100644000175500000240000000011310146636505014260 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.32 0.08 0.02 4 26 227 data-in/Linux_r1z_2004111706000100644000175500000240000000031110146636506014131 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.02 0.01 84 34 23 121 16 3 350 252 12 449 data-in/Linux_r1q_2004111706000100644000175500000240000000026710146636507014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.45 2.38 2.44 89 77 42 141 20 474 365 6 986 data-in/Linux_r1m2_2004111706000100644000175500000240000000031410146636505014200 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.13 0.12 0.09 86 81 34 136 20 3 3175 1929 70 1856