centreon-plugins/cloud/azure/management/monitor/mode/health.pm

154 lines
4.8 KiB
Perl

#
# Copyright 2021 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 cloud::azure::management::monitor::mode::health;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold);
sub custom_calc {
my ($self, %options) = @_;
$self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_status'};
$self->{result_values}->{summary} = $options{new_datas}->{$self->{instance} . '_summary'};
return 0;
}
sub custom_output {
my ($self, %options) = @_;
return sprintf("Status: '%s', Summary: '%s'",
$self->{result_values}->{status},
$self->{result_values}->{summary}
);
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'health', type => 0 },
];
$self->{maps_counters}->{health} = [
{ label => 'status', threshold => 0, set => {
key_values => [ { name => 'status' }, { name => 'summary' } ],
closure_custom_calc => $self->can('custom_calc'),
closure_custom_output => $self->can('custom_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => \&catalog_status_threshold,
}
},
];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$options{options}->add_options(arguments => {
"resource:s" => { name => 'resource' },
"resource-group:s" => { name => 'resource_group' },
"resource-type:s" => { name => 'resource_type' },
"resource-namespace:s" => { name => 'resource_namespace' },
"warning-status:s" => { name => 'warning_status', default => '' },
"critical-status:s" => { name => 'critical_status', default => '%{status} =~ /^Unavailable$/' },
"unknown-status:s" => { name => 'unknown_status', default => '' },
"ok-status:s" => { name => 'ok_status', default => '%{status} =~ /^Available$/' },
});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
if (!defined($self->{option_results}->{resource})) {
$self->{output}->add_option_msg(short_msg => "Need to specify either --resource <name> with --resource-group, --resource-type and --resource-namespace options or --resource <id>.");
$self->{output}->option_exit();
}
$self->{az_resource} = $self->{option_results}->{resource};
$self->{az_resource_group} = $self->{option_results}->{resource_group};
$self->{az_resource_type} = $self->{option_results}->{resource_type};
$self->{az_resource_namespace} = $self->{option_results}->{resource_namespace};
if ($self->{az_resource} =~ /^\/subscriptions\/.*\/resourceGroups\/(.*)\/providers\/(.*)\/(.*)\/(.*)$/) {
$self->{az_resource_group} = $1;
$self->{az_resource_namespace} = $2;
$self->{az_resource_type} = $3;
$self->{az_resource} = $4;
}
$self->change_macros(macros => ['warning_status', 'critical_status', 'unknown_status', 'ok_status']);
}
sub manage_selection {
my ($self, %options) = @_;
my $status = $options{custom}->azure_get_resource_health(
resource => $self->{az_resource},
resource_group => $self->{az_resource_group},
resource_type => $self->{az_resource_type},
resource_namespace => $self->{az_resource_namespace},
api_version => '2020-05-01'
);
$self->{health} = {
status => $status->{properties}->{availabilityState},
summary => $status->{properties}->{summary}
};
}
1;
__END__
=head1 MODE
Check resource health status. Usefull to determine host status (ie UP/DOWN).
=over 8
=item B<--resource>
Set resource name or id (Required).
=item B<--resource-group>
Set resource group (Required if resource's name is used).
=item B<--resource-namespace>
Set resource namespace (Required if resource's name is used).
=item B<--resource-type>
Set resource type (Required if resource's name is used).
=back
=cut