# # Copyright 2019 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::netapp::restapi::mode::diskfailed; use base qw(centreon::plugins::templates::counter); use strict; use warnings; sub set_counters { my ($self, %options) = @_; $self->{maps_counters_type} = [ { name => 'disks', type => 0}, ]; $self->{maps_counters}->{disks} = [ { label => 'failed', set => { key_values => [ { name => 'failed' } ], output_template => 'Failed disks: %d', perfdatas => [ { label => 'failed', value => 'failed_absolute', template => '%d', min => 0 }, ], } }, { label => 'pre-failed', set => { key_values => [ { name => 'pre_failed' } ], output_template => 'Pre-failed disks: %d', perfdatas => [ { label => 'pre_failed', value => 'pre_failed_absolute', template => '%d', min => 0 }, ], } }, ]; } sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{version} = '1.0'; $options{options}->add_options(arguments => { "filter-node:s" => { name => 'filter_node' }, "filter-cluster:s" => { name => 'filter_cluster' }, }); return $self; } sub check_options { my ($self, %options) = @_; $self->SUPER::check_options(%options); } sub manage_selection { my ($self, %options) = @_; my $clusters; my $nodes; if (defined($self->{option_results}->{filter_cluster}) && $self->{option_results}->{filter_cluster} ne '') { $clusters = $options{custom}->get_objects(path => '/clusters', key => 'key', name => 'name'); } if (defined($self->{option_results}->{filter_node}) && $self->{option_results}->{filter_node} ne '') { $nodes = $options{custom}->get_objects(path => '/nodes', key => 'key', name => 'name'); } my $result = $options{custom}->get(path => '/disks'); $self->{disks}->{failed} = 0; $self->{disks}->{pre_failed} = 0; foreach my $disk (@{$result}) { if (defined($self->{option_results}->{filter_node}) && $self->{option_results}->{filter_node} ne '' && defined($nodes->{$disk->{owner_node_key}}) && $nodes->{$disk->{owner_node_key}} !~ /$self->{option_results}->{filter_node}/) { $self->{output}->output_add(long_msg => "skipping '" . $disk->{name} . "': no matching filter node '" . $nodes->{$disk->{owner_node_key}} . "'", debug => 1); next; } if (defined($self->{option_results}->{filter_cluster}) && $self->{option_results}->{filter_cluster} ne '' && defined($clusters->{$disk->{cluster_key}}) && $clusters->{$disk->{cluster_key}} !~ /$self->{option_results}->{filter_cluster}/) { $self->{output}->output_add(long_msg => "skipping '" . $disk->{name} . "': no matching filter cluster '" . $clusters->{$disk->{cluster_key}} . "'", debug => 1); next; } if ($disk->{is_failed}) { $self->{disks}->{failed}++; $self->{output}->output_add(long_msg => "Disk '" . $disk->{name} . "' from cluster '" . $clusters->{$disk->{cluster_key}} . "' is in 'failed' state (reason: '" . $disk->{failed_reason} . "') [shelf: " . $disk->{shelf} . "] [serial_number: " . $disk->{serial_number} . "] [model: " . $disk->{model} . "]"); } if ($disk->{is_prefailed}) { $self->{disks}->{pre_failed}++; $self->{output}->output_add(long_msg => "Disk '" . $disk->{name} . "' from cluster '" . $clusters->{$disk->{cluster_key}} . "' is in 'pre-failed' state [shelf: " . $disk->{shelf} . "] [serial_number: " . $disk->{serial_number} . "] [model: " . $disk->{model} . "]"); } } } 1; __END__ =head1 MODE Check NetApp failed disks. =over 8 =item B<--filter-*> Filter disk. Can be: 'node', 'cluster' (can be a regexp). =item B<--warning-*> Threshold warning. Can be: 'failed', 'pre-failed'. =item B<--critical-*> Threshold critical. Can be: 'failed', 'pre-failed'. =back =cut