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 data-in/Linux_r1m1_2004111706000100644000175500000240000000031310146636505014176 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.08 0.07 69 73 29 169 50 3 1144 615 18 3457 data-in/Linux_r1a1_2004111706000100644000175500000240000000027110146636505014165 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.22 0.19 0.22 83 35 14 134 28 527 357 32 1764 data-in/Linux_r1a_2004111706000100644000175500000240000000031510146636506014104 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.39 1.39 1.36 91 32 27 186 20 23 5476 4508 93 7456 data-in/Linux_streamguys1_2004111706000100644000175500000240000000022310146636505015702 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.94 0.76 0.75 49 60 614 45 8 3 0 data-in/Linux_mnode_2004111706000100644000175500000240000000022410146636506014522 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.33 0.32 0.30 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111706000100644000175500000240000000022510146636504014770 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 490 132 15 3 0 data-in/Linux_hwnode3_2004111706000100644000175500000240000000022410146636504014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.80 0.62 0.47 73 17 801 90 27 3 0 data-in/Linux_hwnode2_2004111706000100644000175500000240000000022510146636506014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 81 15 762 223 23 4 0 data-in/FreeBSD_mb2_2004111706000100644000175500000240000000000010146636501014176 0ustar djhstaffdata-in/Linux_r1f_2004111706000100644000175500000240000000027410146636513014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.67 1.50 1.46 87 86 46 213 20 9329 14024 15 8858 data-in/FreeBSD_r4p_2004111706000100644000175500000240000000061010146636504014235 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.07 0.02 0.01 9 0 0 2 0 74 9 8 1 6 0 303 1 211 18522112 161013760 233877504 1552187392 140197888 1969177482 1598825471 data-in/FreeBSD_psa4_2004111706000100644000175500000240000000053510146636504014405 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 104179231 122824048 data-in/FreeBSD_psa3_2004111706000100644000175500000240000000062110146636505014401 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.10 1.12 1.10 21 2 10 36 2 137 34 8 1 2050 6031 1360 6 2290 4091904 355762176 1089957888 558858240 89763840 1294730976 1650340317 data-in/FreeBSD_psa2_2004111706000100644000175500000240000000061610146636504014403 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.42 0.44 0.20 13 0 1 34 0 133 69 7 1 674 698 2533 0 127 1011560448 288870400 346677248 437485568 21856256 1981077920 8806741 data-in/FreeBSD_pinky_2004111706000100644000175500000240000000056610146636505014675 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.11 0.42 0.53 71 13 31 52 75 280 10 14 5 0 0 10366976 169119744 746065920 78045184 39804928 975490614 3770005483 11 0 data-in/Linux_steve_2004111706000100644000175500000240000000011310146636506014543 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2374 data-in/Linux_mb_2004111706050100644000175500000240000000015510146637161014024 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 82 15 1 data-in/Linux_staging_2004111706050100644000175500000240000000016610146637161015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.01 0.00 8 100 113 26 0 data-in/Linux_psa1_2004111706050100644000175500000240000000011310146637160014263 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.02 0.00 4 26 226 data-in/Linux_r1z_2004111706050100644000175500000240000000031110146637162014135 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.03 0.00 84 34 23 125 20 3 366 267 14 474 data-in/Linux_r1q_2004111706050100644000175500000240000000027010146637162014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.72 2.85 2.64 89 77 42 136 20 503 400 6 1043 data-in/Linux_r1m1_2004111706050100644000175500000240000000031310146637161014202 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.11 0.09 69 73 29 165 50 3 1170 629 18 3533 data-in/Linux_r1f_2004111706050100644000175500000240000000027410146637166014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.42 1.54 1.50 87 86 46 209 20 9360 14075 15 8871 data-in/Linux_r1a1_2004111706050100644000175500000240000000027110146637161014171 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.11 0.14 0.18 83 35 14 132 29 553 361 32 1849 data-in/Linux_r1a_2004111706050100644000175500000240000000031510146637166014114 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.23 1.75 1.50 91 33 27 193 20 23 5486 4526 93 7484 data-in/Linux_streamguys1_2004111706050100644000175500000240000000022310146637162015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.37 0.54 0.64 49 60 612 45 8 3 0 data-in/Linux_steve_2004111706050100644000175500000240000000011310146637161014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2375 data-in/Linux_mnode_2004111706050100644000175500000240000000022410146637161014525 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.27 0.34 0.31 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111706050100644000175500000240000000022510146637160014774 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 492 132 15 3 0 data-in/Linux_hwnode3_2004111706050100644000175500000240000000022410146637160014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.13 0.39 0.41 73 17 796 91 27 3 0 data-in/Linux_hwnode2_2004111706050100644000175500000240000000022510146637157014777 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 81 15 757 223 23 4 0 data-in/FreeBSD_mb2_2004111706050100644000175500000240000000000010146637155014211 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706050100644000175500000240000000061110146637160014242 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.00 9 0 0 2 0 116 51 8 1 6 0 309 1 213 4026368 162918400 247730176 1552289792 138833920 1969424718 1600394322 data-in/FreeBSD_psa4_2004111706050100644000175500000240000000053510146637160014411 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 104185996 122831772 data-in/FreeBSD_psa3_2004111706050100644000175500000240000000062110146637162014406 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.31 1.26 1.16 21 2 10 36 2 149 35 8 1 2120 6179 1612 6 2422 3530752 331755520 1083179008 581500928 98467840 1297602613 1659669615 data-in/FreeBSD_psa2_2004111706050100644000175500000240000000061710146637160014410 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.21 0.24 0.17 13 0 1 34 0 133 72 7 1 720 757 2802 0 138 1012015104 287678464 341463040 444534784 20758528 1989823889 92983640 data-in/FreeBSD_pinky_2004111706050100644000175500000240000000056510146637161014700 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.41 0.53 71 13 31 52 75 302 10 14 5 0 0 9744384 169402368 744628224 86749184 32878592 981011424 3775379127 11 0 data-in/Linux_r1m2_2004111706050100644000175500000240000000031410146637161014204 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.11 0.09 86 81 34 135 20 3 3246 1981 72 1896 data-in/Linux_mb_2004111706100100644000175500000240000000015510146637634014025 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.05 0.03 0.00 13 16 81 15 1 data-in/Linux_staging_2004111706100100644000175500000240000000016610146637632015063 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.06 0.03 0.01 8 100 113 26 0 data-in/Linux_psa1_2004111706100100644000175500000240000000011310146637634014265 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.24 0.05 0.02 4 26 227 data-in/Linux_r1z_2004111706100100644000175500000240000000031110146637633014134 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 119 16 3 390 292 14 498 data-in/Linux_r1q_2004111706100100644000175500000240000000027010146637635014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.37 2.52 2.54 89 77 42 132 20 545 422 7 1108 data-in/Linux_r1m2_2004111706100100644000175500000240000000031410146637634014205 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.08 0.08 86 81 34 142 22 3 3310 2037 73 1938 data-in/Linux_r1m1_2004111706100100644000175500000240000000031310146637635014204 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.08 0.08 69 73 29 160 50 3 1199 639 18 3607 data-in/Linux_r1f_2004111706100100644000175500000240000000027410146637641014117 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.34 1.35 1.42 87 86 46 210 20 9388 14139 15 8879 data-in/Linux_r1a1_2004111706100100644000175500000240000000027110146637634014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.07 0.10 0.15 83 35 14 123 25 575 378 32 1921 data-in/Linux_r1a_2004111706100100644000175500000240000000031510146637640014105 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.45 1.48 1.44 91 33 27 190 20 23 5508 4551 93 7509 data-in/Linux_streamguys1_2004111706100100644000175500000240000000022310146637636015711 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 2.50 1.97 1.17 49 60 612 45 8 3 0 data-in/Linux_steve_2004111706100100644000175500000240000000011310146637635014550 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111706100100644000175500000240000000022410146637635014527 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.31 0.36 0.33 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111706100100644000175500000240000000022510146637635014777 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 19 52 489 132 15 3 0 data-in/Linux_hwnode3_2004111706100100644000175500000240000000022410146637634014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.52 0.41 0.41 73 17 806 90 27 3 0 data-in/FreeBSD_mb2_2004111706100100644000175500000240000000000010146637631014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706100100644000175500000240000000061110146637634014244 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 315 1 215 19861504 161103872 234176512 1552179200 138477568 1969721858 1604718728 data-in/FreeBSD_psa3_2004111706100100644000175500000240000000062110146637637014411 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.66 1.01 1.08 21 2 10 36 2 127 34 8 1 2142 6341 1678 6 2550 3358720 369451008 646365184 978280448 100978688 1300502019 1667889470 data-in/FreeBSD_psa2_2004111706100100644000175500000240000000062010146637633014403 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.07 0.16 0.15 13 0 1 34 0 140 73 7 1 763 821 2936 0 150 1004847104 286101504 343855104 450330624 21315584 1998668673 181760848 data-in/FreeBSD_pinky_2004111706100100644000175500000240000000056510146637634014701 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.42 0.53 71 13 31 52 75 299 10 14 5 0 0 9347072 170545152 743940096 88121344 31449088 986462421 3780722857 11 0 data-in/Linux_hwnode2_2004111706100100644000175500000240000000022510146637635014774 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.11 0.07 0.02 81 15 759 223 23 4 0 data-in/FreeBSD_psa4_2004111706100100644000175500000240000000053510146637634014413 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.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104192063 122838914 data-in/Linux_mb_2004111706150100644000175500000240000000015510146640312014015 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 79 15 1 data-in/Linux_staging_2004111706150100644000175500000240000000016610146640311015054 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.87 0.45 0.17 8 100 114 26 0 data-in/Linux_psa1_2004111706150100644000175500000240000000011310146640311014254 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.02 0.04 0.00 4 26 227 data-in/Linux_r1z_2004111706150100644000175500000240000000031110146640312014125 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 127 18 3 398 294 14 516 data-in/Linux_r1q_2004111706150100644000175500000240000000027010146640310014116 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.52 2.42 2.47 89 77 42 137 20 566 443 7 1172 data-in/Linux_r1m2_2004111706150100644000175500000240000000031410146640311014174 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.05 0.07 86 81 34 141 20 3 3374 2081 74 1972 data-in/Linux_r1m1_2004111706150100644000175500000240000000031310146640311014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.25 0.11 0.09 69 73 29 176 50 3 1238 657 18 3687 data-in/Linux_r1f_2004111706150100644000175500000240000000027410146640316014115 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.35 1.37 1.41 87 86 46 205 20 9423 14209 15 8891 data-in/Linux_r1a1_2004111706150100644000175500000240000000027110146640307014166 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.06 0.13 0.15 83 35 14 130 25 588 390 36 2000 data-in/Linux_streamguys1_2004111706150100644000175500000240000000022310146640312015677 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.49 0.99 0.95 49 60 617 45 8 3 0 data-in/Linux_steve_2004111706150100644000175500000240000000011310146640312014537 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111706150100644000175500000240000000022410146640312014516 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.29 0.34 0.33 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111706150100644000175500000240000000022510146640311014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.06 0.05 0.02 19 52 492 132 15 3 0 data-in/Linux_hwnode3_2004111706150100644000175500000240000000022410146640310014761 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.51 0.42 0.40 73 17 809 92 30 3 0 data-in/Linux_hwnode2_2004111706150100644000175500000240000000022510146640311014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.09 0.07 0.02 81 15 761 223 23 4 0 data-in/FreeBSD_mb2_2004111706150100644000175500000240000000000010146640305014201 0ustar djhstaffdata-in/Linux_r1a_2004111706150100644000175500000240000000031510146640313014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.31 1.42 1.42 91 33 27 188 20 23 5525 4568 94 7535 data-in/FreeBSD_r4p_2004111706150100644000175500000240000000061110146640307014240 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 315 1 217 19582976 161218560 234434560 1552084992 138477568 1970053897 1609987832 data-in/FreeBSD_psa4_2004111706150100644000175500000240000000053510146640310014401 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 1811922944 137220096 104198144 45060096 32768 104197964 122845976 data-in/FreeBSD_psa2_2004111706150100644000175500000240000000062010146640311014373 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.14 0.14 0.14 13 0 1 34 0 136 73 7 1 798 875 3097 0 161 1001213952 284172288 345493504 455020544 20549632 2005769016 230394191 data-in/FreeBSD_pinky_2004111706150100644000175500000240000000056510146640311014670 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.57 0.61 71 13 31 52 75 320 10 14 5 0 0 7995392 171532288 750710784 80519168 32645120 997735689 3786535989 11 0 data-in/FreeBSD_psa3_2004111706150100644000175500000240000000062210146640312014377 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.92 0.96 1.04 21 2 10 36 2 134 32 8 1 2192 6467 1694 12 2689 3473408 368467968 636125184 1000189952 90177536 1347688847 3535373401 data-in/Linux_mb_2004111706200100644000175500000240000000015510146640765014025 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_2004111706200100644000175500000240000000016610146640765015065 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 1.78 1.30 0.59 8 100 114 26 0 data-in/Linux_psa1_2004111706200100644000175500000240000000011310146640764014264 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.01 0.00 4 26 227 data-in/Linux_r1z_2004111706200100644000175500000240000000031110146640765014135 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 121 18 3 409 311 14 539 data-in/Linux_r1m2_2004111706200100644000175500000240000000031410146640763014203 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 136 20 3 3419 2116 77 2016 data-in/Linux_r1m1_2004111706200100644000175500000240000000031310146640765014203 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.10 69 73 29 168 50 3 1256 660 18 3757 data-in/Linux_r1f_2004111706200100644000175500000240000000027410146640773014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.78 1.50 1.44 87 86 46 209 20 9464 14279 15 8899 data-in/Linux_r1a1_2004111706200100644000175500000240000000027110146640765014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.10 0.19 0.17 83 35 14 127 25 611 418 36 2078 data-in/Linux_r1a_2004111706200100644000175500000240000000031510146640771014105 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.24 1.68 1.50 91 33 27 192 20 23 5552 4575 95 7562 data-in/Linux_streamguys1_2004111706200100644000175500000240000000022310146640765015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.47 1.01 0.92 49 60 613 45 8 3 0 data-in/Linux_steve_2004111706200100644000175500000240000000011310146640764014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111706200100644000175500000240000000022410146640764014525 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.13 0.26 0.30 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111706200100644000175500000240000000022510146640764014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 19 52 491 132 15 3 0 data-in/Linux_hwnode3_2004111706200100644000175500000240000000022410146640763014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.36 0.37 0.37 73 17 806 92 27 3 0 data-in/Linux_hwnode2_2004111706200100644000175500000240000000022510146640765014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.04 0.00 81 15 766 223 23 4 0 data-in/Linux_r1q_2004111706200100644000175500000240000000027010146640766014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.50 3.07 2.73 89 77 42 139 21 590 461 7 1239 data-in/FreeBSD_mb2_2004111706200100644000175500000240000000000010146640760014202 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706200100644000175500000240000000061110146640764014243 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 315 1 219 19419136 161226752 234590208 1552084992 138477568 1970507036 1617870626 data-in/FreeBSD_psa4_2004111706200100644000175500000240000000053510146640764014412 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 1811922944 137220096 104198144 45060096 32768 104204693 122853394 data-in/FreeBSD_pinky_2004111706200100644000175500000240000000057010146640764014674 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.07 0.45 0.57 71 13 31 52 75 322 10 14 11 0 0 10838016 170688512 749457408 68870144 43548672 1009624688 3793333010 11 0 data-in/FreeBSD_psa3_2004111706200100644000175500000240000000062210146640766014410 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.93 0.91 0.98 21 2 10 36 2 137 35 8 1 2236 6591 1732 18 2818 3346432 368889856 649146368 1001984000 75067392 1424572454 2339737041 data-in/FreeBSD_psa2_2004111706200100644000175500000240000000061710146640763014410 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.29 0.14 0.13 13 0 1 34 0 138 77 7 1 849 968 3246 0 171 994942976 282787840 348135424 459632640 20951040 2014077561 314630168 data-in/Linux_staging_2004111706250100644000175500000240000000016610146641440015061 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 1.08 1.08 0.68 8 100 114 26 0 data-in/Linux_psa1_2004111706250100644000175500000240000000011310146641440014261 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 227 data-in/Linux_r1z_2004111706250100644000175500000240000000031110146641440014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.04 0.03 0.00 84 34 23 148 42 3 425 318 14 563 data-in/Linux_r1q_2004111706250100644000175500000240000000027010146641441014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.39 2.61 2.61 89 77 42 138 20 619 470 8 1303 data-in/Linux_r1m2_2004111706250100644000175500000240000000031410146641437014207 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.06 0.06 0.07 86 81 34 139 20 3 3477 2156 77 2061 data-in/Linux_r1m1_2004111706250100644000175500000240000000031310146641440014177 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.11 0.08 69 73 29 164 50 3 1280 678 18 3829 data-in/Linux_r1f_2004111706250100644000175500000240000000027410146641446014123 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.40 1.49 1.45 87 86 46 207 20 9516 14340 15 8910 data-in/Linux_r1a1_2004111706250100644000175500000240000000027110146641441014167 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.18 83 35 14 123 25 633 431 38 2157 data-in/Linux_steve_2004111706250100644000175500000240000000011310146641442014545 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_streamguys1_2004111706250100644000175500000240000000022310146641440015703 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.45 0.61 0.75 49 60 613 45 8 3 0 data-in/Linux_mnode_2004111706250100644000175500000240000000022410146641437014530 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.17 0.26 0.28 78 47 138 38 1 12 0 data-in/Linux_hwnode3_2004111706250100644000175500000240000000022410146641440014767 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.42 0.41 73 17 797 91 27 3 0 data-in/Linux_hwnode2_2004111706250100644000175500000240000000022510146641441014770 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.05 0.04 0.00 81 15 764 224 23 4 0 data-in/FreeBSD_mb2_2004111706250100644000175500000240000000000010146641434014206 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706250100644000175500000240000000061110146641440014240 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 315 1 222 18558976 161304576 235388928 1552068608 138477568 1970942130 1621790898 data-in/FreeBSD_psa4_2004111706250100644000175500000240000000053510146641440014407 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 1811922944 137220096 104198144 45060096 32768 104209846 122860224 data-in/FreeBSD_psa3_2004111706250100644000175500000240000000062110146641440014402 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.03 0.96 0.98 21 2 10 36 2 145 43 8 1 2272 6721 1776 21 2955 3530752 369238016 661561344 989405184 74698752 1499366041 1041169503 data-in/FreeBSD_psa2_2004111706250100644000175500000240000000062010146641440014400 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.15 0.12 13 0 1 34 0 136 73 7 1 888 1030 3388 0 182 996651008 282480640 343556096 462790656 20971520 2022220618 373829481 data-in/FreeBSD_pinky_2004111706250100644000175500000240000000057010146641440014671 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.58 0.65 71 13 31 52 75 316 10 14 17 0 0 12181504 170795008 749981696 80941056 29503488 1014932164 3799057634 11 0 data-in/Linux_mb_2004111706250100644000175500000240000000015510146641440014021 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 82 15 1 data-in/Linux_r1a_2004111706250100644000175500000240000000031510146641443014107 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.39 1.43 91 33 27 187 20 23 5564 4605 95 7589 data-in/Linux_hwnode5_2004111706250100644000175500000240000000022510146641440014772 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 492 132 15 3 0 data-in/Linux_mb_2004111706300100644000175500000240000000015510146642115014015 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.01 0.00 0.00 13 16 73 15 1 data-in/Linux_staging_2004111706300100644000175500000240000000016610146642114015054 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.15 0.69 0.64 8 100 109 28 0 data-in/Linux_psa1_2004111706300100644000175500000240000000011310146642114014254 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 227 data-in/Linux_r1z_2004111706300100644000175500000240000000031110146642116014126 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.27 0.07 0.02 84 34 23 142 37 3 439 330 14 581 data-in/Linux_r1q_2004111706300100644000175500000240000000027010146642116014121 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.49 2.50 2.55 89 77 42 140 21 652 485 8 1372 data-in/Linux_r1m2_2004111706300100644000175500000240000000031410146642114014174 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.06 86 81 34 137 20 3 3529 2209 82 2115 data-in/Linux_r1m1_2004111706300100644000175500000240000000031310146642114014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.33 0.12 0.09 69 73 29 178 50 3 1312 688 18 3910 data-in/Linux_r1f_2004111706300100644000175500000240000000027410146642122014107 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.60 1.43 1.43 87 86 46 202 20 9562 14376 15 8918 data-in/Linux_r1a1_2004111706300100644000175500000240000000027110146642115014162 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.66 0.38 0.24 83 35 14 141 43 648 448 40 2234 data-in/Linux_r1a_2004111706300100644000175500000240000000031510146642121014075 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.57 1.36 1.38 91 33 27 187 20 23 5587 4613 95 7613 data-in/Linux_steve_2004111706300100644000175500000240000000011310146642116014540 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111706300100644000175500000240000000022410146642114014515 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.19 0.29 0.28 78 47 142 38 1 12 0 data-in/Linux_hwnode5_2004111706300100644000175500000240000000022510146642115014766 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 497 132 15 3 0 data-in/Linux_hwnode3_2004111706300100644000175500000240000000022410146642115014763 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.75 0.56 0.45 73 17 808 94 27 3 0 data-in/Linux_hwnode2_2004111706300100644000175500000240000000022510146642114014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.09 0.04 0.00 81 15 764 224 23 4 0 data-in/FreeBSD_mb2_2004111706300100644000175500000240000000000010146642110014172 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706300100644000175500000240000000061110146642114014233 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 315 1 224 17915904 161366016 235986944 1552052224 138477568 1971255482 1625317373 data-in/FreeBSD_psa4_2004111706300100644000175500000240000000053510146642114014402 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 1811922944 137220096 104198144 45060096 32768 104223537 122877362 data-in/FreeBSD_psa3_2004111706300100644000175500000240000000062210146642115014377 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.10 0.45 0.73 21 2 10 24 2 123 33 8 1 2322 6849 1790 22 3080 1196371968 231989248 632160256 35237888 2674688 1505340375 1183380126 data-in/FreeBSD_psa2_2004111706300100644000175500000240000000062010146642113014372 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.08 0.08 13 0 1 34 0 137 74 7 1 970 1089 3897 0 192 991277056 282501120 345460736 466034688 21176320 2031935348 452212099 data-in/FreeBSD_pinky_2004111706300100644000175500000240000000057010146642116014666 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 3.17 1.12 0.84 71 13 31 52 75 327 10 14 17 0 0 11448320 170045440 759414784 62910464 43372544 1021813794 3805257508 11 0 data-in/Linux_streamguys1_2004111706300100644000175500000240000000022310146642115015677 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.34 0.42 0.62 49 60 612 45 8 3 0 data-in/Linux_psa1_2004111706350100644000175500000240000000011310146642571014270 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.24 0.05 0.02 4 26 226 data-in/Linux_r1z_2004111706350100644000175500000240000000031110146642571014140 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.01 84 34 23 134 35 3 458 344 14 602 data-in/Linux_r1q_2004111706350100644000175500000240000000027010146642570014132 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.72 2.83 2.69 89 77 42 135 20 690 494 8 1430 data-in/Linux_r1m2_2004111706350100644000175500000240000000031410146642571014210 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.14 0.09 86 81 34 132 21 3 3588 2249 84 2164 data-in/Linux_r1m1_2004111706350100644000175500000240000000031310146642571014206 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.11 0.08 69 73 29 167 50 3 1328 690 18 3994 data-in/Linux_r1f_2004111706350100644000175500000240000000027410146642576014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.34 1.42 1.43 87 86 46 200 20 9598 14421 15 8932 data-in/Linux_r1a1_2004111706350100644000175500000240000000027110146642572014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.22 0.27 0.22 83 35 14 131 31 668 459 40 2326 data-in/Linux_r1a_2004111706350100644000175500000240000000031510146642576014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.93 1.65 1.49 91 33 27 191 20 23 5598 4628 96 7642 data-in/Linux_steve_2004111706350100644000175500000240000000011310146642572014553 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_streamguys1_2004111706350100644000175500000240000000022310146642572015713 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.34 0.51 0.60 49 60 612 45 8 3 0 data-in/Linux_mnode_2004111706350100644000175500000240000000022410146642571014531 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.14 0.26 0.26 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111706350100644000175500000240000000022510146642571015001 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 496 132 15 3 0 data-in/Linux_hwnode3_2004111706350100644000175500000240000000022410146642570014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.25 0.70 0.51 73 17 792 93 27 3 0 data-in/FreeBSD_mb2_2004111706350100644000175500000240000000000010146642565014215 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706350100644000175500000240000000061110146642571014247 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.09 0.03 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 226 17367040 161402880 236498944 1552052224 138477568 1971622241 1628268835 data-in/FreeBSD_psa4_2004111706350100644000175500000240000000053510146642571014416 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 1811918848 137224192 104198144 45060096 32768 104440536 122892142 data-in/FreeBSD_psa3_2004111706350100644000175500000240000000062210146642570014411 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.10 0.22 0.53 21 2 10 24 2 143 34 8 1 2350 7029 1802 22 3196 1124519936 279474176 657539072 32124928 4775936 1507704249 1197166271 data-in/FreeBSD_psa2_2004111706350100644000175500000240000000062110146642571014410 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 2.25 0.86 0.38 13 0 1 34 0 135 71 7 1 1007 1145 3980 0 203 987136000 283160576 344584192 470290432 21278720 2040784900 510679277 data-in/FreeBSD_pinky_2004111706350100644000175500000240000000057010146642571014700 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.49 1.17 0.91 71 13 31 52 75 313 10 14 17 0 0 12926976 171167744 754565120 78016512 26726400 1027361730 3810743406 11 0 data-in/Linux_mb_2004111706350100644000175500000240000000015510146642571014030 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_2004111706350100644000175500000240000000016610146642570015067 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.24 0.45 8 100 109 28 0 data-in/Linux_hwnode2_2004111706350100644000175500000240000000022510146642571014776 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.07 0.08 0.02 81 15 769 224 23 4 0 data-in/Linux_mb_2004111706400100644000175500000240000000015510146643243014021 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_2004111706400100644000175500000240000000016610146643243015061 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.09 0.32 8 100 109 28 0 data-in/Linux_psa1_2004111706400100644000175500000240000000011310146643245014263 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.03 0.02 0.00 4 26 223 data-in/Linux_r1z_2004111706400100644000175500000240000000031110146643246014134 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.03 0.00 84 34 23 130 29 3 466 351 14 619 data-in/Linux_r1q_2004111706400100644000175500000240000000027010146643244014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.47 2.52 2.58 89 77 42 140 20 727 518 9 1505 data-in/Linux_r1m2_2004111706400100644000175500000240000000031410146643245014203 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 130 21 3 3627 2312 85 2209 data-in/Linux_r1m1_2004111706400100644000175500000240000000031310146643244014200 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.09 0.08 69 73 29 166 50 3 1356 701 18 4073 data-in/Linux_r1f_2004111706400100644000175500000240000000027410146643251014114 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.24 1.26 1.35 87 86 46 203 20 9614 14460 15 8940 data-in/Linux_r1a1_2004111706400100644000175500000240000000027110146643244014167 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.21 83 35 14 130 31 682 466 42 2408 data-in/Linux_r1a_2004111706400100644000175500000240000000031510146643246014107 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.36 1.48 1.45 91 33 27 188 20 23 5626 4644 96 7666 data-in/Linux_streamguys1_2004111706400100644000175500000240000000022310146643246015706 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.81 0.56 0.57 49 60 614 47 8 3 0 data-in/Linux_steve_2004111706400100644000175500000240000000011310146643247014547 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.06 0.03 0.00 73 63 2376 data-in/Linux_mnode_2004111706400100644000175500000240000000022410146643245014524 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.23 0.31 0.28 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111706400100644000175500000240000000022510146643243014772 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 495 133 15 3 0 data-in/Linux_hwnode3_2004111706400100644000175500000240000000022410146643245014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.37 0.62 0.53 73 17 795 95 27 3 0 data-in/Linux_hwnode2_2004111706400100644000175500000240000000022510146643246014772 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 224 23 4 0 data-in/FreeBSD_mb2_2004111706400100644000175500000240000000000010146643241014201 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706400100644000175500000240000000061110146643245014242 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.07 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 229 17571840 161435648 236273664 1552039936 138477568 1972032168 1631480025 data-in/FreeBSD_psa4_2004111706400100644000175500000240000000053510146643243014407 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 1811914752 137224192 104202240 45060096 32768 104479301 122898566 data-in/FreeBSD_psa3_2004111706400100644000175500000240000000062210146643245014405 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.11 0.15 0.40 21 2 10 24 2 140 35 8 1 2396 7177 1840 22 3319 1116893184 300290048 642326528 32632832 6291456 1510454235 1213781467 data-in/FreeBSD_psa2_2004111706400100644000175500000240000000062110146643245014403 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.84 0.55 0.35 13 0 1 34 0 136 76 7 1 1052 1202 4114 0 214 989560832 283095040 338702336 473505792 21585920 2050347697 591627087 data-in/FreeBSD_pinky_2004111706400100644000175500000240000000057010146643245014673 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.10 0.54 0.69 71 13 31 52 75 319 10 14 17 0 0 10407936 171159552 755511296 52576256 53747712 1032945139 3816188971 11 0 data-in/Linux_mb_2004111706450100644000175500000240000000015510146643721014027 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 87 15 1 data-in/Linux_staging_2004111706450100644000175500000240000000016610146643721015067 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.02 0.22 8 100 109 28 0 data-in/Linux_psa1_2004111706450100644000175500000240000000011310146643720014266 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 225 data-in/Linux_r1z_2004111706450100644000175500000240000000031110146643723014141 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.04 0.01 84 34 23 138 24 3 490 360 14 640 data-in/Linux_r1q_2004111706450100644000175500000240000000027010146643723014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.41 2.38 2.49 89 77 42 143 20 768 533 9 1564 data-in/Linux_r1m2_2004111706450100644000175500000240000000031410146643722014210 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.15 0.09 0.08 86 81 34 145 20 3 3682 2381 86 2248 data-in/Linux_r1m1_2004111706450100644000175500000240000000031310146643722014206 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.10 0.09 69 73 29 170 50 3 1378 716 18 4155 data-in/Linux_r1f_2004111706450100644000175500000240000000027410146643727014131 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.52 1.34 1.35 87 86 46 201 20 9647 14518 15 8950 data-in/Linux_r1a1_2004111706450100644000175500000240000000027110146643720014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.48 0.31 0.23 83 35 14 136 31 708 476 44 2502 data-in/Linux_r1a_2004111706450100644000175500000240000000031510146643724014115 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.13 1.34 1.41 91 33 27 186 20 23 5642 4655 96 7692 data-in/Linux_streamguys1_2004111706450100644000175500000240000000022310146643722015712 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.87 0.89 0.69 49 60 614 45 8 3 0 data-in/Linux_steve_2004111706450100644000175500000240000000011310146643722014552 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.01 0.00 73 63 2376 data-in/Linux_mnode_2004111706450100644000175500000240000000022410146643722014531 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.54 0.42 0.32 78 47 137 38 1 12 0 data-in/Linux_hwnode5_2004111706450100644000175500000240000000022510146643721015000 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 132 15 3 0 data-in/Linux_hwnode3_2004111706450100644000175500000240000000022410146643721014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.23 0.41 0.46 73 17 807 95 27 3 0 data-in/Linux_hwnode2_2004111706450100644000175500000240000000022510146643721014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.01 0.05 0.02 81 15 769 224 23 4 0 data-in/FreeBSD_mb2_2004111706450100644000175500000240000000000010146643715014214 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706450100644000175500000240000000061110146643720014245 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 321 1 231 17567744 161447936 236277760 1552027648 138477568 1972500252 1637364583 data-in/FreeBSD_psa4_2004111706450100644000175500000240000000053510146643720014414 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 1811914752 137224192 104202240 45060096 32768 104486066 122906074 data-in/FreeBSD_psa3_2004111706450100644000175500000240000000062210146643721014411 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.28 0.19 0.33 21 2 10 24 2 144 38 8 1 2452 7355 1862 22 3457 1086070784 310915072 660168704 34476032 6803456 1513540031 1228670270 data-in/FreeBSD_psa2_2004111706450100644000175500000240000000062110146643720014406 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.28 0.27 13 0 1 34 0 135 73 7 1 1076 1272 4155 0 227 993808384 282824704 331485184 477683712 20647936 2059301796 679648712 data-in/FreeBSD_pinky_2004111706450100644000175500000240000000057010146643721014677 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.10 0.71 0.68 71 13 31 52 75 309 10 14 17 0 0 13205504 171339776 751562752 67604480 39690240 1038305976 3821511480 11 0 data-in/Linux_mb_2004111706500100644000175500000240000000015510146644373014027 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 75 15 1 data-in/Linux_staging_2004111706500100644000175500000240000000016610146644374015070 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.15 8 100 110 28 0 data-in/Linux_psa1_2004111706500100644000175500000240000000011310146644373014267 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 227 data-in/Linux_r1z_2004111706500100644000175500000240000000031110146644375014141 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.04 0.00 84 34 23 121 18 3 514 373 14 662 data-in/Linux_r1q_2004111706500100644000175500000240000000027010146644375014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.15 2.98 2.71 89 77 42 144 21 795 564 9 1632 data-in/Linux_r1m2_2004111706500100644000175500000240000000031410146644373014207 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.14 0.10 86 81 34 131 20 3 3728 2422 89 2296 data-in/Linux_r1m1_2004111706500100644000175500000240000000031310146644373014205 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.08 69 73 29 172 50 3 1395 723 18 4236 data-in/Linux_r1f_2004111706500100644000175500000240000000027410146644424014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.25 1.24 1.29 87 86 46 197 20 9685 14580 15 8961 data-in/Linux_r1a1_2004111706500100644000175500000240000000027110146644374014175 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.25 0.33 0.26 83 35 14 127 29 723 505 44 2590 data-in/Linux_streamguys1_2004111706500100644000175500000240000000022310146644375015713 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.62 0.71 0.65 49 60 613 45 8 3 0 data-in/Linux_steve_2004111706500100644000175500000240000000011310146644375014553 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.01 0.03 0.00 73 63 2376 data-in/Linux_mnode_2004111706500100644000175500000240000000022410146644375014532 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.32 0.31 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111706500100644000175500000240000000022510146644375015002 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 19 52 496 132 15 3 0 data-in/Linux_hwnode3_2004111706500100644000175500000240000000022510146644375015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.54 0.47 0.46 73 17 812 100 27 3 0 data-in/Linux_hwnode2_2004111706500100644000175500000240000000022510146644374014776 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 224 23 4 0 data-in/Linux_r1a_2004111706500100644000175500000240000000031510146644400014101 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.85 1.55 1.46 91 33 27 192 20 23 5652 4684 97 7713 data-in/FreeBSD_mb2_2004111706500100644000175500000240000000000010146644370014206 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706500100644000175500000240000000061110146644374014247 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.02 0.00 9 0 0 2 0 75 10 8 1 6 0 321 1 234 17547264 161468416 236277760 1552027648 138477568 1972896936 1641893104 data-in/FreeBSD_psa4_2004111706500100644000175500000240000000053510146644373014415 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 1811873792 137224192 104251392 45051904 32768 104493379 122913264 data-in/FreeBSD_psa3_2004111706500100644000175500000240000000062410146644373014413 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.10 0.18 0.28 21 2 10 24 2 136 42 10 1 2486 7497 1882 22 3597 1057308672 328241152 659824640 36929536 16130048 1516848639 1255651210 data-in/FreeBSD_psa2_2004111706500100644000175500000240000000062110146644374014410 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.11 0.19 13 0 1 34 0 137 75 7 1 1112 1328 4269 0 237 988360704 283693056 329576448 484106240 20713472 2066691970 741454272 data-in/FreeBSD_pinky_2004111706500100644000175500000240000000056710146644374014706 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.22 0.86 0.71 71 13 31 52 75 300 10 14 17 0 0 9936896 170676224 754728960 70606848 37453824 1043665891 3826884846 11 0 data-in/Linux_staging_2004111706550100644000175500000240000000016610146645050015065 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.02 0.10 8 100 109 28 0 data-in/Linux_psa1_2004111706550100644000175500000240000000011310146645051014266 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.06 0.04 0.01 4 26 224 data-in/Linux_r1z_2004111706550100644000175500000240000000031110146645050014135 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.07 0.01 84 34 23 149 46 3 523 385 15 681 data-in/Linux_r1q_2004111706550100644000175500000240000000027110146645052014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.63 2.65 2.63 89 77 42 145 25 827 575 10 1700 data-in/Linux_r1m2_2004111706550100644000175500000240000000031410146645051014206 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.17 0.18 0.12 86 81 34 136 22 3 3779 2485 89 2337 data-in/Linux_r1m1_2004111706550100644000175500000240000000031310146645051014204 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.27 0.13 0.09 69 73 29 164 50 3 1427 731 18 4323 data-in/Linux_r1f_2004111706550100644000175500000240000000027410146645061014123 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.65 1.36 1.31 87 86 46 205 20 9729 14624 15 8973 data-in/Linux_r1a1_2004111706550100644000175500000240000000027110146645052014174 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.25 0.24 0.24 83 35 14 136 33 738 507 46 2687 data-in/Linux_r1a_2004111706550100644000175500000240000000031510146645054014114 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.39 1.42 91 33 27 186 20 23 5664 4701 97 7735 data-in/Linux_streamguys1_2004111706550100644000175500000240000000022310146645054015713 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.51 1.44 0.95 49 60 612 45 8 3 0 data-in/Linux_steve_2004111706550100644000175500000240000000011310146645052014551 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111706550100644000175500000240000000022410146645051014527 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.31 0.31 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111706550100644000175500000240000000022510146645051014777 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 490 132 15 3 0 data-in/Linux_hwnode3_2004111706550100644000175500000240000000022410146645050014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.24 0.47 0.47 73 17 816 97 27 3 0 data-in/Linux_hwnode2_2004111706550100644000175500000240000000022510146645050014773 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 764 224 23 4 0 data-in/FreeBSD_mb2_2004111706550100644000175500000240000000000010146645045014213 0ustar djhstaffdata-in/FreeBSD_r4p_2004111706550100644000175500000240000000061110146645050014244 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 76 11 8 1 6 0 321 1 236 17829888 161574912 235864064 1552052224 138477568 1973178276 1644898641 data-in/FreeBSD_psa4_2004111706550100644000175500000240000000053510146645051014414 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 1811910656 137228288 104202240 45060096 32768 104499736 122920262 data-in/FreeBSD_psa3_2004111706550100644000175500000240000000062410146645051014412 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.19 0.21 0.25 21 2 10 24 2 132 38 12 1 2532 7643 1896 25 3725 1029914624 328560640 670109696 52035584 17813504 1520264227 1274925915 data-in/FreeBSD_psa2_2004111706550100644000175500000240000000062110146645051014406 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.19 0.11 0.16 13 0 1 34 0 133 72 7 1 1139 1412 4316 0 248 989335552 282947584 325275648 487432192 21458944 2074418607 796674534 data-in/Linux_mb_2004111706550100644000175500000240000000015510146645050014025 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/FreeBSD_pinky_2004111706550100644000175500000240000000057010146645051014676 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 3.10 1.12 0.81 71 13 31 52 75 319 10 14 17 0 0 12873728 171454464 752058368 71700480 35315712 1048826770 3832011103 11 0 data-in/Linux_mb_2004111707000100644000175500000240000000015510146645525014023 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.09 0.04 0.01 13 16 78 15 1 data-in/Linux_staging_2004111707000100644000175500000240000000016610146645523015061 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.07 8 100 109 28 0 data-in/Linux_psa1_2004111707000100644000175500000240000000011310146645525014263 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.24 0.06 0.02 4 26 228 data-in/Linux_r1z_2004111707000100644000175500000240000000031110146645527014135 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.05 0.00 84 34 23 169 59 3 547 399 15 703 data-in/Linux_r1q_2004111707000100644000175500000240000000027110146645525014127 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.29 2.43 2.53 89 77 42 144 21 861 585 10 1762 data-in/Linux_r1m2_2004111707000100644000175500000240000000031410146645525014203 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.19 0.12 86 81 34 141 20 3 3833 2536 90 2382 data-in/Linux_r1m1_2004111707000100644000175500000240000000031310146645526014202 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.13 0.09 69 73 29 176 50 3 1450 737 18 4403 data-in/Linux_r1f_2004111707000100644000175500000240000000027410146645535014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.70 1.43 1.34 87 86 46 211 20 9771 14677 15 8982 data-in/Linux_r1a1_2004111707000100644000175500000240000000027110146645525014170 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.41 0.44 0.32 83 35 14 137 32 756 534 47 2770 data-in/Linux_r1a_2004111707000100644000175500000240000000031510146645530014102 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.09 1.24 1.34 91 33 27 184 20 23 5688 4715 99 7754 data-in/Linux_streamguys1_2004111707000100644000175500000240000000022310146645526015706 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.65 1.36 0.99 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707000100644000175500000240000000011310146645526014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707000100644000175500000240000000022410146645524014523 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.18 0.32 0.31 78 47 143 38 1 12 0 data-in/Linux_hwnode5_2004111707000100644000175500000240000000022510146645525014774 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 496 132 15 3 0 data-in/Linux_hwnode3_2004111707000100644000175500000240000000022410146645526014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.62 0.50 0.47 73 17 816 94 27 3 0 data-in/Linux_hwnode2_2004111707000100644000175500000240000000022510146645526014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.09 0.03 0.01 81 15 763 224 23 4 0 data-in/FreeBSD_mb2_2004111707000100644000175500000240000000000010146645521014201 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707000100644000175500000240000000061010146645525014241 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 321 1 239 19341312 162144256 233836544 1551998976 138477568 1974063817 1647335197 data-in/FreeBSD_psa4_2004111707000100644000175500000240000000053510146645525014411 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 1811914752 137228288 104198144 45060096 32768 104505413 122927388 data-in/FreeBSD_psa3_2004111707000100644000175500000240000000062410146645525014407 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.30 0.22 0.24 21 2 10 24 2 142 40 10 1 2572 7765 1930 25 3861 1024208896 326037504 663781376 66478080 17928192 1525705233 1287127192 data-in/FreeBSD_psa2_2004111707000100644000175500000240000000062110146645523014401 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.38 0.30 13 0 1 34 0 131 71 7 1 1168 1489 4436 0 258 987422720 282415104 323473408 490807296 22331392 2082290801 858386975 data-in/FreeBSD_pinky_2004111707000100644000175500000240000000057010146645526014674 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.59 0.66 71 13 31 52 75 287 10 14 17 0 0 10608640 169435136 753967104 74465280 34926592 1054215654 3837111502 11 0 data-in/Linux_mb_2004111707050100644000175500000240000000015510146646200014017 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.02 0.00 13 16 76 15 1 data-in/Linux_staging_2004111707050100644000175500000240000000016610146646200015057 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.04 8 100 109 28 0 data-in/Linux_psa1_2004111707050100644000175500000240000000011310146646177014274 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.16 0.05 0.01 4 26 224 data-in/Linux_r1z_2004111707050100644000175500000240000000031110146646177014144 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.02 84 34 23 149 42 3 570 414 15 731 data-in/Linux_r1q_2004111707050100644000175500000240000000027110146646201014124 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.91 2.94 2.74 89 77 42 132 20 899 606 10 1827 data-in/Linux_r1m2_2004111707050100644000175500000240000000031410146646201014200 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.04 0.12 0.10 86 81 34 128 20 3 3880 2576 92 2428 data-in/Linux_r1m1_2004111707050100644000175500000240000000031310146646201014176 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.10 69 73 29 166 50 3 1491 752 18 4481 data-in/Linux_r1f_2004111707050100644000175500000240000000027410146646207014122 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.70 1.55 1.42 87 86 46 210 20 9817 14733 15 8995 data-in/Linux_r1a1_2004111707050100644000175500000240000000027110146646176014200 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.43 0.44 0.34 83 35 14 137 34 793 549 47 2863 data-in/Linux_r1a_2004111707050100644000175500000240000000031610146646205014110 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.10 1.52 1.41 91 33 27 189 20 23 5705 4742 101 7780 data-in/Linux_streamguys1_2004111707050100644000175500000240000000022310146646201015702 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.90 1.20 1.02 49 60 612 45 8 3 0 data-in/Linux_mnode_2004111707050100644000175500000240000000022410146646201014521 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.21 0.31 0.31 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111707050100644000175500000240000000022510146646177015005 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.04 0.05 0.01 19 52 491 132 15 3 0 data-in/Linux_hwnode3_2004111707050100644000175500000240000000022410146646200014765 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.08 1.18 0.80 73 17 810 94 27 3 0 data-in/Linux_hwnode2_2004111707050100644000175500000240000000022510146646201014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.11 0.07 0.01 81 15 759 224 23 4 0 data-in/FreeBSD_mb2_2004111707050100644000175500000240000000000010146646174014213 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707050100644000175500000240000000061010146646177014252 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.02 0.00 9 0 0 2 0 74 9 8 1 6 0 327 1 242 19238912 162246656 233832448 1552003072 138477568 1974383224 1649624599 data-in/FreeBSD_psa4_2004111707050100644000175500000240000000053510146646177014422 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.06 0.02 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137228288 104198144 45060096 32768 104512330 122934832 data-in/FreeBSD_psa3_2004111707050100644000175500000240000000062410146646200014403 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.29 0.17 0.20 21 2 10 24 2 131 37 11 1 2630 7929 1948 25 4010 1011994624 323227648 663945216 80695296 18571264 1529553297 1298335354 data-in/FreeBSD_psa2_2004111707050100644000175500000240000000062110146646201014400 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.16 0.22 13 0 1 34 0 133 73 7 1 1202 1543 4502 0 269 987189248 281702400 317366272 497668096 22523904 2090856612 911578503 data-in/FreeBSD_pinky_2004111707050100644000175500000240000000057010146646200014667 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.52 0.65 71 13 31 52 75 303 10 14 17 0 0 11276288 170434560 751308800 77578240 32804864 1059465917 3842461145 11 0 data-in/Linux_steve_2004111707050100644000175500000240000000011310146646202014543 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mb_2004111707100100644000175500000240000000015510146646655014031 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.05 0.01 0.00 13 16 81 15 1 data-in/Linux_staging_2004111707100100644000175500000240000000016610146646652015066 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.01 8 100 110 28 0 data-in/Linux_psa1_2004111707100100644000175500000240000000011310146646654014270 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.01 0.00 4 26 224 data-in/Linux_r1z_2004111707100100644000175500000240000000031110146646656014142 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.08 0.02 84 34 23 137 32 3 597 430 15 750 data-in/Linux_r1q_2004111707100100644000175500000240000000027110146646655014135 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.41 2.74 2.71 89 77 42 131 24 932 636 11 1898 data-in/Linux_r1m2_2004111707100100644000175500000240000000031410146646653014207 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.25 0.16 0.11 86 81 34 133 20 3 3932 2626 94 2474 data-in/Linux_r1m1_2004111707100100644000175500000240000000031310146646655014207 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.74 0.25 0.13 69 73 29 167 50 3 1533 765 22 4562 data-in/Linux_r1f_2004111707100100644000175500000240000000027410146646662014123 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.40 1.52 1.45 87 86 46 204 20 9885 14791 15 9006 data-in/Linux_r1a1_2004111707100100644000175500000240000000027110146646655014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.42 0.33 0.31 83 35 14 136 33 820 556 49 2962 data-in/Linux_r1a_2004111707100100644000175500000240000000031610146646657014117 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.50 1.38 1.37 91 33 27 184 20 23 5723 4750 101 7800 data-in/Linux_streamguys1_2004111707100100644000175500000240000000022310146646655015713 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.42 1.25 1.05 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707100100644000175500000240000000011310146646656014554 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707100100644000175500000240000000022410146646654014531 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.16 0.29 0.29 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111707100100644000175500000240000000022510146646654015001 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 19 52 488 132 15 3 0 data-in/Linux_hwnode3_2004111707100100644000175500000240000000022410146646655014777 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.40 0.71 0.70 73 17 807 94 27 3 0 data-in/Linux_hwnode2_2004111707100100644000175500000240000000022510146646653014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.04 0.00 81 15 758 224 23 4 0 data-in/FreeBSD_r4p_2004111707100100644000175500000240000000061010146646655014247 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.01 0.00 9 0 0 2 0 74 9 8 1 6 0 333 1 246 19021824 162168832 234139648 1551990784 138477568 1974802924 1658605253 data-in/FreeBSD_psa4_2004111707100100644000175500000240000000053510146646653014415 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 1811910656 137232384 104198144 45060096 32768 104517301 122941472 data-in/FreeBSD_psa3_2004111707100100644000175500000240000000062210146646654014412 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.34 0.30 0.25 21 2 10 24 2 132 37 7 1 2696 8065 1988 25 4149 981995520 323354624 676397056 97869824 18817024 1532931275 1314123101 data-in/FreeBSD_psa2_2004111707100100644000175500000240000000062110146646654014410 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.60 0.45 0.31 13 0 1 34 0 139 73 7 1 1236 1605 4608 0 282 981831680 279478272 319840256 502849536 22450176 2100629534 985785664 data-in/FreeBSD_mb2_2004111707100100644000175500000240000000000010146646651014207 0ustar djhstaffdata-in/FreeBSD_pinky_2004111707100100644000175500000240000000056710146646654014706 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.23 0.42 0.58 71 13 31 52 75 312 10 14 18 0 0 9465856 170819584 752562176 56541184 54013952 1064726333 3847839487 11 0 data-in/Linux_mb_2004111707150100644000175500000240000000015510146647327014033 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_psa1_2004111707150100644000175500000240000000011310146647330014265 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 228 data-in/Linux_r1z_2004111707150100644000175500000240000000031110146647332014137 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.06 0.01 84 34 23 130 23 3 618 440 15 777 data-in/Linux_r1q_2004111707150100644000175500000240000000027110146647332014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.28 2.41 2.57 89 77 42 130 21 965 665 11 1959 data-in/Linux_r1m2_2004111707150100644000175500000240000000031510146647331014207 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.19 0.13 0.09 86 81 34 142 20 3 3981 2681 101 2525 data-in/Linux_r1m1_2004111707150100644000175500000240000000031310146647331014204 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.14 0.10 69 73 29 181 50 3 1590 782 35 4652 data-in/Linux_r1f_2004111707150100644000175500000240000000027410146647336014127 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.82 1.49 1.44 87 86 46 201 20 9916 14876 15 9020 data-in/Linux_r1a1_2004111707150100644000175500000240000000027110146647330014172 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.24 0.26 0.28 83 35 14 139 33 845 578 51 3055 data-in/Linux_r1a_2004111707150100644000175500000240000000031610146647332014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.07 1.24 1.31 91 33 27 183 20 23 5744 4775 101 7823 data-in/Linux_streamguys1_2004111707150100644000175500000240000000022310146647332015711 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.41 0.72 0.86 49 60 613 45 8 3 0 data-in/Linux_steve_2004111707150100644000175500000240000000011310146647332014551 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_hwnode5_2004111707150100644000175500000240000000022510146647331014777 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.11 0.10 0.04 19 52 487 132 15 3 0 data-in/Linux_hwnode3_2004111707150100644000175500000240000000022410146647327015001 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.83 0.76 0.72 73 17 797 94 27 3 0 data-in/Linux_hwnode2_2004111707150100644000175500000240000000022510146647331014774 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 762 224 23 4 0 data-in/FreeBSD_mb2_2004111707150100644000175500000240000000000010146647324014212 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707150100644000175500000240000000061010146647330014243 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 72 7 8 1 6 0 333 1 248 23834624 162119680 229388288 1551978496 138477568 1975098346 1661996909 data-in/FreeBSD_psa4_2004111707150100644000175500000240000000053510146647326014420 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 1811910656 137232384 104198144 45060096 32768 104524038 122948738 data-in/FreeBSD_psa3_2004111707150100644000175500000240000000062310146647330014410 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.34 0.24 0.23 21 2 10 24 2 132 39 7 1 2764 8195 2006 25 4306 963612672 325828608 683331584 104996864 20664320 1535698355 1329079015 data-in/FreeBSD_psa2_2004111707150100644000175500000240000000062210146647330014406 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.36 0.30 0.27 13 0 1 34 0 137 73 7 1 1324 1671 4953 0 295 985718784 276496384 313286656 508383232 22564864 2109866503 1075809625 data-in/FreeBSD_pinky_2004111707150100644000175500000240000000057010146647332014677 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.69 0.96 0.76 71 13 31 52 75 319 10 14 19 0 0 20549632 158961664 747909120 64057344 55341056 1080929399 3853724607 11 0 data-in/Linux_staging_2004111707150100644000175500000240000000016610146647330015065 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 109 28 0 data-in/Linux_mnode_2004111707150100644000175500000240000000022410146647327014534 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.39 0.34 0.30 78 47 134 38 1 12 0 data-in/Linux_mb_2004111707200100644000175500000240000000015510146650004014011 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 75 15 1 data-in/Linux_staging_2004111707200100644000175500000240000000016610146650002015047 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 110 28 0 data-in/Linux_psa1_2004111707200100644000175500000240000000011310146650003014250 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.08 0.08 0.03 4 26 231 data-in/Linux_r1z_2004111707200100644000175500000240000000031110146650006014123 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.04 0.00 84 34 23 137 33 3 636 451 15 803 data-in/Linux_r1q_2004111707200100644000175500000240000000027110146650005014116 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.95 3.03 2.80 89 77 42 127 21 998 694 11 2041 data-in/Linux_r1m2_2004111707200100644000175500000240000000031510146650004014172 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 145 20 3 4021 2739 105 2568 data-in/Linux_r1m1_2004111707200100644000175500000240000000031310146650004014167 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 69 73 29 175 50 3 1609 789 39 4726 data-in/Linux_r1f_2004111707200100644000175500000240000000027410146650012014104 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.37 1.38 1.39 87 86 46 206 20 9952 14933 15 9032 data-in/Linux_r1a1_2004111707200100644000175500000240000000027110146650003014155 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.37 0.28 0.27 83 35 14 134 30 867 585 51 3156 data-in/Linux_r1a_2004111707200100644000175500000240000000031610146650011014073 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.68 1.38 1.33 91 33 27 188 20 23 5753 4791 102 7846 data-in/Linux_streamguys1_2004111707200100644000175500000240000000022310146650006015675 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.09 1.17 0.99 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707200100644000175500000240000000011310146650005014534 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707200100644000175500000240000000022410146650004014512 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.17 0.27 0.27 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111707200100644000175500000240000000022510146650004014762 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.04 0.01 19 52 486 132 15 3 0 data-in/Linux_hwnode3_2004111707200100644000175500000240000000022410146650005014760 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 2.71 1.37 0.93 73 17 804 95 27 3 0 data-in/Linux_hwnode2_2004111707200100644000175500000240000000022510146650003014756 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 763 224 23 4 0 data-in/FreeBSD_mb2_2004111707200100644000175500000240000000000010146650000014167 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707200100644000175500000240000000061010146650003014226 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 72 7 8 1 6 0 333 1 250 23834624 162119680 229388288 1551978496 138477568 1975381853 1664700711 data-in/FreeBSD_psa4_2004111707200100644000175500000240000000053510146650003014376 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 1811906560 137236480 104198144 45060096 32768 104529769 122955672 data-in/FreeBSD_psa3_2004111707200100644000175500000240000000062310146650004014374 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.25 0.21 0.21 21 2 10 24 2 119 32 7 1 2814 8339 2032 25 4455 985837568 320471040 652066816 117669888 22388736 1538031430 1341505923 data-in/FreeBSD_psa2_2004111707200100644000175500000240000000062210146650004014372 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.13 0.19 13 0 1 34 0 133 73 7 1 1355 1721 5069 0 307 984346624 276287488 313163776 510083072 22568960 2117756213 1134789237 data-in/FreeBSD_pinky_2004111707200100644000175500000240000000057010146650005014662 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.52 0.63 71 13 31 52 75 309 10 14 19 0 0 16543744 170876928 751775744 56320000 47886336 1086299240 3859080822 11 0 data-in/Linux_staging_2004111707250100644000175500000240000000016610146650460015064 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 109 28 0 data-in/Linux_psa1_2004111707250100644000175500000240000000011310146650460014264 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.24 0.07 0.02 4 26 231 data-in/Linux_r1z_2004111707250100644000175500000240000000031110146650461014135 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.03 0.00 84 34 23 173 70 3 653 465 15 831 data-in/Linux_r1q_2004111707250100644000175500000240000000027210146650462014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.31 2.56 2.65 89 77 42 126 21 1049 701 12 2107 data-in/Linux_r1m2_2004111707250100644000175500000240000000031510146650461014206 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 86 81 34 135 20 3 4072 2796 105 2615 data-in/Linux_r1m1_2004111707250100644000175500000240000000031310146650461014203 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.09 69 73 29 175 51 3 1630 801 45 4809 data-in/Linux_r1f_2004111707250100644000175500000240000000027410146650466014126 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.82 1.55 1.44 87 86 46 201 20 9992 14980 15 9048 data-in/Linux_r1a1_2004111707250100644000175500000240000000027110146650460014171 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.36 0.42 0.34 83 35 14 160 59 885 597 53 3255 data-in/Linux_r1a_2004111707250100644000175500000240000000031610146650462014112 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.21 1.37 1.34 91 33 27 183 20 23 5771 4808 102 7870 data-in/Linux_streamguys1_2004111707250100644000175500000240000000022310146650461015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.44 0.64 0.80 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707250100644000175500000240000000011310146650462014550 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707250100644000175500000240000000022410146650461014526 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.35 0.33 0.28 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111707250100644000175500000240000000022510146650461014776 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.11 0.03 0.01 19 52 485 132 15 3 0 data-in/Linux_hwnode3_2004111707250100644000175500000240000000022410146650461014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.89 1.51 1.15 73 17 798 95 27 3 0 data-in/Linux_hwnode2_2004111707250100644000175500000240000000022510146650461014773 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.09 0.03 0.01 81 15 765 224 23 4 0 data-in/FreeBSD_mb2_2004111707250100644000175500000240000000000010146650455014212 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707250100644000175500000240000000061010146650460014242 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.01 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 252 23769088 162119680 229453824 1551978496 138477568 1975717501 1668222234 data-in/Linux_mb_2004111707250100644000175500000240000000015510146650461014025 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 79 15 1 data-in/FreeBSD_psa4_2004111707250100644000175500000240000000053510146650460014412 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 137236480 104202240 45060096 32768 104557594 122970504 data-in/FreeBSD_psa3_2004111707250100644000175500000240000000062310146650460014407 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.83 0.38 0.28 21 2 10 24 2 125 32 7 1 2892 8437 2064 25 4617 968790016 325398528 653455360 127750144 23040000 1541213809 1355024019 data-in/FreeBSD_psa2_2004111707250100644000175500000240000000062210146650460014405 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.09 0.12 0.16 13 0 1 34 0 142 78 7 1 1394 1760 5234 0 319 976052224 275492864 318455808 515780608 20668416 2128102312 1228429056 data-in/FreeBSD_pinky_2004111707250100644000175500000240000000056710146650460014702 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.37 0.52 0.62 71 13 31 52 75 303 10 14 19 0 0 8818688 172765184 754073600 75759616 31985664 1091756942 3864421497 11 0 data-in/Linux_mb_2004111707300100644000175500000240000000015510146651135014020 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_2004111707300100644000175500000240000000016610146651135015060 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 109 28 0 data-in/Linux_psa1_2004111707300100644000175500000240000000011310146651135014260 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.03 0.03 0.00 4 26 231 data-in/Linux_r1z_2004111707300100644000175500000240000000031110146651137014132 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.04 84 34 23 165 58 3 674 472 15 862 data-in/Linux_r1q_2004111707300100644000175500000240000000027210146651135014125 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.64 2.52 2.59 89 78 42 133 25 1103 717 12 2195 data-in/Linux_r1m2_2004111707300100644000175500000240000000031510146651136014202 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.10 0.08 86 81 34 137 20 3 4114 2842 107 2666 data-in/Linux_r1m1_2004111707300100644000175500000240000000031310146651136014177 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.12 0.09 69 73 29 179 51 3 1657 812 49 4889 data-in/Linux_r1f_2004111707300100644000175500000240000000027510146651142014113 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.29 1.45 1.43 87 86 46 199 20 10022 15048 15 9063 data-in/Linux_r1a1_2004111707300100644000175500000240000000027110146651135014165 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.35 0.44 0.37 83 35 14 148 45 914 604 55 3363 data-in/Linux_r1a_2004111707300100644000175500000240000000031610146651140014100 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.25 1.29 91 33 27 184 20 23 5784 4828 103 7891 data-in/Linux_streamguys1_2004111707300100644000175500000240000000022310146651137015704 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.06 1.37 1.09 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707300100644000175500000240000000011310146651137014544 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707300100644000175500000240000000022410146651137014523 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.25 0.31 0.27 78 47 144 38 1 12 0 data-in/Linux_hwnode5_2004111707300100644000175500000240000000022510146651135014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.06 0.04 0.00 19 52 492 132 15 3 0 data-in/Linux_hwnode3_2004111707300100644000175500000240000000022410146651135014766 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.83 1.82 1.37 73 17 821 95 27 3 0 data-in/Linux_hwnode2_2004111707300100644000175500000240000000022510146651133014764 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.05 0.03 0.00 81 15 763 224 23 4 0 data-in/FreeBSD_mb2_2004111707300100644000175500000240000000000010146651131014176 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707300100644000175500000240000000061110146651134014236 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 333 1 254 20582400 162299904 232460288 1551978496 138477568 1976041231 1671222862 data-in/FreeBSD_psa4_2004111707300100644000175500000240000000053510146651135014406 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 1811898368 137236480 104206336 45060096 32768 104563219 122977270 data-in/FreeBSD_psa3_2004111707300100644000175500000240000000062310146651135014403 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.24 0.26 0.25 21 2 10 24 2 137 39 7 1 2952 8555 2084 25 4790 945217536 329064448 668737536 132014080 23400448 1544751062 1369654847 data-in/FreeBSD_psa2_2004111707300100644000175500000240000000062210146651134014400 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.09 0.10 0.13 13 0 1 34 0 150 76 7 1 1442 1812 5487 0 335 970297344 274558976 320565248 520175616 20852736 2140148755 1337851617 data-in/FreeBSD_pinky_2004111707300100644000175500000240000000057010146651136014671 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.43 0.57 71 13 31 52 75 316 10 14 19 0 0 10752000 169844736 760774656 63729664 40681472 1097391805 3869887616 11 0 data-in/Linux_staging_2004111707350100644000175500000240000000016610146651607015071 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 110 28 0 data-in/Linux_psa1_2004111707350100644000175500000240000000011310146651606014270 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.24 0.06 0.02 4 26 229 data-in/Linux_r1z_2004111707350100644000175500000240000000031110146651611014134 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.11 0.04 84 34 23 133 30 3 703 489 15 890 data-in/Linux_r1q_2004111707350100644000175500000240000000027210146651610014130 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.81 2.90 2.75 89 78 42 122 20 1123 735 12 2262 data-in/Linux_r1m2_2004111707350100644000175500000240000000031510146651607014212 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.09 0.08 86 81 34 131 20 3 4145 2866 110 2713 data-in/Linux_r1m1_2004111707350100644000175500000240000000031310146651611014202 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.54 0.23 0.13 69 73 29 178 51 3 1675 818 53 4971 data-in/Linux_r1f_2004111707350100644000175500000240000000027510146651616014126 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.47 1.51 1.45 87 86 46 206 20 10060 15112 15 9081 data-in/Linux_r1a1_2004111707350100644000175500000240000000027110146651607014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.41 0.40 0.37 83 35 14 155 47 943 615 55 3480 data-in/Linux_r1a_2004111707350100644000175500000240000000031610146651613014112 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.05 1.58 1.39 91 33 27 193 20 23 5801 4846 104 7918 data-in/Linux_streamguys1_2004111707350100644000175500000240000000022310146651612015707 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.50 0.84 0.93 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707350100644000175500000240000000011310146651611014546 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.02 0.00 73 63 2376 data-in/Linux_mnode_2004111707350100644000175500000240000000022410146651610014524 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.12 0.24 0.25 78 47 134 38 1 12 0 data-in/Linux_hwnode5_2004111707350100644000175500000240000000022510146651610014774 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.01 0.00 19 52 493 131 15 3 0 data-in/Linux_hwnode3_2004111707350100644000175500000240000000022410146651611014772 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.52 2.12 1.66 73 17 805 95 27 3 0 data-in/Linux_hwnode2_2004111707350100644000175500000240000000022510146651610014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.03 0.04 0.00 81 15 769 224 23 4 0 data-in/FreeBSD_mb2_2004111707350100644000175500000240000000000010146651604014210 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707350100644000175500000240000000061110146651610014242 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 339 1 256 23916544 162377728 229048320 1551978496 138477568 1976347612 1673479631 data-in/FreeBSD_psa4_2004111707350100644000175500000240000000053510146651610014411 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.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137236480 104202240 45060096 32768 104619912 122992242 data-in/FreeBSD_psa3_2004111707350100644000175500000240000000062310146651610014406 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.24 0.25 0.24 21 2 10 24 2 130 42 7 1 3000 8689 2096 25 4965 919613440 329617408 684523520 137986048 26693632 1547946474 1385958290 data-in/FreeBSD_psa2_2004111707350100644000175500000240000000062210146651610014404 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.59 0.61 0.37 13 0 1 34 0 134 73 7 1 1498 1867 5746 0 352 974950400 275148800 313200640 522055680 21094400 2150869094 1434415657 data-in/FreeBSD_pinky_2004111707350100644000175500000240000000057010146651610014673 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.07 0.45 0.58 71 13 31 52 75 306 10 14 19 0 0 17059840 170389504 752435200 76935168 26583040 1102778722 3875165030 11 0 data-in/Linux_mb_2004111707350100644000175500000240000000015510146651606014030 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.07 0.02 0.00 13 16 88 15 1 data-in/Linux_mb_2004111707400100644000175500000240000000015510146652262014023 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 72 15 1 data-in/Linux_staging_2004111707400100644000175500000240000000016610146652262015063 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 110 28 0 data-in/Linux_psa1_2004111707400100644000175500000240000000011310146652265014266 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.02 0.00 4 26 231 data-in/Linux_r1z_2004111707400100644000175500000240000000031110146652266014137 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.17 0.09 84 34 23 137 30 3 741 492 15 920 data-in/Linux_r1q_2004111707400100644000175500000240000000027210146652266014134 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.91 2.76 2.70 89 78 42 131 23 1147 750 13 2348 data-in/Linux_r1m2_2004111707400100644000175500000240000000031510146652265014207 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.15 0.08 0.08 86 81 34 137 24 3 4191 2932 111 2762 data-in/Linux_r1m1_2004111707400100644000175500000240000000031310146652266014205 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.04 0.13 0.11 69 73 29 178 51 3 1721 831 59 5046 data-in/Linux_r1f_2004111707400100644000175500000240000000027510146652271014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.43 1.50 1.45 87 86 46 211 20 10095 15185 15 9095 data-in/Linux_r1a1_2004111707400100644000175500000240000000027110146652263014171 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.33 0.40 0.38 83 35 14 144 39 957 624 57 3598 data-in/Linux_r1a_2004111707400100644000175500000240000000031610146652270014106 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.34 1.34 91 33 27 187 20 23 5816 4852 104 7939 data-in/Linux_streamguys1_2004111707400100644000175500000240000000022310146652266015711 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.72 0.75 0.84 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707400100644000175500000240000000011310146652265014550 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.06 0.03 0.00 73 63 2376 data-in/Linux_mnode_2004111707400100644000175500000240000000022410146652265014527 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.19 0.26 0.26 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111707400100644000175500000240000000022510146652264014776 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_2004111707400100644000175500000240000000022410146652265014774 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.52 1.25 1.43 73 17 799 98 27 3 0 data-in/Linux_hwnode2_2004111707400100644000175500000240000000022510146652266014775 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.10 0.08 0.02 81 15 769 224 23 4 0 data-in/FreeBSD_mb2_2004111707400100644000175500000240000000000010146652261014204 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707400100644000175500000240000000061110146652264014244 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 339 1 258 24145920 162181120 229015552 1551978496 138477568 1976659361 1676811436 data-in/FreeBSD_psa4_2004111707400100644000175500000240000000053510146652264014413 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 1811898368 137240576 104202240 45060096 32768 104625309 122999048 data-in/FreeBSD_psa3_2004111707400100644000175500000240000000062310146652265014411 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.34 0.26 0.24 21 2 10 24 2 141 42 7 1 3058 8851 2116 25 5136 881897472 331407360 709681152 148017152 27430912 1552941983 1411610150 data-in/FreeBSD_psa2_2004111707400100644000175500000240000000062210146652264014406 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.26 0.27 13 0 1 34 0 142 73 7 1 1532 1930 5874 0 369 973234176 286076928 311930880 513978368 21229568 2161602508 1538383343 data-in/FreeBSD_pinky_2004111707400100644000175500000240000000057010146652265014676 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.34 0.51 71 13 31 52 75 312 10 14 19 0 0 13828096 170741760 753901568 56320000 48611328 1108363356 3880376707 11 0 data-in/Linux_staging_2004111707450100644000175500000240000000016610146652740015071 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.01 0.01 0.00 8 100 109 28 0 data-in/Linux_psa1_2004111707450100644000175500000240000000011310146652740014271 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.22 0.07 0.02 4 26 234 data-in/Linux_r1z_2004111707450100644000175500000240000000031110146652743014144 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.25 0.17 0.10 84 34 23 152 35 3 765 497 15 951 data-in/Linux_r1q_2004111707450100644000175500000240000000027210146652743014141 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.37 2.43 2.56 89 78 42 132 21 1185 775 13 2425 data-in/Linux_r1m2_2004111707450100644000175500000240000000031510146652741014213 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.09 0.08 86 81 34 141 22 3 4235 2969 112 2808 data-in/Linux_r1m1_2004111707450100644000175500000240000000031310146652741014210 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.64 0.26 0.14 69 73 29 176 51 3 1776 850 63 5121 data-in/Linux_r1f_2004111707450100644000175500000240000000027510146652747014135 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.44 1.45 1.44 87 86 46 204 20 10123 15243 15 9115 data-in/Linux_r1a1_2004111707450100644000175500000240000000027110146652743014201 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.60 0.41 0.37 83 35 14 156 46 982 647 59 3715 data-in/Linux_r1a_2004111707450100644000175500000240000000031610146652744014121 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.47 1.39 1.36 91 33 27 187 20 23 5829 4870 104 7964 data-in/Linux_streamguys1_2004111707450100644000175500000240000000022310146652741015714 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.66 1.19 0.95 49 60 612 45 8 3 0 data-in/Linux_steve_2004111707450100644000175500000240000000011310146652741014554 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2376 data-in/Linux_mnode_2004111707450100644000175500000240000000022410146652742014534 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.64 0.40 0.30 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111707450100644000175500000240000000022510146652741015003 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 490 132 15 3 0 data-in/Linux_hwnode3_2004111707450100644000175500000240000000022410146652741015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.36 0.65 1.11 73 17 804 96 27 3 0 data-in/FreeBSD_mb2_2004111707450100644000175500000240000000000010146652735014217 0ustar djhstaffdata-in/FreeBSD_psa4_2004111707450100644000175500000240000000053510146652741014420 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.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104640708 123006620 data-in/FreeBSD_psa2_2004111707450100644000175500000240000000062210146652741014413 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.13 0.20 13 0 1 34 0 135 76 7 1 1569 1996 6043 0 388 970072064 288083968 312680448 514326528 21286912 2170983299 1606385693 data-in/FreeBSD_pinky_2004111707450100644000175500000240000000057010146652741014702 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.50 71 13 31 52 75 312 10 14 19 0 0 14524416 171479040 751853568 71188480 34357248 1113526607 3885787462 11 0 data-in/Linux_mb_2004111707450100644000175500000240000000015510146652740014031 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.08 0.03 0.01 13 16 80 15 1 data-in/Linux_hwnode2_2004111707450100644000175500000240000000022510146652741015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.00 0.04 0.00 81 15 768 224 23 4 0 data-in/FreeBSD_r4p_2004111707450100644000175500000240000000061110146652741014251 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 339 1 260 22745088 162275328 230334464 1551966208 138477568 1977041213 1680749761 data-in/FreeBSD_psa3_2004111707450100644000175500000240000000062310146652740014414 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.36 0.30 0.25 21 2 10 24 2 131 36 9 1 3136 8985 2132 30 5320 900296704 328683520 670228480 169472000 29753344 1561270420 1425319769 data-in/Linux_mb_2004111707500100644000175500000240000000015510146653413014023 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_2004111707500100644000175500000240000000016610146653412015062 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 109 28 0 data-in/Linux_psa1_2004111707500100644000175500000240000000011310146653414014264 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.02 0.00 4 26 223 data-in/Linux_r1z_2004111707500100644000175500000240000000031110146653415014135 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 84 34 23 153 51 3 791 505 15 979 data-in/Linux_r1q_2004111707500100644000175500000240000000027210146653415014132 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 3.11 2.98 2.76 89 78 42 130 24 1229 791 13 2506 data-in/Linux_r1m2_2004111707500100644000175500000240000000031510146653414014205 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.09 0.08 86 81 34 130 21 3 4290 3012 114 2859 data-in/Linux_r1m1_2004111707500100644000175500000240000000031310146653415014203 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.15 0.12 69 73 29 172 51 3 1811 858 67 5185 data-in/Linux_r1f_2004111707500100644000175500000240000000027510146653422014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.75 1.51 1.46 87 86 46 208 20 10155 15282 15 9137 data-in/Linux_r1a1_2004111707500100644000175500000240000000027210146653415014173 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.50 0.49 0.41 83 35 14 140 37 1011 651 59 3833 data-in/Linux_r1a_2004111707500100644000175500000240000000031610146653422014107 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.12 1.59 1.43 91 33 27 186 20 23 5858 4887 105 7986 data-in/Linux_streamguys1_2004111707500100644000175500000240000000022310146653416015710 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.63 0.80 0.82 49 60 621 45 8 3 0 data-in/Linux_steve_2004111707500100644000175500000240000000011310146653416014550 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.01 0.02 0.00 73 63 2376 data-in/Linux_mnode_2004111707500100644000175500000240000000022410146653414014525 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.22 0.34 0.29 78 47 139 38 1 12 0 data-in/Linux_hwnode5_2004111707500100644000175500000240000000022510146653415014776 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.08 0.03 0.00 19 52 491 132 15 3 0 data-in/Linux_hwnode3_2004111707500100644000175500000240000000022410146653413014771 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.48 0.61 0.97 73 17 804 98 27 3 0 data-in/Linux_hwnode2_2004111707500100644000175500000240000000022510146653415014773 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 224 23 4 0 data-in/FreeBSD_mb2_2004111707500100644000175500000240000000000010146653410014202 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707500100644000175500000240000000061110146653414014243 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 339 1 262 22159360 162312192 230912000 1551937536 138477568 1977319061 1684369401 data-in/FreeBSD_psa4_2004111707500100644000175500000240000000053510146653414014412 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 1811898368 137240576 104202240 45060096 32768 104646881 123013746 data-in/FreeBSD_psa2_2004111707500100644000175500000240000000062210146653413014404 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.61 0.79 0.43 13 0 1 34 0 147 84 7 1 1589 2064 6155 0 406 965521408 290029568 312418304 516550656 21929984 2182003471 1726150417 data-in/FreeBSD_pinky_2004111707500100644000175500000240000000057010146653414014674 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.12 0.33 0.46 71 13 31 52 75 315 10 14 19 0 0 13524992 171155456 752529408 73879552 32313344 1118965817 3891226172 11 0 data-in/FreeBSD_psa3_2004111707500100644000175500000240000000062310146653414014407 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.49 0.36 0.28 21 2 10 24 2 129 37 9 1 3194 9151 2144 31 5503 859676672 329469952 689881088 191045632 28360704 1574190443 1439481955 data-in/Linux_staging_2004111707550100644000175500000240000000016610146654067015076 0ustar djhstaffload1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral 0.00 0.00 0.00 8 100 110 28 0 data-in/Linux_psa1_2004111707550100644000175500000240000000011310146654067014276 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.00 0.00 0.00 4 26 216 data-in/Linux_r1z_2004111707550100644000175500000240000000031210146654072014143 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.04 0.05 0.06 84 34 23 188 83 3 802 511 15 1012 data-in/Linux_r1q_2004111707550100644000175500000240000000027210146654072014137 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 2.34 2.56 2.63 89 78 42 127 23 1268 805 14 2603 data-in/Linux_r1m1_2004111707550100644000175500000240000000031310146654072014210 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.04 0.10 0.09 69 73 29 173 51 3 1839 876 71 5263 data-in/Linux_r1f_2004111707550100644000175500000240000000027510146654076014133 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.59 1.67 1.54 87 86 46 204 20 10201 15344 15 9158 data-in/Linux_r1a1_2004111707550100644000175500000240000000027210146654070014176 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d 0.54 0.57 0.46 83 35 14 141 39 1055 670 61 3958 data-in/Linux_r1a_2004111707550100644000175500000240000000031610146654074014120 0ustar djhstaffload1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d 1.33 1.43 1.40 91 33 27 184 20 23 5885 4902 105 8009 data-in/Linux_steve_2004111707550100644000175500000240000000011310146654071014553 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total 0.00 0.00 0.00 73 63 2377 data-in/Linux_streamguys1_2004111707550100644000175500000240000000022310146654073015715 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 1.19 0.88 0.81 49 60 622 45 8 3 0 data-in/Linux_mnode_2004111707550100644000175500000240000000022410146654071014532 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.32 0.33 0.29 78 47 138 38 1 12 0 data-in/Linux_hwnode5_2004111707550100644000175500000240000000022510146654071015002 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 490 132 15 3 0 data-in/Linux_hwnode3_2004111707550100644000175500000240000000022510146654071015000 0ustar djhstaffload1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral 0.89 0.73 0.90 73 17 805 101 27 3 0 data-in/FreeBSD_mb2_2004111707550100644000175500000240000000000010146654065014216 0ustar djhstaffdata-in/FreeBSD_r4p_2004111707550100644000175500000240000000061110146654070014247 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 339 1 264 22056960 162320384 231006208 1551937536 138477568 1977544803 1686158878 data-in/FreeBSD_psa4_2004111707550100644000175500000240000000053510146654070014416 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 1811898368 137240576 104202240 45060096 32768 104653362 123021314 data-in/FreeBSD_psa3_2004111707550100644000175500000240000000062310146654070014413 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.07 0.17 0.21 21 2 10 24 2 132 41 9 1 3284 9283 2178 32 5679 848072704 311656448 691011584 219693056 28000256 1580251228 1453790025 data-in/FreeBSD_psa2_2004111707550100644000175500000240000000062210146654071014412 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.21 0.49 0.40 13 0 1 34 0 148 86 7 1 1619 2115 6215 0 422 962822144 290762752 311996416 518086656 22781952 2192324627 1848272036 data-in/FreeBSD_pinky_2004111707550100644000175500000240000000057010146654071014701 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.46 0.52 71 13 31 52 75 306 10 14 19 0 0 15544320 171462656 751312896 75362304 29720576 1124329817 3896650665 11 0 data-in/Linux_mb_2004111707550100644000175500000240000000015510146654067014036 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 75 15 1 data-in/Linux_hwnode2_2004111707550100644000175500000240000000022510146654070014776 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 765 225 23 4 0 data-in/Linux_r1m2_2004111707550100644000175500000240000000031510146654071014212 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.07 0.08 86 81 34 129 20 3 4339 3065 114 2912 data-in/Linux_mb_2004111708000100644000175500000240000000015510146654545014026 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld 0.00 0.00 0.00 13 16 79 15 1 data-in/Linux_psa1_2004111708000100644000175500000240000000011310146654545014266 0ustar djhstaffload1 load5 load15 disk-/ disk-/boot numproc-total 0.33 0.07 0.02 4 26 214