snmp__netscaler_cpu: unified whitespace in 'config'

This commit is contained in:
Lars Kruse 2018-03-08 04:45:00 +01:00
parent ea06de7c4f
commit 22523e8f5b
1 changed files with 6 additions and 6 deletions

View File

@ -153,17 +153,17 @@ if ($ARGV[0] and $ARGV[0] eq "config") {
print "avg.label avg\n";
print "avg.draw AREA\n";
print "avg.info Average load.\n";
foreach my $v (@cpu_name){
print $v.".label ".$v."\n";
print $v.".draw LINE2\n";
print $v.".info CPU usage of ".$v."\n";
print_thresholds($v);
foreach my $v (@cpu_name){
print $v.".label ".$v."\n";
print $v.".draw LINE2\n";
print $v.".info CPU usage of ".$v."\n";
print_thresholds($v);
}
for my $field qw(avg) {
print_thresholds($field);
}
&close_session($session);
&close_session($session);
exit 0;
}