Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IBM FlashSystem 900 plugin #926

Merged
merged 1 commit into from
Mar 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
172 changes: 172 additions & 0 deletions storage/ibm/fs900/snmp/mode/arraysstatus.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
#
# Copyright 2018 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::ibm::fs900::snmp::mode::arraysstatus;

use base qw(centreon::plugins::templates::counter);

use strict;
use warnings;

my $instance_mode;

sub custom_status_threshold {
my ($self, %options) = @_;
my $status = 'ok';
my $message;

eval {
local $SIG{__WARN__} = sub { $message = $_[0]; };
local $SIG{__DIE__} = sub { $message = $_[0]; };

if (defined($instance_mode->{option_results}->{critical_status}) && $instance_mode->{option_results}->{critical_status} ne '' &&
eval "$instance_mode->{option_results}->{critical_status}") {
$status = 'critical';
} elsif (defined($instance_mode->{option_results}->{warning_status}) && $instance_mode->{option_results}->{warning_status} ne '' &&
eval "$instance_mode->{option_results}->{warning_status}") {
$status = 'warning';
}
};
if (defined($message)) {
$self->{output}->output_add(long_msg => 'filter status issue: ' . $message);
}

return $status;
}

sub custom_status_output {
my ($self, %options) = @_;

my $msg = sprintf("Status is '%s'", $self->{result_values}->{status});
return $msg;
}

sub custom_status_calc {
my ($self, %options) = @_;

$self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_arrayStatus'};
return 0;
}

sub set_counters {
my ($self, %options) = @_;

$self->{maps_counters_type} = [
{ name => 'global', type => 1, cb_prefix_output => 'prefix_output', message_multiple => "All arrays metrics are ok", message_separator => ' - ' }
];

$self->{maps_counters}->{global} = [
{ label => 'status', threshold => 0, set => {
key_values => [ { name => 'arrayStatus' } ],
closure_custom_calc => $self->can('custom_status_calc'),
closure_custom_output => $self->can('custom_status_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => $self->can('custom_status_threshold'),
}
},
{ label => 'vdisk-count', set => {
key_values => [ { name => 'arrayVDiskCount' }, { name => 'arrayId' } ],
output_template => 'VDisk count: %s',
perfdatas => [
{ label => 'vdisk_count', value => 'arrayVDiskCount_absolute', template => '%s', label_extra_instance => 1,
instance_use => 'arrayId_absolute', min => 0 },
],
}
},
];
}

sub prefix_output {
my ($self, %options) = @_;

return "Array '" . $options{instance_value}->{arrayId} . "' ";
}

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 =>
{
"warning-status:s" => { name => 'warning_status', default => '' },
"critical-status:s" => { name => 'critical_status', default => '%{status} =~ /degraded/i' },
});

return $self;
}

my $mapping = {
arrayId => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.2' },
arrayStatus => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.3' },
arrayVDiskCount => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.9' },
};

my $oid_arrayIndex = '.1.3.6.1.4.1.2.6.255.1.1.1.52.1';

sub manage_selection {
my ($self, %options) = @_;

my $snmp_result = $options{snmp}->get_table(oid => $oid_arrayIndex,
nothing_quit => 1);

$self->{global} = {};

foreach my $oid (keys %{$snmp_result}) {
next if ($oid !~ /^$mapping->{arrayId}->{oid}\.(.*)$/);
my $instance = $1;
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance);

$self->{global}->{$result->{arrayId}} = $result;
}
}

1;

__END__

=head1 MODE

Check arrays status.

=over 8

=item B<--warning-status>

Set warning threshold for status.
'status' can be: 'online', 'offline', 'excluded', 'degraded'.

=item B<--critical-status>

Set critical threshold for status (Default: '%{status} =~ /degraded/i').
'status' can be: 'online', 'offline', 'excluded', 'degraded'.

=item B<--warning-vdisk-count>

Threshold warning for VDisks count.

=item B<--critical-vdisk-count>

Threshold critical for VDisks count.

=back

=cut
183 changes: 183 additions & 0 deletions storage/ibm/fs900/snmp/mode/arraysusage.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
#
# Copyright 2018 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::ibm::fs900::snmp::mode::arraysusage;

use base qw(centreon::plugins::templates::counter);

use strict;
use warnings;

sub custom_usage_perfdata {
my ($self, %options) = @_;

my $extra_label = '';
$extra_label = '_' . $self->{result_values}->{display} if (!defined($options{extra_instance}) || $options{extra_instance} != 0);

$self->{output}->perfdata_add(label => "used" . $extra_label,
unit => 'B',
value => $self->{result_values}->{used},
warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-usage'),
critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-usage'),
min => 0,
max => $self->{result_values}->{total},
);
}

sub custom_usage_threshold {
my ($self, %options) = @_;

my $exit = $self->{perfdata}->threshold_check(value => $self->{result_values}->{used_prct},
threshold => [ { label => 'critical-usage', exit_litteral => 'critical' },
{ label => 'warning-usage', exit_litteral => 'warning' } ]);
return $exit;
}

sub custom_usage_output {
my ($self, %options) = @_;

my ($total, $total_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{total});
my ($used, $used_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{used});
my ($free, $free_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{free});

my $msg = sprintf("Usage Total: %s %s, Used: %s %s (%.2f%%), Free: %s %s (%.2f%%)", $total, $total_unit, $used, $used_unit, $self->{result_values}->{used_prct}, $free, $free_unit, $self->{result_values}->{free_prct});
return $msg;
}

sub custom_usage_calc {
my ($self, %options) = @_;

($self->{result_values}->{total}, $self->{result_values}->{total_unit}) = (split(' ', $options{new_datas}->{$self->{instance} . '_arrayCapacity'}));
($self->{result_values}->{used}, $self->{result_values}->{used_unit}) = (split(' ', $options{new_datas}->{$self->{instance} . '_arrayCapacityUsed'}));
($self->{result_values}->{free}, $self->{result_values}->{free_unit}) = (split(' ', $options{new_datas}->{$self->{instance} . '_arrayCapacityFree'}));

$self->{result_values}->{total} = storage::ibm::fs900::snmp::mode::arraysusage->change_to_bytes(value => $self->{result_values}->{total}, unit => $self->{result_values}->{total_unit});
$self->{result_values}->{used} = storage::ibm::fs900::snmp::mode::arraysusage->change_to_bytes(value => $self->{result_values}->{used}, unit => $self->{result_values}->{used_unit});
$self->{result_values}->{free} = storage::ibm::fs900::snmp::mode::arraysusage->change_to_bytes(value => $self->{result_values}->{free}, unit => $self->{result_values}->{free_unit});

$self->{result_values}->{used_prct} = $self->{result_values}->{used} * 100 / $self->{result_values}->{total};
$self->{result_values}->{free_prct} = 100 - $self->{result_values}->{used_prct};

return 0;
}

sub change_to_bytes {
my ($self, %options) = @_;

my $value = '';

if ($options{unit} =~ /KiB*/i) {
$value = $options{value} * 1024;
} elsif ($options{unit} =~ /MiB*/i) {
$value = $options{value} * 1024 * 1024;
} elsif ($options{unit} =~ /GiB*/i) {
$value = $options{value} * 1024 * 1024 * 1024;
} elsif ($options{unit} =~ /TiB*/i) {
$value = $options{value} * 1024 * 1024 * 1024 * 1024;
}

return $value
}

sub set_counters {
my ($self, %options) = @_;

$self->{maps_counters_type} = [
{ name => 'global', type => 1, cb_prefix_output => 'prefix_output', message_multiple => "All arrays usage are ok" }
];

$self->{maps_counters}->{global} = [
{ label => 'usage', set => {
key_values => [ { name => 'arrayCapacity' }, { name => 'arrayCapacityUsed' }, { name => 'arrayCapacityFree' }, { name => 'arrayId' } ],
closure_custom_calc => $self->can('custom_usage_calc'),
closure_custom_output => $self->can('custom_usage_output'),
closure_custom_perfdata => $self->can('custom_usage_perfdata'),
closure_custom_threshold_check => $self->can('custom_usage_threshold'),
}
},
];
}

sub prefix_output {
my ($self, %options) = @_;

return "Array '" . $options{instance_value}->{arrayId} . "' ";
}

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 =>
{
});

return $self;
}

my $mapping = {
arrayId => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.2' },
arrayCapacity => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.4' },
arrayCapacityUsed => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.5' },
arrayCapacityFree => { oid => '.1.3.6.1.4.1.2.6.255.1.1.1.52.1.6' },
};

my $oid_arrayIndex = '.1.3.6.1.4.1.2.6.255.1.1.1.52.1';

sub manage_selection {
my ($self, %options) = @_;

my $snmp_result = $options{snmp}->get_table(oid => $oid_arrayIndex,
nothing_quit => 1);

$self->{global} = {};

foreach my $oid (keys %{$snmp_result}) {
next if ($oid !~ /^$mapping->{arrayId}->{oid}\.(.*)$/);
my $instance = $1;
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance);

$self->{global}->{$result->{arrayId}} = $result;
}
}

1;

__END__

=head1 MODE

Check arrays usage.

=over 8

=item B<--warning-usage>

Threshold warning.

=item B<--critical-usage>

Threshold critical.

=back

=cut
Loading