fix socomec netvision snmp

This commit is contained in:
garnier-quentin 2021-01-28 14:49:13 +01:00
parent 96fe117c82
commit 6b4015f64b
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,8 @@ sub manage_selection {
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance);
foreach (('current', 'voltage')) {
$result->{$_} = 0 if (defined($result->{$_}) && ($result->{$_} eq '' || $result->{$_} == -1 || $result->{$_} == 65535));
$result->{$_} = 0 if (defined($result->{$_}) && (
$result->{$_} eq '' || $result->{$_} == -1 || $result->{$_} == 65535 || $result->{$_} == 655350));
$result->{$_} *= 0.1;
}