change perfdata hardware ibmc huawei

This commit is contained in:
garnier-quentin 2019-04-15 16:19:24 +02:00
parent a3636fdd3e
commit 590388ad26
4 changed files with 36 additions and 24 deletions

View File

@ -291,10 +291,13 @@ sub display {
$self->{components}->{$comp}->{total},
$comp));
}
$self->{output}->perfdata_add(label => 'count_' . $comp,
value => $self->{components}->{$comp}->{total},
warning => $warn,
critical => $crit);
$self->{output}->perfdata_add(
label => 'count_' . $comp,
nlabel => 'hardware.' . $comp . '.count',
value => $self->{components}->{$comp}->{total},
warning => $warn,
critical => $crit
);
push @{$exits}, $exit;
}

View File

@ -77,12 +77,15 @@ sub check {
}
my $perf_label = $result->{fanDevicename};
$perf_label =~ s/ /_/g;
$self->{output}->perfdata_add(label => 'speed_' . $perf_label, unit => 'rpm',
value => $result->{fanSpeed},
warning => $warn,
critical => $crit,
min => 0
);
$self->{output}->perfdata_add(
label => 'speed', unit => 'rpm',
nlabel => 'hardware.fan.speed.rpm',
instances => $perf_label,
value => $result->{fanSpeed},
warning => $warn,
critical => $crit,
min => 0
);
}
$self->{output}->output_add(long_msg => sprintf("Fan '%s' status is '%s' [instance = %s]",
@ -97,4 +100,4 @@ sub check {
}
}
1;
1;

View File

@ -77,12 +77,15 @@ sub check {
}
my $perf_label = $result->{hardDiskDevicename};
$perf_label =~ s/ /_/g;
$self->{output}->perfdata_add(label => 'temperature_' . $perf_label, unit => 'C',
value => $result->{hardDiskTemperature},
warning => $warn,
critical => $crit,
min => 0
);
$self->{output}->perfdata_add(
label => 'temperature', unit => 'C',
nlabel => 'hardware.harddisk.temperature.celsius',
instances => $perf_label,
value => $result->{hardDiskTemperature},
warning => $warn,
critical => $crit,
min => 0
);
}
$self->{output}->output_add(long_msg => sprintf("Hard disk '%s' status is '%s' [instance = %s]",
@ -97,4 +100,4 @@ sub check {
}
}
1;
1;

View File

@ -60,12 +60,15 @@ sub check {
short_msg => sprintf("Temperature of '%s' is '%s' celsius degrees", $result->{temperatureObject}, $result->{temperatureReading} / 10));
}
$self->{output}->perfdata_add(label => 'temperature_' . $result->{temperatureObject}, unit => 'C',
value => $result->{temperatureReading} / 10,
warning => $warn,
critical => $crit
);
$self->{output}->perfdata_add(
label => 'temperature', unit => 'C',
nlabel => 'hardware.temperature.celsius',
instances => $result->{temperatureObject},
value => $result->{temperatureReading} / 10,
warning => $warn,
critical => $crit
);
}
}
1;
1;