Calculating per jail memory usage ...
Kurt Jaeger
lists at c0mplx.org
Wed Jun 3 23:03:09 UTC 2009
Hi!
> Are there any tools for this that are either in ports, or others would
> like to share?
This perl snippet works pretty good:
# return memory/proc usage per jail and system
sub vmem {
my(@res);
my($i);
my($ip);
my(@t);
@res = `/bin/ps ax -o 'pid,jid,rss,vsz,args' 2>&1`;
shift(@res);
foreach $i (@res) {
$i = " ".$i;
@t=split(/ +/,$i);
# print "i: $i t1: $t[2]\n";
$jproc{$t[2]}++;
$jrealm{$t[2]} += $t[3];
$jvirtm{$t[2]} += $t[4];
}
foreach $i (keys(%running)) {
$ip=$vs2ip{$i};
if ( defined($jproc{$ip2jid{$ip}}) ) {
$runproc{$i} = $jproc{$ip2jid{$ip}} - 1
}
else {
$runproc{$i} = 0;
}
$runrealm{$i} = $jrealm{$ip2jid{$ip}};
$runvirtm{$i} = $jvirtm{$ip2jid{$ip}};
}
}
--
pi at opsec.eu +49 171 3101372 11 years to go !
More information about the freebsd-jail
mailing list