+ Add failover mode for F5 BigIP
This commit is contained in:
parent
67c74b92b5
commit
328e1fec22
|
@ -212,7 +212,6 @@ sub manage_selection {
|
|||
$self->{output}->option_exit();
|
||||
}
|
||||
|
||||
$self->{global} = { };
|
||||
my $result = $options{snmp}->get_leef(oids => [$oid_sysStatClientCurConns, $oid_sysStatServerCurConns,
|
||||
$oid_sysClientsslStatCurConns, $oid_sysServersslStatCurConns,
|
||||
$oid_sysClientsslStatTotNativeConns, $oid_sysClientsslStatTotCompatConns],
|
||||
|
|
|
@ -0,0 +1,325 @@
|
|||
#
|
||||
# Copyright 2015 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 network::f5::bigip::mode::failover;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use centreon::plugins::values;
|
||||
|
||||
my $instance_mode;
|
||||
|
||||
my $maps_counters = {
|
||||
global => [
|
||||
{ label => 'sync-status', threshold => 0, set => {
|
||||
key_values => [ { name => 'syncstatus' } ],
|
||||
closure_custom_calc => \&custom_syncstatus_calc,
|
||||
closure_custom_output => \&custom_syncstatus_output,
|
||||
closure_custom_perfdata => sub { return 0; },
|
||||
closure_custom_threshold_check => \&custom_syncstatus_threshold,
|
||||
}
|
||||
},
|
||||
{ label => 'failover-status', threshold => 0, set => {
|
||||
key_values => [ { name => 'failoverstatus' } ],
|
||||
closure_custom_calc => \&custom_failoverstatus_calc,
|
||||
closure_custom_output => \&custom_failoverstatus_output,
|
||||
closure_custom_perfdata => sub { return 0; },
|
||||
closure_custom_threshold_check => \&custom_failoverstatus_threshold,
|
||||
}
|
||||
},
|
||||
]
|
||||
};
|
||||
|
||||
sub custom_syncstatus_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_sync_status}) && $instance_mode->{option_results}->{critical_sync_status} ne '' &&
|
||||
eval "$instance_mode->{option_results}->{critical_sync_status}") {
|
||||
$status = 'critical';
|
||||
} elsif (defined($instance_mode->{option_results}->{critical_sync_status}) && $instance_mode->{option_results}->{critical_sync_status} ne '' &&
|
||||
eval "$instance_mode->{option_results}->{critical_sync_status}") {
|
||||
$status = 'warning';
|
||||
}
|
||||
};
|
||||
if (defined($message)) {
|
||||
$self->{output}->output_add(long_msg => 'filter status issue: ' . $message);
|
||||
}
|
||||
|
||||
return $status;
|
||||
}
|
||||
|
||||
sub custom_syncstatus_output {
|
||||
my ($self, %options) = @_;
|
||||
my $msg = "Sync status is '" . $self->{result_values}->{syncstatus} . "'";
|
||||
|
||||
return $msg;
|
||||
}
|
||||
|
||||
sub custom_syncstatus_calc {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
$self->{result_values}->{syncstatus} = $options{new_datas}->{$self->{instance} . '_syncstatus'};
|
||||
return 0;
|
||||
}
|
||||
|
||||
sub custom_failoverstatus_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_failover_status}) && $instance_mode->{option_results}->{critical_failover_status} ne '' &&
|
||||
eval "$instance_mode->{option_results}->{critical_failover_status}") {
|
||||
$status = 'critical';
|
||||
} elsif (defined($instance_mode->{option_results}->{critical_failover_status}) && $instance_mode->{option_results}->{critical_failover_status} ne '' &&
|
||||
eval "$instance_mode->{option_results}->{critical_failover_status}") {
|
||||
$status = 'warning';
|
||||
}
|
||||
};
|
||||
if (defined($message)) {
|
||||
$self->{output}->output_add(long_msg => 'filter status issue: ' . $message);
|
||||
}
|
||||
|
||||
return $status;
|
||||
}
|
||||
|
||||
sub custom_syncstatus_output {
|
||||
my ($self, %options) = @_;
|
||||
my $msg = "Failover status is '" . $self->{result_values}->{failoverstatus} . "'";
|
||||
|
||||
return $msg;
|
||||
}
|
||||
|
||||
sub custom_failoverstatus_calc {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
$self->{result_values}->{failoverstatus} = $options{new_datas}->{$self->{instance} . '_failoverstatus'};
|
||||
return 0;
|
||||
}
|
||||
|
||||
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 =>
|
||||
{
|
||||
"filter-counters:s" => { name => 'filter_counters' },
|
||||
"warning-sync-status:s" => { name => 'warning_sync_status', default => '' },
|
||||
"critical-sync-status:s" => { name => 'critical_sync_status', default => '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/' },
|
||||
});
|
||||
|
||||
foreach my $key (('global')) {
|
||||
foreach (@{$maps_counters->{$key}}) {
|
||||
if (!defined($_->{threshold}) || $_->{threshold} != 0) {
|
||||
$options{options}->add_options(arguments => {
|
||||
'warning-' . $_->{label} . ':s' => { name => 'warning-' . $_->{label} },
|
||||
'critical-' . $_->{label} . ':s' => { name => 'critical-' . $_->{label} },
|
||||
});
|
||||
}
|
||||
$_->{obj} = centreon::plugins::values->new(statefile => $self->{statefile_value},
|
||||
output => $self->{output}, perfdata => $self->{perfdata},
|
||||
label => $_->{label});
|
||||
$_->{obj}->set(%{$_->{set}});
|
||||
}
|
||||
}
|
||||
|
||||
return $self;
|
||||
}
|
||||
|
||||
sub check_options {
|
||||
my ($self, %options) = @_;
|
||||
$self->SUPER::init(%options);
|
||||
|
||||
foreach my $key (('global')) {
|
||||
foreach (@{$maps_counters->{$key}}) {
|
||||
$_->{obj}->init(option_results => $self->{option_results});
|
||||
}
|
||||
}
|
||||
|
||||
$instance_mode = $self;
|
||||
$self->change_macros();
|
||||
}
|
||||
|
||||
sub run_global {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
my ($short_msg, $short_msg_append, $long_msg, $long_msg_append) = ('', '', '', '');
|
||||
my @exits;
|
||||
foreach (@{$maps_counters->{global}}) {
|
||||
my $obj = $_->{obj};
|
||||
|
||||
next if (defined($self->{option_results}->{filter_counters}) && $self->{option_results}->{filter_counters} ne '' &&
|
||||
$_->{name} !~ /$self->{option_results}->{filter_counters}/);
|
||||
|
||||
$obj->set(instance => 'global');
|
||||
|
||||
my ($value_check) = $obj->execute(values => $self->{global});
|
||||
|
||||
if ($value_check != 0) {
|
||||
$long_msg .= $long_msg_append . $obj->output_error();
|
||||
$long_msg_append = ', ';
|
||||
next;
|
||||
}
|
||||
my $exit2 = $obj->threshold_check();
|
||||
push @exits, $exit2;
|
||||
|
||||
my $output = $obj->output();
|
||||
$long_msg .= $long_msg_append . $output;
|
||||
$long_msg_append = ', ';
|
||||
|
||||
if (!$self->{output}->is_status(litteral => 1, value => $exit2, compare => 'ok')) {
|
||||
$short_msg .= $short_msg_append . $output;
|
||||
$short_msg_append = ', ';
|
||||
}
|
||||
|
||||
$obj->perfdata();
|
||||
}
|
||||
|
||||
my $exit = $self->{output}->get_most_critical(status => [ @exits ]);
|
||||
if (!$self->{output}->is_status(litteral => 1, value => $exit, compare => 'ok')) {
|
||||
$self->{output}->output_add(severity => $exit,
|
||||
short_msg => "$short_msg"
|
||||
);
|
||||
} else {
|
||||
$self->{output}->output_add(short_msg => "$long_msg");
|
||||
}
|
||||
}
|
||||
|
||||
sub run {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
$self->manage_selection(%options);
|
||||
|
||||
$self->run_global();
|
||||
|
||||
$self->{output}->display();
|
||||
$self->{output}->exit();
|
||||
}
|
||||
|
||||
sub change_macros {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
foreach (('warning_sync_status', 'critical_sync_status', 'warning_failover_status', 'critical_failover_status')) {
|
||||
if (defined($self->{option_results}->{$_})) {
|
||||
$self->{option_results}->{$_} =~ s/%\{(.*?)\}/\$self->{result_values}->{$1}/g;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
my %map_boolean = (
|
||||
0 => 'false',
|
||||
1 => 'true',
|
||||
);
|
||||
my %map_sync_status = (
|
||||
0 => 'unknown',
|
||||
1 => 'syncing',
|
||||
2 => 'needManualSync',
|
||||
3 => 'inSync',
|
||||
4 => 'syncFailed',
|
||||
5 => 'syncDisconnected',
|
||||
6 => 'standalone',
|
||||
7 => 'awaitingInitialSync',
|
||||
8 => 'incompatibleVersion',
|
||||
9 => 'partialSync',
|
||||
);
|
||||
my %map_failover_status = (
|
||||
0 => 'unknown',
|
||||
1 => 'offline',
|
||||
2 => 'forcedOffline',
|
||||
3 => 'standby',
|
||||
4 => 'active',
|
||||
);
|
||||
|
||||
my $mapping = {
|
||||
sysAttrFailoverIsRedundant => { oid => '.1.3.6.1.4.1.3375.2.1.1.1.1.13.0', map => \%map_boolean },
|
||||
sysAttrModeMaint => { oid => '.1.3.6.1.4.1.3375.2.1.1.1.1.21.0', map => \%map_boolean },
|
||||
sysCmSyncStatusId => { oid => '.1.3.6.1.4.1.3375.2.1.14.1.1.0', map => \%map_sync_status },
|
||||
sysCmFailoverStatusId => { oid => '.1.3.6.1.4.1.3375.2.1.14.3.1.0', map => \%map_failover_status },
|
||||
};
|
||||
|
||||
sub manage_selection {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
my $result = $options{snmp}->get_leef(oids => [$mapping->{sysAttrFailoverIsRedundant}->{oid},
|
||||
$mapping->{sysAttrModeMaint}->{oid},
|
||||
$mapping->{sysCmSyncStatusId}->{oid},
|
||||
$mapping->{sysCmFailoverStatusId}->{oid}],
|
||||
nothing_quit => 1);
|
||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $result, instance => '0');
|
||||
|
||||
if ($result->{sysAttrModeMaint} eq 'true') {
|
||||
$self->{output}->output_add(severity => 'OK',
|
||||
short_msg => 'maintenance mode is active');
|
||||
$self->{output}->display();
|
||||
$self->{output}->exit();
|
||||
}
|
||||
if ($result->{sysAttrFailoverIsRedundant} eq 'false') {
|
||||
$self->{output}->output_add(severity => 'OK',
|
||||
short_msg => 'failover mode is disable');
|
||||
$self->{output}->display();
|
||||
$self->{output}->exit();
|
||||
}
|
||||
|
||||
$self->{global} = {
|
||||
syncstatus => $result->{sysCmSyncStatusId},
|
||||
failoverstatus => $result->{sysCmFailoverStatusId},
|
||||
};
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
=head1 MODE
|
||||
|
||||
Check failover status.
|
||||
|
||||
=over 8
|
||||
|
||||
=item B<--filter-counters>
|
||||
|
||||
Only display some counters (regexp can be used).
|
||||
|
||||
=item B<--warning-sync-status>
|
||||
|
||||
Set warning threshold for status
|
||||
Can used special variables like: %{syncstatus}
|
||||
|
||||
=item B<--critical-sync-status>
|
||||
|
||||
Set critical threshold for status (Default: '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/').
|
||||
Can used special variables like: %{syncstatus}
|
||||
|
||||
=back
|
||||
|
||||
=cut
|
|
@ -32,14 +32,15 @@ sub new {
|
|||
|
||||
$self->{version} = '1.0';
|
||||
%{$self->{modes}} = (
|
||||
'node-status' => 'network::f5::bigip::mode::nodestatus',
|
||||
'pool-status' => 'network::f5::bigip::mode::poolstatus',
|
||||
'virtualserver-status' => 'network::f5::bigip::mode::virtualserverstatus',
|
||||
'connections' => 'network::f5::bigip::mode::connections',
|
||||
'failover' => 'network::f5::bigip::mode::failover',
|
||||
'hardware' => 'network::f5::bigip::mode::hardware',
|
||||
'list-nodes' => 'network::f5::bigip::mode::listnodes',
|
||||
'list-pools' => 'network::f5::bigip::mode::listpools',
|
||||
'list-virtualservers' => 'network::f5::bigip::mode::listvirtualservers',
|
||||
'hardware' => 'network::f5::bigip::mode::hardware',
|
||||
'connections' => 'network::f5::bigip::mode::connections',
|
||||
'node-status' => 'network::f5::bigip::mode::nodestatus',
|
||||
'pool-status' => 'network::f5::bigip::mode::poolstatus',
|
||||
'virtualserver-status' => 'network::f5::bigip::mode::virtualserverstatus',
|
||||
);
|
||||
|
||||
return $self;
|
||||
|
|
Loading…
Reference in New Issue