centreon-plugins/storage/netapp/santricity/restapi/mode/storagevolumes.pm

232 lines
8.1 KiB
Perl
Raw Normal View History

2020-05-06 16:26:04 +02:00
#
# Copyright 2020 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::santricity::restapi::mode::storagevolumes;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold catalog_status_calc);
2020-05-07 10:16:30 +02:00
use Digest::MD5 qw(md5_hex);
2020-05-06 16:26:04 +02:00
sub custom_status_output {
my ($self, %options) = @_;
return sprintf(
'status: %s',
$self->{result_values}->{status}
);
}
sub ss_long_output {
my ($self, %options) = @_;
return "checking storage system '" . $options{instance_value}->{display} . "'";
}
sub prefix_ss_output {
my ($self, %options) = @_;
return "storage system '" . $options{instance_value}->{display} . "' ";
}
sub prefix_volume_output {
my ($self, %options) = @_;
return "volume '" . $options{instance_value}->{display} . "' ";
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'ss', type => 3, cb_prefix_output => 'prefix_ss_output', cb_long_output => 'ss_long_output', indent_long_output => ' ', message_multiple => 'All storage systems are ok',
group => [
{ name => 'volumes', display_long => 1, cb_prefix_output => 'prefix_volume_output', message_multiple => 'volumes are ok', type => 1, skipped_code => { -10 => 1 } }
]
}
];
$self->{maps_counters}->{volumes} = [
2020-05-07 08:58:47 +02:00
{ label => 'volume-status', threshold => 0, set => {
2020-05-06 16:26:04 +02:00
key_values => [ { name => 'status' }, { name => 'display' } ],
closure_custom_calc => \&catalog_status_calc,
closure_custom_output => $self->can('custom_status_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => \&catalog_status_threshold
}
2020-05-07 10:16:30 +02:00
},
{ label => 'read', nlabel => 'volume.io.read.usage.bytespersecond', set => {
2020-05-13 14:18:28 +02:00
key_values => [ { name => 'read_bytes', per_second => 1 }, { name => 'display' } ],
output_template => 'read: %s %s/s',
output_change_bytes => 1,
2020-05-07 10:16:30 +02:00
perfdatas => [
2020-05-13 14:18:28 +02:00
{ template => '%d', unit => 'B/s', label_extra_instance => 1 }
2020-05-07 10:16:30 +02:00
]
}
},
{ label => 'write', nlabel => 'volume.io.write.usage.bytespersecond', set => {
2020-05-13 14:18:28 +02:00
key_values => [ { name => 'write_bytes', per_second => 1 }, { name => 'display' } ],
2020-05-07 10:16:30 +02:00
output_template => 'write: %s %s/s',
2020-05-13 14:18:28 +02:00
output_change_bytes => 1,
2020-05-07 10:16:30 +02:00
perfdatas => [
2020-05-13 14:18:28 +02:00
{ template => '%d', unit => 'B/s', min => 0, label_extra_instance => 1 }
2020-05-07 10:16:30 +02:00
]
}
},
{ label => 'read-iops', nlabel => 'system.io.read.usage.iops', set => {
2020-05-13 14:18:28 +02:00
key_values => [ { name => 'read_iops', per_second => 1 }, { name => 'display' } ],
2020-05-07 10:16:30 +02:00
output_template => 'read: %.2f iops',
perfdatas => [
2020-05-13 14:18:28 +02:00
{ template => '%.2f', unit => 'iops', min => 0, label_extra_instance => 1 }
2020-05-07 10:16:30 +02:00
]
}
},
{ label => 'write-iops', nlabel => 'system.io.write.usage.iops', set => {
2020-05-13 14:18:28 +02:00
key_values => [ { name => 'write_iops', per_second => 1 }, { name => 'display' } ],
2020-05-07 10:16:30 +02:00
output_template => 'write: %.2f iops',
perfdatas => [
2020-05-13 14:18:28 +02:00
{ template => '%.2f', unit => 'iops', min => 0, label_extra_instance => 1 }
2020-05-07 10:16:30 +02:00
]
}
2020-05-06 16:26:04 +02:00
}
];
}
sub new {
my ($class, %options) = @_;
2020-05-07 10:16:30 +02:00
my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1);
2020-05-06 16:26:04 +02:00
bless $self, $class;
$options{options}->add_options(arguments => {
'filter-storage-name:s' => { name => 'filter_storage_name' },
'filter-volume-name:s' => { name => 'filter_volume_name' },
2020-05-07 08:58:47 +02:00
'unknown-volume-status:s' => { name => 'unknown_volume_status', default => '' },
2020-05-06 16:26:04 +02:00
'warning-volume-status:s' => { name => 'warning_volume_status', default => '%{status} =~ /degraded/i' },
'critical-volume-status:s' => { name => 'critical_volume_status', default => '%{status} =~ /failed/i' }
});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
$self->change_macros(macros => ['warning_volume_status', 'critical_volume_status', 'unknown_volume_status']);
}
sub manage_selection {
my ($self, %options) = @_;
my $results = $options{custom}->execute_storages_request(
2020-05-07 10:16:30 +02:00
endpoints => [
{ endpoint => '/volumes' },
{ endpoint => '/volume-statistics', get_param => 'usecache=false' }
],
2020-05-06 16:26:04 +02:00
filter_name => $self->{option_results}->{filter_storage_name}
);
$self->{ss} = {};
foreach (@{$results->{storages}}) {
my $storage_name = $_->{name};
$self->{ss}->{$storage_name} = {
display => $storage_name,
volumes => {}
};
2020-05-06 17:55:51 +02:00
next if (!defined($_->{'/volumes'}));
2020-05-06 16:26:04 +02:00
2020-05-06 17:55:51 +02:00
foreach my $entry (@{$_->{'/volumes'}}) {
2020-05-06 16:26:04 +02:00
next if (defined($options{filter_volume_name}) && $options{filter_volume_name} ne '' &&
$entry->{name} !~ /$options{filter_volume_name}/);
$self->{ss}->{$storage_name}->{volumes}->{ $entry->{name} } = {
display => $entry->{name},
status => $entry->{status}
};
}
2020-05-07 10:16:30 +02:00
foreach my $entry (@{$_->{'/volume-statistics'}}) {
next if (!defined($self->{ss}->{$storage_name}->{volumes}->{ $entry->{volumeName} }));
$self->{ss}->{$storage_name}->{volumes}->{ $entry->{volumeName} }->{write_bytes} = $entry->{writeBytes};
$self->{ss}->{$storage_name}->{volumes}->{ $entry->{volumeName} }->{read_bytes} = $entry->{readBytes};
$self->{ss}->{$storage_name}->{volumes}->{ $entry->{volumeName} }->{read_iops} = $entry->{readOps};
$self->{ss}->{$storage_name}->{volumes}->{ $entry->{volumeName} }->{write_iops} = $entry->{writeOps};
}
2020-05-06 16:26:04 +02:00
}
2020-05-07 10:16:30 +02:00
$self->{cache_name} = 'netapp_santricity' . $self->{mode} . '_' . $options{custom}->get_hostname() . '_' .
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')) . '_' .
(defined($self->{option_results}->{filter_storage_name}) ? md5_hex($self->{option_results}->{filter_storage_name}) : md5_hex('all')) . '_' .
(defined($self->{option_results}->{filter_volume_name}) ? md5_hex($self->{option_results}->{filter_volume_name}) : md5_hex('all'));
2020-05-06 16:26:04 +02:00
}
1;
__END__
=head1 MODE
Check storage volumes.
=over 8
=item B<--filter-counters>
Only display some counters (regexp can be used).
Example: --filter-counters='volume-status'
=item B<--filter-storage-name>
Filter storage name (can be a regexp).
=item B<--filter-volume-name>
Filter volume name (can be a regexp).
=item B<--unknown-volume-status>
Set unknown threshold for status.
Can used special variables like: %{status}, %{display}
=item B<--warning-volume-status>
Set warning threshold for status (Default: '%{status} =~ /degraded/i').
Can used special variables like: %{status}, %{display}
=item B<--critical-volume-status>
Set critical threshold for status (Default: '%{status} =~ /failed/i').
Can used special variables like: %{status}, %{display}
2020-05-07 10:16:30 +02:00
=item B<--warning-*> B<--critical-*>
Thresholds.
Can be: 'read' (B/s), 'write' (B/s), 'read-iops', 'write-iops'.
2020-05-06 16:26:04 +02:00
=back
=cut