- 论坛徽章:
- 0
|
Hi,
请教大家一个关于thread的问题, 我想用多线程去获得多个机器的 CPU的load avg,使用rsh登录到机器上
执行uptime,
但是怎么处理 rsh的time out的问题? 谢谢大家!
foreach my $machine (@$machines_set) {
my $thr = threads->new(\&do_get_loadavg,$machine);
push @local_threads,$thr;
}
foreach (@local_threads) {
my $ret = $_->join();
push @selected_mach,$ret;
}
sub do_get_loadavg {
my $machine = shift;
my %ret_hash = ();
my $out = '';
eval {
local $SIG{ALRM} = sub { die "Time out\n" };
alarm $timeout;
my $cmd = "rsh -l $user $machine uptime";
$out = `/bin/sh -c '$cmd 2>&1'`;
alarm(0);
};
if($@) {
# errors in eval block
# return a empty hash
return \%ret_hash;
} else {
chomp $out;
if ($out =~ /(.*)load\s+average\s* .*)/m) {
my $load = $2;
my @load_avg = split(/,/,$load);
my $sum = 0;
foreach my $val (@load_avg) {
$sum += $val;
}
my $loadavg = $sum / 3;
$ret_hash{$machine} = $loadavg;
}
}
return \%ret_hash;
}
|
|