add plugin unisphere restapi

This commit is contained in:
garnier-quentin 2019-09-05 11:01:35 +02:00
parent 49c6ae5386
commit 0c0d364f0e
12 changed files with 978 additions and 0 deletions

View File

@ -0,0 +1,222 @@
#
# 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::emc::unisphere::restapi::custom::api;
use strict;
use warnings;
use centreon::plugins::http;
use JSON::XS;
use Digest::MD5 qw(md5_hex);
sub new {
my ($class, %options) = @_;
my $self = {};
bless $self, $class;
if (!defined($options{output})) {
print "Class Custom: Need to specify 'output' argument.\n";
exit 3;
}
if (!defined($options{options})) {
$options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument.");
$options{output}->option_exit();
}
if (!defined($options{noptions})) {
$options{options}->add_options(arguments => {
'api-username:s' => { name => 'api_username' },
'api-password:s' => { name => 'api_password' },
'hostname:s' => { name => 'hostname' },
'port:s' => { name => 'port' },
'proto:s' => { name => 'proto' },
'timeout:s' => { name => 'timeout' },
'unknown-http-status:s' => { name => 'unknown_http_status' },
'warning-http-status:s' => { name => 'warning_http_status' },
'critical-http-status:s' => { name => 'critical_http_status' },
});
}
$options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1);
$self->{output} = $options{output};
$self->{mode} = $options{mode};
$self->{http} = centreon::plugins::http->new(%options);
return $self;
}
sub set_options {
my ($self, %options) = @_;
$self->{option_results} = $options{option_results};
}
sub set_defaults {
my ($self, %options) = @_;
foreach (keys %{$options{default}}) {
if ($_ eq $self->{mode}) {
for (my $i = 0; $i < scalar(@{$options{default}->{$_}}); $i++) {
foreach my $opt (keys %{$options{default}->{$_}[$i]}) {
if (!defined($self->{option_results}->{$opt}[$i])) {
$self->{option_results}->{$opt}[$i] = $options{default}->{$_}[$i]->{$opt};
}
}
}
}
}
}
sub check_options {
my ($self, %options) = @_;
$self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : '';
$self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443;
$self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https';
$self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 10;
$self->{api_username} = (defined($self->{option_results}->{api_username})) ? $self->{option_results}->{api_username} : '';
$self->{api_password} = (defined($self->{option_results}->{api_password})) ? $self->{option_results}->{api_password} : '';
$self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) ? $self->{option_results}->{unknown_http_status} : '%{http_code} < 200 or %{http_code} >= 300';
$self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) ? $self->{option_results}->{warning_http_status} : '';
$self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status})) ? $self->{option_results}->{critical_http_status} : '';
if (!defined($self->{hostname}) || $self->{hostname} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --hostname option.");
$self->{output}->option_exit();
}
if (!defined($self->{api_username}) || $self->{api_username} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --api-username option.");
$self->{output}->option_exit();
}
if (!defined($self->{api_password}) || $self->{api_password} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --api-password option.");
$self->{output}->option_exit();
}
return 0;
}
sub build_options_for_httplib {
my ($self, %options) = @_;
$self->{option_results}->{hostname} = $self->{hostname};
$self->{option_results}->{timeout} = $self->{timeout};
$self->{option_results}->{port} = $self->{port};
$self->{option_results}->{proto} = $self->{proto};
$self->{option_results}->{timeout} = $self->{timeout};
$self->{option_results}->{credentials} = 1;
$self->{option_results}->{basic} = 1;
$self->{option_results}->{username} = $self->{api_username};
$self->{option_results}->{password} = $self->{api_password};
}
sub settings {
my ($self, %options) = @_;
return if (defined($self->{settings_done}));
$self->build_options_for_httplib();
$self->{http}->add_header(key => 'Accept', value => 'application/json');
$self->{http}->add_header(key => 'Content-Type', value => 'application/json');
$self->{http}->add_header(key => 'X-EMC-REST-CLIENT', value => 'true');
$self->{http}->set_options(%{$self->{option_results}});
$self->{settings_done} = 1;
}
sub get_hostname {
my ($self, %options) = @_;
return $self->{hostname};
}
sub request_api {
my ($self, %options) = @_;
$self->settings();
my $content = $self->{http}->request(
method => 'GET',
url_path => $options{url_path},
unknown_status => $self->{unknown_http_status},
warning_status => $self->{warning_http_status},
critical_status => $self->{critical_http_status},
cookies_file => '', # in memory
);
if (!defined($content) || $content eq '') {
$self->{output}->add_option_msg(short_msg => "API returns empty content [code: '" . $self->{http}->get_code() . "'] [message: '" . $self->{http}->get_message() . "']");
$self->{output}->option_exit();
}
my $decoded;
eval {
$decoded = JSON::XS->new->utf8->decode($content);
};
if ($@) {
$self->{output}->add_option_msg(short_msg => "Cannot decode response (add --debug option to display returned content)");
$self->{output}->option_exit();
}
return $decoded;
}
1;
__END__
=head1 NAME
EMC Unisphere Rest API
=head1 REST API OPTIONS
EMC Unisphere Rest API
=over 8
=item B<--hostname>
EMC Unisphere hostname.
=item B<--port>
Port used (Default: 443)
=item B<--proto>
Specify https if needed (Default: 'https')
=item B<--api-username>
EMC Unisphere API username.
=item B<--api-password>
EMC Unisphere API password.
=item B<--timeout>
Set timeout in seconds (Default: 10).
=back
=head1 DESCRIPTION
B<custom>.
=cut

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::battery;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{battery} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/battery/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking batteries');
$self->{components}->{battery} = { name => 'batteries', total => 0, skip => 0 };
return if ($self->check_filter(section => 'battery'));
return if (!defined($self->{json_results}->{battery}));
foreach my $result (@{$self->{json_results}->{battery}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'battery', instance => $instance));
$self->{components}->{battery}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"battery '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'battery', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Battery '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::disk;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{disks} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/disk/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking disks');
$self->{components}->{disk} = { name => 'disks', total => 0, skip => 0 };
return if ($self->check_filter(section => 'disk'));
return if (!defined($self->{json_results}->{disks}));
foreach my $result (@{$self->{json_results}->{disks}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'disk', instance => $instance));
$self->{components}->{disk}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"disk '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'disk', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Disk '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,99 @@
#
# 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::emc::unisphere::restapi::mode::components::dpe;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{dpe} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/dpe/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking disk processor enclosures');
$self->{components}->{dpe} = { name => 'dpe', total => 0, skip => 0 };
return if ($self->check_filter(section => 'dpe'));
return if (!defined($self->{json_results}->{dpe}));
foreach my $result (@{$self->{json_results}->{dpe}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'dpe', instance => $instance));
$self->{components}->{dpe}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"dpe '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'dpe', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("dpe '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
if ($result->{content}->{currentTemperature} =~ /[0-9]/) {
my ($exit2, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => $instance, value => $result->{content}->{currentTemperature});
if (!$self->{output}->is_status(value => $exit2, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit2,
short_msg => sprintf("dpe '%s' temperature is %s C", $result->{content}->{name}, $result->{content}->{currentTemperature})
);
}
$self->{output}->perfdata_add(
nlabel => 'hardware.dpe.temperature.celsius', unit => 'C',
instances => $result->{content}->{name},
value => $result->{content}->{currentTemperature},
warning => $warn,
critical => $crit,
);
}
if ($result->{content}->{currentPower} =~ /[0-9]/) {
my ($exit2, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'power', instance => $instance, value => $result->{content}->{currentPower});
if (!$self->{output}->is_status(value => $exit2, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit2,
short_msg => sprintf("dpe '%s' current power is %s W", $result->{content}->{name}, $result->{content}->{currentPower})
);
}
$self->{output}->perfdata_add(
nlabel => 'hardware.dpe.power.watt', unit => 'W',
instances => $result->{content}->{name},
value => $result->{content}->{currentPower},
warning => $warn,
critical => $crit,
);
}
}
}
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::fan;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{fans} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/fan/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking fans');
$self->{components}->{fan} = { name => 'fans', total => 0, skip => 0 };
return if ($self->check_filter(section => 'fan'));
return if (!defined($self->{json_results}->{fan}));
foreach my $result (@{$self->{json_results}->{fans}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'fan', instance => $instance));
$self->{components}->{fan}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"fan '%s' status is '%s' [instance = %s]",
$result->{content}->{id}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'fan', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Fan '%s' status is '%s'", $result->{content}->{id}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::iomodule;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{iomodules} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/ioModule/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking iomodules');
$self->{components}->{iomodule} = { name => 'iomodules', total => 0, skip => 0 };
return if ($self->check_filter(section => 'iomodule'));
return if (!defined($self->{json_results}->{iomodules}));
foreach my $result (@{$self->{json_results}->{iomodules}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'iomodule', instance => $instance));
$self->{components}->{iomodule}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"iomodule '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'iomodule', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("iomodule '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::psu;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{psus} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/powerSupply/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking power supplies');
$self->{components}->{psu} = { name => 'psus', total => 0, skip => 0 };
return if ($self->check_filter(section => 'psu'));
return if (!defined($self->{json_results}->{psus}));
foreach my $result (@{$self->{json_results}->{psus}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'psu', instance => $instance));
$self->{components}->{psu}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"power supply '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'psu', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Power supply '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,43 @@
#
# 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::emc::unisphere::restapi::mode::components::resources;
use strict;
use warnings;
use Exporter;
our $health_status;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw($health_status);
$health_status = {
0 => 'unknown',
5 => 'ok',
7 => 'ok_but',
10 => 'degraded',
15 => 'minor',
20 => 'major',
25 => 'critical',
30 => 'non_recoverable'
};
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::sp;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{sp} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/storageProcessor/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking storage processors');
$self->{components}->{sp} = { name => 'sp', total => 0, skip => 0 };
return if ($self->check_filter(section => 'sp'));
return if (!defined($self->{json_results}->{sp}));
foreach my $result (@{$self->{json_results}->{sp}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'sp', instance => $instance));
$self->{components}->{sp}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"storage processor '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'sp', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Storage processor '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,65 @@
#
# 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::emc::unisphere::restapi::mode::components::ssd;
use strict;
use warnings;
use storage::emc::unisphere::restapi::mode::components::resources qw($health_status);
sub load {
my ($self) = @_;
$self->{json_results}->{ssd} = $self->{custom}->request_api(method => 'GET', url_path => '/api/types/ssd/instances');
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => 'checking ssd');
$self->{components}->{ssd} = { name => 'ssd', total => 0, skip => 0 };
return if ($self->check_filter(section => 'ssd'));
return if (!defined($self->{json_results}->{ssd}));
foreach my $result (@{$self->{json_results}->{ssd}->{entries}}) {
my $instance = $result->{content}->{id};
next if ($self->check_filter(section => 'ssd', instance => $instance));
$self->{components}->{ssd}->{total}++;
my $health = $health_status->{ $result->{content}->{health}->{value} };
$self->{output}->output_add(
long_msg => sprintf(
"ssd '%s' status is '%s' [instance = %s]",
$result->{content}->{name}, $health, $instance,
)
);
my $exit = $self->get_severity(label => 'health', section => 'ssd', value => $health);
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("ssd '%s' status is '%s'", $result->{content}->{name}, $health)
);
}
}
}
1;

View File

@ -0,0 +1,110 @@
#
# 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::emc::unisphere::restapi::mode::hardware;
use base qw(centreon::plugins::templates::hardware);
use strict;
use warnings;
sub set_system {
my ($self, %options) = @_;
$self->{regexp_threshold_overload_check_section_option} = '^(disk|fan|iomodule|psu|dpe|battery|ssd|sp)$';
$self->{regexp_threshold_numeric_check_section_option} = '^(temperature|power)$';
$self->{cb_hook1} = 'init_custom';
$self->{thresholds} = {
health => [
['ok_but', 'WARNING'],
['ok', 'OK'],
['degraded', 'WARNING'],
['minor', 'WARNING'],
['major', 'CRITICAL'],
['critical', 'CRITICAL'],
['non_recoverable', 'CRITICAL'],
['unknown', 'UNKNOWN'],
],
};
$self->{components_path} = 'storage::emc::unisphere::restapi::mode::components';
$self->{components_module} = ['disk', 'fan', 'iomodule', 'psu', 'dpe', 'battery', 'ssd', 'sp'];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options, no_absent => 1, force_new_perfdata => 1);
bless $self, $class;
$options{options}->add_options(arguments => {});
return $self;
}
sub init_custom {
my ($self, %options) = @_;
$self->{custom} = $options{custom};
}
1;
=head1 MODE
Check hardware.
=over 8
=item B<--component>
Which component to check (Default: '.*').
Can be: 'disk', 'fan', 'iomodule', 'psu', 'dpe', 'battery', 'ssd', 'sp'.
=item B<--filter>
Exclude some parts (comma seperated list)
Can also exclude specific instance: --filter='disk,dpe_disk_6'
=item B<--no-component>
Return an error if no compenents are checked.
If total (with skipped) is 0. (Default: 'critical' returns).
=item B<--threshold-overload>
Set to overload default threshold values (syntax: section,[instance,]status,regexp)
It used before default thresholds (order stays).
Example: --threshold-overload='disk,OK,ok_but'
=item B<--warning>
Set warning threshold for 'temperature', 'power' (syntax: type,regexp,threshold)
Example: --warning='temperature,.*,40'
=item B<--critical>
Set critical threshold for 'temperature', 'power' (syntax: type,regexp,threshold)
Example: --critical='temperature,.*,50'
=back
=cut

View File

@ -0,0 +1,49 @@
#
# 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::emc::unisphere::restapi::plugin;
use strict;
use warnings;
use base qw(centreon::plugins::script_custom);
sub new {
my ( $class, %options ) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$self->{version} = '0.1';
%{ $self->{modes} } = (
'hardware' => 'storage::emc::unisphere::restapi::mode::hardware',
);
$self->{custom_modes}{api} = 'storage::emc::unisphere::restapi::custom::api';
return $self;
}
1;
__END__
=head1 PLUGIN DESCRIPTION
Check EMC storage with Unisphere using Rest API.
=cut