311 lines
11 KiB
Perl
311 lines
11 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 apps::vmware::connector::mode::alarmhost;
|
|
|
|
use base qw(centreon::plugins::templates::counter);
|
|
|
|
use strict;
|
|
use warnings;
|
|
use centreon::plugins::misc;
|
|
use centreon::plugins::statefile;
|
|
|
|
sub custom_status_threshold {
|
|
my ($self, %options) = @_;
|
|
|
|
my $status = 'ok';
|
|
if (defined($self->{instance_mode}->{option_results}->{'critical-' . $self->{label}}) && $self->{instance_mode}->{option_results}->{'critical-' . $self->{label}} ne '' &&
|
|
$self->eval(value => $self->{instance_mode}->{option_results}->{'critical-' . $self->{label}})) {
|
|
$self->{instance_mode}->{host_critical}++;
|
|
$status = 'critical';
|
|
} elsif (defined($self->{instance_mode}->{option_results}->{'warning-' . $self->{label}}) && $self->{instance_mode}->{option_results}->{'warning-' . $self->{label}} ne '' &&
|
|
$self->eval(value => $self->{instance_mode}->{option_results}->{'warning-' . $self->{label}})) {
|
|
$self->{instance_mode}->{host_warning}++;
|
|
$status = 'warning';
|
|
}
|
|
|
|
return $status;
|
|
}
|
|
|
|
sub custom_status_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return sprintf(
|
|
"alarm [%s] [%s] [%s] [%s] %s/%s",
|
|
$self->{result_values}->{status},
|
|
$self->{result_values}->{type},
|
|
$self->{result_values}->{entity_name},
|
|
$self->{result_values}->{time},
|
|
$self->{result_values}->{name},
|
|
$self->{result_values}->{description}
|
|
);
|
|
}
|
|
|
|
sub custom_esxhost_perfdata {
|
|
my ($self, %options) = @_;
|
|
|
|
my $extra_label;
|
|
# We do it manually. Because we have only 1 instance in group.
|
|
if (scalar(keys %{$self->{instance_mode}->{esxhost}}) > 1 || $self->{output}->use_new_perfdata()) {
|
|
$extra_label = $self->{result_values}->{name};
|
|
}
|
|
$self->{output}->perfdata_add(
|
|
label => 'alarm_' . $self->{result_values}->{label_ref},
|
|
nlabel => 'host.alarms.' . $self->{result_values}->{label_ref} . '.current.count',
|
|
instances => $extra_label,
|
|
value => $self->{result_values}->{alarm_value},
|
|
min => 0
|
|
);
|
|
}
|
|
|
|
sub custom_esxhost_calc {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{result_values}->{label_ref} = $options{extra_options}->{label_ref};
|
|
$self->{result_values}->{alarm_value} = $self->{instance_mode}->{'host_' . $options{extra_options}->{label_ref}};
|
|
$self->{result_values}->{name} = $options{new_datas}->{$self->{instance} . '_name'};
|
|
return 0;
|
|
}
|
|
|
|
sub set_counters {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{maps_counters_type} = [
|
|
{ name => 'global', type => 0, skipped_code => { -10 => 1 } },
|
|
{ name => 'esxhost', type => 2, cb_prefix_output => 'prefix_esxhost_output', cb_long_output => 'esxhost_long_output', message_multiple => 'All hosts are ok',
|
|
group => [
|
|
{ name => 'alarm', cb_init => 'alarm_reset', skipped_code => { -11 => 1 } },
|
|
{ name => 'esxhost_metrics', display => 0, skipped_code => { -11 => 1 } }
|
|
]
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{global} = [
|
|
{ label => 'total-alarm-warning', nlabel => 'host.alarms.warning.current.count', set => {
|
|
key_values => [ { name => 'yellow' } ],
|
|
output_template => '%s warning alarm(s) found(s)',
|
|
perfdatas => [
|
|
{ label => 'total_alarm_warning', template => '%s', min => 0 }
|
|
]
|
|
}
|
|
},
|
|
{ label => 'total-alarm-critical', nlabel => 'host.alarms.critical.current.count', set => {
|
|
key_values => [ { name => 'red' } ],
|
|
output_template => '%s critical alarm(s) found(s)',
|
|
perfdatas => [
|
|
{ label => 'total_alarm_critical', template => '%s', min => 0 }
|
|
]
|
|
}
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{alarm} = [
|
|
{
|
|
label => 'status', type => 2,
|
|
warning_default => '%{status} =~ /yellow/i',
|
|
critical_default => '%{status} =~ /red/i',
|
|
set => {
|
|
key_values => [
|
|
{ name => 'entity_name' }, { name => 'status' },
|
|
{ name => 'time' }, { name => 'description' }, { name => 'name' }, { name => 'type' }, { name => 'since' }
|
|
],
|
|
closure_custom_output => $self->can('custom_status_output'),
|
|
closure_custom_perfdata => sub { return 0; },
|
|
closure_custom_threshold_check => $self->can('custom_status_threshold')
|
|
}
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{esxhost_metrics} = [
|
|
{ label => 'alarm-warning', type => 2, set => {
|
|
key_values => [ { name => 'name' } ],
|
|
output_template => '',
|
|
closure_custom_threshold_check => sub { return 'ok' },
|
|
closure_custom_calc => $self->can('custom_esxhost_calc'), closure_custom_calc_extra_options => { label_ref => 'warning' },
|
|
closure_custom_perfdata => $self->can('custom_esxhost_perfdata')
|
|
}
|
|
},
|
|
{ label => 'alarm-critical', type => 2, set => {
|
|
key_values => [ { name => 'name' } ],
|
|
output_template => '',
|
|
closure_custom_threshold_check => sub { return 'ok' },
|
|
closure_custom_calc => $self->can('custom_esxhost_calc'), closure_custom_calc_extra_options => { label_ref => 'critical' },
|
|
closure_custom_perfdata => $self->can('custom_esxhost_perfdata')
|
|
}
|
|
}
|
|
];
|
|
}
|
|
|
|
sub prefix_esxhost_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return "Host '" . $options{instance_value}->{display} . "' ";
|
|
}
|
|
|
|
sub alarm_reset {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{host_warning} = 0;
|
|
$self->{host_critical} = 0;
|
|
}
|
|
|
|
sub esxhost_long_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return "checking host '" . $options{instance_value}->{display} . "'";
|
|
}
|
|
|
|
sub new {
|
|
my ($class, %options) = @_;
|
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
|
bless $self, $class;
|
|
|
|
$options{options}->add_options(arguments => {
|
|
'esx-hostname:s' => { name => 'esx_hostname' },
|
|
'filter' => { name => 'filter' },
|
|
'scope-datacenter:s' => { name => 'scope_datacenter' },
|
|
'scope-cluster:s' => { name => 'scope_cluster' },
|
|
'filter-time:s' => { name => 'filter_time' },
|
|
'memory' => { name => 'memory' }
|
|
});
|
|
|
|
centreon::plugins::misc::mymodule_load(
|
|
output => $self->{output}, module => 'Date::Parse',
|
|
error_msg => "Cannot load module 'Date::Parse'."
|
|
);
|
|
$self->{statefile_cache} = centreon::plugins::statefile->new(%options);
|
|
return $self;
|
|
}
|
|
|
|
sub check_options {
|
|
my ($self, %options) = @_;
|
|
$self->SUPER::check_options(%options);
|
|
|
|
if (defined($self->{option_results}->{memory})) {
|
|
$self->{statefile_cache}->check_options(%options);
|
|
}
|
|
}
|
|
|
|
sub manage_selection {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{global} = { yellow => 0, red => 0 };
|
|
$self->{esxhost} = {};
|
|
my $response = $options{custom}->execute(
|
|
params => $self->{option_results},
|
|
command => 'alarmhost'
|
|
);
|
|
|
|
my $last_time;
|
|
if (defined($self->{option_results}->{memory})) {
|
|
$self->{statefile_cache}->read(statefile => "cache_vmware_" . $options{custom}->get_id() . '_' . $self->{mode});
|
|
$last_time = $self->{statefile_cache}->get(name => 'last_time');
|
|
}
|
|
|
|
my ($i, $current_time) = (1, time());
|
|
foreach my $esxhost_id (keys %{$response->{data}}) {
|
|
my $esxhost_name = $response->{data}->{$esxhost_id}->{name};
|
|
$self->{esxhost}->{$esxhost_name} = { display => $esxhost_name, alarm => {}, esxhost_metrics => { 1 => { name => $esxhost_name } } };
|
|
|
|
foreach (keys %{$response->{data}->{$esxhost_id}->{alarms}}) {
|
|
my $create_time = Date::Parse::str2time($response->{data}->{$esxhost_id}->{alarms}->{$_}->{time});
|
|
if (!defined($create_time)) {
|
|
$self->{output}->output_add(severity => 'UNKNOWN',
|
|
short_msg => "Can't Parse date '" . $response->{data}->{$esxhost_id}->{alarms}->{$_}->{time} . "'");
|
|
next;
|
|
}
|
|
|
|
next if (defined($self->{option_results}->{memory}) && defined($last_time) && $last_time > $create_time);
|
|
|
|
my $diff_time = $current_time - $create_time;
|
|
if (defined($self->{option_results}->{filter_time}) && $self->{option_results}->{filter_time} ne '') {
|
|
next if ($diff_time > $self->{option_results}->{filter_time});
|
|
}
|
|
|
|
$self->{esxhost}->{$esxhost_name}->{alarm}->{$i} = { %{$response->{data}->{$esxhost_id}->{alarms}->{$_}}, since => $diff_time };
|
|
$self->{global}->{$response->{data}->{$esxhost_id}->{alarms}->{$_}->{status}}++;
|
|
$i++;
|
|
}
|
|
}
|
|
|
|
if (defined($self->{option_results}->{memory})) {
|
|
$self->{statefile_cache}->write(data => { last_time => $current_time });
|
|
}
|
|
}
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
=head1 MODE
|
|
|
|
Check ESX host alarms (red an yellow).
|
|
|
|
=over 8
|
|
|
|
=item B<--esx-hostname>
|
|
|
|
ESX hostname to check.
|
|
If not set, we check all ESX.
|
|
|
|
=item B<--filter>
|
|
|
|
Datacenter is a regexp.
|
|
|
|
=item B<--scope-datacenter>
|
|
|
|
Search in following datacenter(s) (can be a regexp).
|
|
|
|
=item B<--scope-cluster>
|
|
|
|
Search in following cluster(s) (can be a regexp).
|
|
|
|
=item B<--filter-time>
|
|
|
|
Don't check alarm older (value in seconds).
|
|
|
|
=item B<--memory>
|
|
|
|
Check new alarms only.
|
|
|
|
=item B<--warning-status>
|
|
|
|
Set warning threshold for status (Default: '%{status} =~ /yellow/i).
|
|
Can used special variables like: %{status}, %{name}, %{entity}, %{type}.
|
|
|
|
=item B<--critical-status>
|
|
|
|
Set critical threshold for status (Default: '%{status} =~ /red/i').
|
|
Can used special variables like: %{status}, %{name}, %{entity}, %{type}.
|
|
|
|
=item B<--warning-*>
|
|
|
|
Threshold warning.
|
|
Can be: 'total-alarm-warning', 'total-alarm-critical'.
|
|
|
|
=item B<--critical-*>
|
|
|
|
Threshold critical.
|
|
Can be: 'total-alarm-warning', 'total-alarm-critical'.
|
|
|
|
=back
|
|
|
|
=cut
|