# # Copyright 2022 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package storage::hp::p2000::xmlapi::mode::components::sensor; use strict; use warnings; my %sensor_type = ( # 2 it's other. Can be ok or '%'. Need to regexp 3 => { unit => 'C', nunit => 'celsius', type => 'temperature' }, 6 => { unit => 'V', nunit => 'volt', type => 'voltage' }, 9 => { unit => 'V', nunit => 'volt', type => 'voltage' } ); my %units = ( C => { long => 'celsius', type => 'temperature' }, V => { long => 'volt', type => 'voltage' }, '' => { long => undef, type => 'misc' }, '%' => { long => 'percentage', type => 'misc' } ); sub check { my ($self) = @_; $self->{output}->output_add(long_msg => "Checking sensor"); $self->{components}->{sensor} = {name => 'sensor', total => 0, skip => 0}; return if ($self->check_filter(section => 'sensor')); # We don't use status-numeric. Values are buggy !!!??? my ($entries) = $self->{custom}->get_infos( cmd => 'show sensor-status', base_type => 'sensors', properties_name => '^(?:sensor-name|value|sensor-type|status|enclosure-id)$' ); my ($results, $duplicated) = ({}, {}); foreach (@$entries) { my $name = $_->{'sensor-name'}; $name = $_->{'sensor-name'} . ':' . $_->{'enclosure-id'} if (defined($duplicated->{$name})); if (defined($results->{$name})) { $duplicated->{$name} = 1; my $instance = $results->{$name}->{'sensor-name'} . ':' . $results->{$name}->{'enclosure-id'}; $results->{$instance} = delete $results->{$name}; $name = $_->{'sensor-name'} . ':' . $_->{'enclosure-id'}; } $results->{$name} = $_; } # # Capacitor Charge-Ctlr B # 100% # OK # # # Overall Unit Status # Warning # Warning # foreach my $sensor_id (sort keys %$results) { my ($value, $unit) = (undef, '');; ($value, $unit) = ($1, $2) if ($results->{$sensor_id}->{value} =~ /\s*([0-9\.,]+)\s*(\S*)\s*/); if (defined($results->{$sensor_id}->{'sensor-type'}) && defined($sensor_type{$results->{$sensor_id}->{'sensor-type'}})) { $unit = $sensor_type{$results->{$sensor_id}->{'sensor-type'}}->{unit}; } my $type = $units{$unit}->{type}; next if ($self->check_filter(section => 'sensor', instance => $type . '.' . $sensor_id)); $self->{components}->{sensor}->{total}++; my $state = $results->{$sensor_id}->{status}; $self->{output}->output_add( long_msg => sprintf( "sensor '%s' status is %s (value: %s %s)", $sensor_id, $state, defined($value) ? $value : '-', defined($unit) ? $unit : '-' ) ); my $exit = $self->get_severity(section => 'sensor', value => $state); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { $self->{output}->output_add( severity => $exit, short_msg => sprintf("sensor '%s' status is '%s'", $sensor_id, $state) ); } next if (!defined($value)); my ($exit2, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'sensor', instance => $type . '.' . $sensor_id, value => $value); if (!$self->{output}->is_status(value => $exit2, compare => 'ok', litteral => 1)) { $self->{output}->output_add( severity => $exit2, short_msg => sprintf("Sensor '%s' is %s %s", $sensor_id, $value, defined($unit) ? $unit : '-') ); } $self->{output}->perfdata_add( label => 'sensor', unit => $unit, nlabel => 'hardware.sensor.' . $type . (defined($units{$unit}->{long}) ? $units{$unit}->{long} : ''), instances => $sensor_id, value => $value, warning => $warn, critical => $crit ); } } 1;