306 lines
9.8 KiB
Perl
306 lines
9.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 network::aruba::aoscx::snmp::mode::vsx;
|
|
|
|
use base qw(centreon::plugins::templates::counter);
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Digest::MD5 qw(md5_hex);
|
|
use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng);
|
|
|
|
sub custom_device_status_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return sprintf(
|
|
'role: %s [config sync: %s]',
|
|
$self->{result_values}->{role},
|
|
$self->{result_values}->{config_sync}
|
|
);
|
|
}
|
|
|
|
sub custom_isl_status_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return sprintf(
|
|
'status: %s',
|
|
$self->{result_values}->{isl_status}
|
|
);
|
|
}
|
|
|
|
sub custom_keepalive_status_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return sprintf(
|
|
'status: %s',
|
|
$self->{result_values}->{keepalive_status}
|
|
);
|
|
}
|
|
|
|
sub vsx_long_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return 'checking virtual switching extension';
|
|
}
|
|
|
|
sub prefix_vsx_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return 'Virtual switching extension ';
|
|
}
|
|
|
|
sub prefix_isl_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return 'inter-switch link ';
|
|
}
|
|
|
|
sub prefix_keepalive_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return 'keepalive ';
|
|
}
|
|
|
|
sub prefix_device_output {
|
|
my ($self, %options) = @_;
|
|
|
|
return 'device ';
|
|
}
|
|
|
|
sub set_counters {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{maps_counters_type} = [
|
|
{ name => 'vsx', type => 3, cb_prefix_output => 'prefix_vsx_output', cb_long_output => 'vsx_long_output', indent_long_output => ' ',
|
|
group => [
|
|
{ name => 'device', type => 0, display_short => 0, cb_prefix_output => 'prefix_device_output', skipped_code => { -10 => 1 } },
|
|
{ name => 'isl', type => 0, display_short => 0, cb_prefix_output => 'prefix_isl_output', skipped_code => { -10 => 1 } },
|
|
{ name => 'keepalive', type => 0, display_short => 0, cb_prefix_output => 'prefix_keepalive_output', skipped_code => { -10 => 1 } }
|
|
]
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{device} = [
|
|
{
|
|
label => 'device-status',
|
|
type => 2,
|
|
set => {
|
|
key_values => [ { name => 'role' }, { name => 'config_sync' } ],
|
|
closure_custom_output => $self->can('custom_device_status_output'),
|
|
closure_custom_perfdata => sub { return 0; },
|
|
closure_custom_threshold_check => \&catalog_status_threshold_ng
|
|
}
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{isl} = [
|
|
{
|
|
label => 'isl-status',
|
|
type => 2,
|
|
critical_default => '%{isl_status} =~ /outSync/',
|
|
set => {
|
|
key_values => [ { name => 'isl_status' } ],
|
|
closure_custom_output => $self->can('custom_isl_status_output'),
|
|
closure_custom_perfdata => sub { return 0; },
|
|
closure_custom_threshold_check => \&catalog_status_threshold_ng
|
|
}
|
|
},
|
|
{ label => 'isl-packets-in', nlabel => 'vsx.isl.packets.in.count', set => {
|
|
key_values => [ { name => 'isl_packets_in', diff => 1 } ],
|
|
output_template => 'packets in: %s',
|
|
perfdatas => [
|
|
{ template => '%s', min => 0 }
|
|
]
|
|
}
|
|
},
|
|
{ label => 'isl-packets-out', nlabel => 'vsx.isl.packets.out.count', set => {
|
|
key_values => [ { name => 'isl_packets_out', diff => 1 } ],
|
|
output_template => 'packets out: %s',
|
|
perfdatas => [
|
|
{ template => '%s', min => 0 }
|
|
]
|
|
}
|
|
}
|
|
];
|
|
|
|
$self->{maps_counters}->{keepalive} = [
|
|
{
|
|
label => 'keepalive-status',
|
|
type => 2,
|
|
critical_default => '%{keepalive_status} =~ /outofSyncEstablished|failed/',
|
|
set => {
|
|
key_values => [ { name => 'keepalive_status' } ],
|
|
closure_custom_output => $self->can('custom_keepalive_status_output'),
|
|
closure_custom_perfdata => sub { return 0; },
|
|
closure_custom_threshold_check => \&catalog_status_threshold_ng
|
|
}
|
|
},
|
|
{ label => 'keepalive-packets-in', nlabel => 'vsx.keepalive.packets.in.count', set => {
|
|
key_values => [ { name => 'keepalive_packets_in', diff => 1 } ],
|
|
output_template => 'packets in: %s',
|
|
perfdatas => [
|
|
{ template => '%s', min => 0 }
|
|
]
|
|
}
|
|
},
|
|
{ label => 'keepalive-packets-out', nlabel => 'vsx.keepalive.packets.out.count', set => {
|
|
key_values => [ { name => 'keepalive_packets_out', diff => 1 } ],
|
|
output_template => 'packets out: %s',
|
|
perfdatas => [
|
|
{ template => '%s', min => 0 }
|
|
]
|
|
}
|
|
}
|
|
];
|
|
}
|
|
|
|
sub new {
|
|
my ($class, %options) = @_;
|
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1);
|
|
bless $self, $class;
|
|
|
|
$options{options}->add_options(arguments => {
|
|
});
|
|
|
|
return $self;
|
|
}
|
|
|
|
my $mapping_role = {
|
|
1 => 'primary', 2 => 'secondary', 3 => 'notConfigured'
|
|
};
|
|
my $mapping_config_sync = {
|
|
1 => 'enabled', 2 => 'disabled'
|
|
};
|
|
my $mapping_isl_state = {
|
|
1 => 'init', 2 => 'outSync', 3 => 'inSync'
|
|
};
|
|
my $mapping_keepalive_state = {
|
|
1 => 'init', 2 => 'configured', 3 => 'inSyncEstablished',
|
|
4 => 'outofSyncEstablished', 5 => 'initEstablished',
|
|
6 => 'failed', 7 => 'stopped'
|
|
};
|
|
|
|
my $mapping = {
|
|
role => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.1.4.1', map => $mapping_role }, # arubaWiredVsxDeviceRole
|
|
config_sync => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.1.4.2', map => $mapping_config_sync }, # arubaWiredVsxConfigSync
|
|
isl_status => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.1.1', map => $mapping_isl_state }, # arubaWiredVsxIslOperState
|
|
isl_packets_out => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.1.2' }, # arubaWiredVsxIslPduTx
|
|
isl_packets_in => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.1.3' }, # arubaWiredVsxIslPduRx
|
|
keepalive_status => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.2.1', map => $mapping_keepalive_state }, # arubaWiredVsxKeepAliveOperState
|
|
keepalive_packets_out => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.2.2' }, # arubaWiredVsxKeepAlivePacketsTx
|
|
keepalive_packets_in => { oid => '.1.3.6.1.4.1.47196.4.1.1.3.7.2.2.3' } # arubaWiredVsxKeepAlivePacketsRx
|
|
};
|
|
|
|
sub manage_selection {
|
|
my ($self, %options) = @_;
|
|
|
|
my $snmp_result = $options{snmp}->get_leef(oids => [ map($_->{oid} . '.0', values(%$mapping)) ], nothing_quit => 1);
|
|
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => 0);
|
|
|
|
$self->{output}->output_add(short_msg => 'virtual switching extension is ok');
|
|
|
|
$self->{vsx} = {
|
|
global => {
|
|
device => {
|
|
role => $result->{role},
|
|
config_sync => $result->{config_sync}
|
|
},
|
|
isl => {
|
|
isl_status => $result->{isl_status},
|
|
isl_packets_out => $result->{isl_packets_out},
|
|
isl_packets_in => $result->{isl_packets_in}
|
|
},
|
|
keepalive => {
|
|
keepalive_status => $result->{keepalive_status},
|
|
keepalive_packets_out => $result->{keepalive_packets_out},
|
|
keepalive_packets_in => $result->{keepalive_packets_in}
|
|
}
|
|
}
|
|
};
|
|
|
|
$self->{cache_name} = 'aruba_aoscx_' . $self->{mode} . '_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' .
|
|
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all'));
|
|
}
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
=head1 MODE
|
|
|
|
Check virtual switching extension.
|
|
|
|
=over 8
|
|
|
|
=item B<--unknown-device-status>
|
|
|
|
Set unknown threshold for status.
|
|
Can used special variables like: %{role}, %{config_sync}
|
|
|
|
=item B<--warning-device-status>
|
|
|
|
Set warning threshold for status.
|
|
Can used special variables like: %{role}, %{config_sync}
|
|
|
|
=item B<--critical-device-status>
|
|
|
|
Set critical threshold for status.
|
|
Can used special variables like: %{role}, %{config_sync}
|
|
|
|
=item B<--unknown-isl-status>
|
|
|
|
Set unknown threshold for status.
|
|
Can used special variables like: %{isl_status}
|
|
|
|
=item B<--warning-isl-status>
|
|
|
|
Set warning threshold for status.
|
|
Can used special variables like: %{isl_status}
|
|
|
|
=item B<--critical-isl-status>
|
|
|
|
Set critical threshold for status (Default: '%{isl_status} =~ /outSync/').
|
|
Can used special variables like: %{isl_status}
|
|
|
|
=item B<--unknown-keepalive-status>
|
|
|
|
Set unknown threshold for status.
|
|
Can used special variables like: %{keepalive_status}
|
|
|
|
=item B<--warning-keepalive-status>
|
|
|
|
Set warning threshold for status.
|
|
Can used special variables like: %{keepalive_status}
|
|
|
|
=item B<--critical-keepalive-status>
|
|
|
|
Set critical threshold for status (Default: '%{keepalive_status} =~ /outofSyncEstablished|failed/').
|
|
Can used special variables like: %{keepalive_status}
|
|
|
|
=item B<--warning-*> B<--critical-*>
|
|
|
|
Thresholds.
|
|
Can be: 'isl-packets-in', 'isl-packets-out', 'keepalive-packets-in', 'keepalive-packets-out'.
|
|
|
|
=back
|
|
|
|
=cut
|