From 4fb955e8e79cf16472a6a0d5bf976486e34f2939 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut Date: Tue, 10 Dec 2024 16:24:35 +0100 Subject: [PATCH 1/4] Add new mode stack --- src/network/aruba/aoscx/snmp/mode/stack.pm | 312 ++++++++++++++++++ src/network/aruba/aoscx/snmp/plugin.pm | 1 + .../aoscx/snmp/slim_aoscx-stack.snmpwalk | 76 +++++ 3 files changed, 389 insertions(+) create mode 100644 src/network/aruba/aoscx/snmp/mode/stack.pm create mode 100644 tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk diff --git a/src/network/aruba/aoscx/snmp/mode/stack.pm b/src/network/aruba/aoscx/snmp/mode/stack.pm new file mode 100644 index 0000000000..f481afb18e --- /dev/null +++ b/src/network/aruba/aoscx/snmp/mode/stack.pm @@ -0,0 +1,312 @@ +# +# Copyright 2023 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::stack; + +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 catalog_status_calc); + +sub custom_member_status_output { + my ($self, %options) = @_; + + my $msg = sprintf( + 'role: %s [state: %s]', + $self->{result_values}->{role}, + $self->{result_values}->{state}, + ); + return $msg; +} + +sub custom_member_status_calc { + my ($self, %options) = @_; + + $self->{result_values}->{roleLast} = $options{old_datas}->{$self->{instance} . '_role'}; + $self->{result_values}->{role} = $options{new_datas}->{$self->{instance} . '_role'}; + + $self->{result_values}->{stateLast} = $options{old_datas}->{$self->{instance} . '_state'}; + $self->{result_values}->{state} = $options{new_datas}->{$self->{instance} . '_state'}; + if (!defined($options{old_datas}->{$self->{instance} . '_role'})) { + $self->{error_msg} = "buffer creation"; + return -2; + } + + return 0; +} + +sub custom_port_status_output { + my ($self, %options) = @_; + + my $msg = sprintf( + 'operational status: %s [admin status: %s]', + $self->{result_values}->{oper_status}, + $self->{result_values}->{admin_status} + ); + return $msg; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'member', + type => 3, + cb_prefix_output => 'prefix_member_output', + cb_long_output => 'member_long_output', + indent_long_output => ' ', + message_multiple => 'All stack members are ok', + group => + [ + { name => 'global', type => 0, skipped_code => { -10 => 1 } }, + { name => 'port', + display_long => 1, + cb_prefix_output => 'prefix_port_output', + message_multiple => 'All ports are ok', + type => 1, + skipped_code => { -10 => 1 } }, + ] + } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'member-status', threshold => 0, set => { + key_values => [ { name => 'role' }, { name => 'display' }, { name => 'state'} ], + closure_custom_calc => $self->can('custom_member_status_calc'), + closure_custom_output => $self->can('custom_member_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold, + } + }, + ]; + + $self->{maps_counters}->{port} = [ + { label => 'port-status', threshold => 0, set => { + key_values => + [ { name => 'oper_status' }, { name => 'admin_status' }, { name => 'display' } ], + closure_custom_calc => \&catalog_status_calc, + closure_custom_output => $self->can('custom_port_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold, + } + }, + ]; +} + +sub member_long_output { + my ($self, %options) = @_; + + return "checking stack member '" . $options{instance_value}->{display} . "'"; +} + +sub prefix_member_output { + my ($self, %options) = @_; + + return "Stack member '" . $options{instance_value}->{display} . "' "; +} + +sub prefix_port_output { + my ($self, %options) = @_; + + return "port '" . $options{instance_value}->{display} . "' "; +} + +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 => { + 'unknown-member-status:s' => { name => 'unknown_member_status', default => '' }, + 'warning-member-status:s' => { name => 'warning_member_status', default => '' }, + 'critical-member-status:s' => { name => 'critical_member_status', default => '%{role} ne %{roleLast}' }, + 'unknown-port-status:s' => { name => 'unknown_port_status', default => '' }, + 'warning-port-status:s' => { name => 'warning_port_status', default => '' }, + 'critical-port-status:s' => { + name => 'critical_port_status', + default => '%{admin_status} eq "up" and %{oper_status} ne "up"' + }, + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + $self->change_macros( + macros => [ + 'unknown_member_status', 'warning_member_status', 'critical_member_status', + 'unknown_port_status', 'warning_port_status', 'critical_port_status' + ] + ); +} + +my $map_member_state = { + 0 => 'unusedId', + 1 => 'missing', + 2 => 'provision', + 3 => 'commander', + 4 => 'standby', + 5 => 'member', + 6 => 'shutdown', + 7 => 'booting', + 8 => 'communicationFailure', + 9 => 'incompatibleOs', + 10 => 'unknownState', + 11 => 'standbyBooting' +}; +my $map_member_role_status = { + 1 => 'active', + 2 => 'notInService', + 3 => 'notReady', + 4 => 'createAndGo', + 5 => 'createAndWait', + 6 => 'destroy' +}; +my $map_port_admin_status = { + 1 => 'enabled', + 2 => 'disabled' +}; +my $map_port_operation_status = { + 1 => 'up', + 2 => 'down', + 3 => 'disabled', + 4 => 'blocked' +}; + +my $mapping_member_table = { + stackMemberSerialNum => { oid => '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.14' }, + stackMemberRoleStatus => { oid => '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.7', map => $map_member_role_status }, + stackMemberState => { oid => '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.9', map => $map_member_state }, +}; +my $mapping_port_table = { + stackPortAdminStatus => { oid => '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.8', map => $map_port_admin_status }, + stackPortOperStatus => { oid => '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.3', map => $map_port_operation_status } +}; + +my $oid_memberTableEntry = '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1'; +my $oid_portTableEntry = '.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1'; + +sub manage_selection { + my ($self, %options) = @_; + + $self->{member} = {}; + my $snmp_result = $options{snmp}->get_multiple_table( + oids => [ + { oid => $oid_memberTableEntry }, + { oid => $mapping_member_table->{stackMemberSerialNum}->{oid} }, + { oid => $mapping_member_table->{stackMemberRoleStatus}->{oid} }, + { oid => $mapping_member_table->{stackMemberState}->{oid} } + , + { oid => $oid_portTableEntry }, + { oid => $mapping_port_table->{stackPortAdminStatus}->{oid} }, + { oid => $mapping_port_table->{stackPortOperStatus}->{oid} }, + , + ], + nothing_quit => 1 + ); + + foreach my $oid (keys %{$snmp_result->{$oid_memberTableEntry}}) { + next if ($oid !~ /^$mapping_member_table->{stackMemberRoleStatus}->{oid}\.(.*)$/); + my $instance_id = $1; + my $result = $options{snmp}->map_instance( + mapping => $mapping_member_table, + results => $snmp_result->{$oid_memberTableEntry}, + instance => $instance_id); + + $self->{member}->{$result->{stackMemberSerialNum}} = { + display => $result->{stackMemberSerialNum}, + global => { + display => $result->{stackMemberSerialNum}, + role => $result->{stackMemberRoleStatus}, + state => $result->{stackMemberState}, + }, + port => {}, + }; + + foreach (keys %{$snmp_result->{$oid_portTableEntry}}) { + next if (!/^$mapping_port_table->{stackPortOperStatus}->{oid}\.$instance_id\.(.*?)\.(.*)$/); + my $port_name = $1; + my $result2 = $options{snmp}->map_instance( + mapping => $mapping_port_table, + results => $snmp_result->{$oid_portTableEntry}, + instance => $instance_id . '.' . $port_name . '.1'); + + $self->{member}->{$result->{stackMemberSerialNum}}->{port}->{$port_name} = { + display => $port_name, + admin_status => $result2->{stackPortAdminStatus}, + oper_status => $result2->{stackPortOperStatus}, + }; + } + } + + $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 stack members. + +=over 8 + +=item B<--unknown-member-status> + +Define the conditions to match for the status to be UNKNOWN (Default: ''). +You can use the following variables: %{role}, %{roleLast}, %{state}, %{stateLast} + +=item B<--warning-member-status> + +Define the conditions to match for the status to be WARNING (Default: ''). +You can use the following variables: %{role}, %{roleLast}, %{state}, %{stateLast} + +=item B<--critical-member-status> + +Define the conditions to match for the status to be CRITICAL (Default: '%{role} ne %{roleLast}'). +You can use the following variables: %{role}, %{roleLast}, %{state}, %{stateLast} + +=item B<--unknown-port-status> + +Define the conditions to match for the status to be UNKNOWN (Default: ''). +You can use the following variables: %{admin_status}, %{oper_status}, %{display} + +=item B<--warning-port-status> + +Define the conditions to match for the status to be WARNING (Default: ''). +You can use the following variables: %{admin_status}, %{oper_status}, %{display} + +=item B<--critical-port-status> + +Define the conditions to match for the status to be CRITICAL (Default: '%{admin_status} eq "up" and %{oper_status} ne "up"'). +You can use the following variables: %{admin_status}, %{oper_status}, %{display} + +=back + +=cut diff --git a/src/network/aruba/aoscx/snmp/plugin.pm b/src/network/aruba/aoscx/snmp/plugin.pm index 121136c5a6..2e16b92f11 100644 --- a/src/network/aruba/aoscx/snmp/plugin.pm +++ b/src/network/aruba/aoscx/snmp/plugin.pm @@ -35,6 +35,7 @@ sub new { 'interfaces' => 'snmp_standard::mode::interfaces', 'list-interfaces' => 'snmp_standard::mode::listinterfaces', 'memory' => 'network::aruba::aoscx::snmp::mode::memory', + 'stack' => 'network::aruba::aoscx::snmp::mode::stack', 'vsf' => 'network::aruba::aoscx::snmp::mode::vsf', 'vsx' => 'network::aruba::aoscx::snmp::mode::vsx' }; diff --git a/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk b/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk new file mode 100644 index 0000000000..b88056c929 --- /dev/null +++ b/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk @@ -0,0 +1,76 @@ +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.2.1 = STRING: Anonymized 228 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.2.2 = STRING: Anonymized 252 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.2.3 = STRING: Anonymized 103 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.2.4 = STRING: Anonymized 007 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.3.1 = Hex-STRING: 90 20 C2 47 9D C0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.3.2 = Hex-STRING: 38 21 C7 36 39 80 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.3.3 = Hex-STRING: 94 60 D5 F5 B4 C0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.3.4 = Hex-STRING: 94 60 D5 F5 E5 00 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.4.1 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.4.2 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.4.3 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.4.4 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.5.1 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.5.2 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.5.3 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.5.4 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.6.1 = INTEGER: 200 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.6.2 = INTEGER: 150 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.6.3 = INTEGER: 128 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.6.4 = INTEGER: 128 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.7.1 = INTEGER: 3 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.7.2 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.7.3 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.7.4 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.8.1 = INTEGER: 101001 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.8.2 = INTEGER: 201001 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.8.3 = INTEGER: 301001 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.8.4 = INTEGER: 401001 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.9.1 = INTEGER: 3 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.9.2 = INTEGER: 4 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.9.3 = INTEGER: 5 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.9.4 = INTEGER: 5 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.10.1 = STRING: Anonymized 098 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.10.2 = STRING: Anonymized 114 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.10.3 = STRING: Anonymized 029 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.10.4 = STRING: Anonymized 197 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.11.1 = Timeticks: (961363900) 111 days, 6:27:19.00 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.11.2 = Timeticks: (961365700) 111 days, 6:27:37.00 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.11.3 = Timeticks: (961365400) 111 days, 6:27:34.00 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.11.4 = Timeticks: (961372700) 111 days, 6:28:47.00 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.12.1 = OID: 1.3.6.1.4.1.11.2.3.7.11.181.23 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.12.2 = OID: 1.3.6.1.4.1.11.2.3.7.11.181.25 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.12.3 = OID: 1.3.6.1.4.1.11.2.3.7.11.181.23 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.12.4 = OID: 1.3.6.1.4.1.11.2.3.7.11.181.23 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.14.1 = STRING: Anonymized 160 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.14.2 = STRING: Anonymized 018 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.14.3 = STRING: Anonymized 076 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.14.4 = STRING: Anonymized 042 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.15.1 = STRING: Anonymized 197 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.15.2 = STRING: Anonymized 018 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.15.3 = STRING: Anonymized 161 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.15.4 = STRING: Anonymized 252 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.16.1 = STRING: Anonymized 142 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.16.2 = STRING: Anonymized 033 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.16.3 = STRING: Anonymized 039 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.16.4 = STRING: Anonymized 188 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.17.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.17.2 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.17.3 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.17.4 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.18.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.18.2 = INTEGER: 2 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.18.3 = INTEGER: 3 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.18.4 = INTEGER: 4 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.19.1 = INTEGER: 0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.19.2 = INTEGER: 0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.19.3 = INTEGER: 0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.19.4 = INTEGER: 0 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.20.1 = INTEGER: 339186176 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.20.2 = INTEGER: 339186176 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.20.3 = INTEGER: 339186176 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.20.4 = INTEGER: 339186176 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.1 = INTEGER: 215841056 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.2 = INTEGER: 232473096 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.3 = INTEGER: 248044452 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.4 = INTEGER: 248044452 From 2203494da67f27bd7a56c05688de96c68dc76cad Mon Sep 17 00:00:00 2001 From: sfarouq-ext <116093375+sfarouq-ext@users.noreply.github.com> Date: Fri, 13 Dec 2024 13:52:50 +0100 Subject: [PATCH 2/4] Test(mode:stack) network::aruba::aoscx::snmp --- .../aoscx/snmp/slim_aoscx-stack.snmpwalk | 16 ++++++++ tests/network/aruba/aoscx/snmp/stack.robot | 37 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 tests/network/aruba/aoscx/snmp/stack.robot diff --git a/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk b/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk index b88056c929..2b6657e0a8 100644 --- a/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk +++ b/tests/network/aruba/aoscx/snmp/slim_aoscx-stack.snmpwalk @@ -74,3 +74,19 @@ .1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.2 = INTEGER: 232473096 .1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.3 = INTEGER: 248044452 .1.3.6.1.4.1.11.2.14.11.5.1.116.1.3.1.21.4 = INTEGER: 248044452 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.3.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.3.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.3.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.3.2.2.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.4.1.1.1 = STRING: "2.2" +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.4.1.2.1 = STRING: "2.1" +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.4.2.1.1 = STRING: "1.2" +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.4.2.2.1 = STRING: "1.1" +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.5.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.5.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.5.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.5.2.2.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.8.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.8.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.8.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.11.2.14.11.5.1.116.1.5.1.8.2.2.1 = INTEGER: 1 \ No newline at end of file diff --git a/tests/network/aruba/aoscx/snmp/stack.robot b/tests/network/aruba/aoscx/snmp/stack.robot new file mode 100644 index 0000000000..b9162c60f3 --- /dev/null +++ b/tests/network/aruba/aoscx/snmp/stack.robot @@ -0,0 +1,37 @@ +*** Settings *** +Documentation Check stack members. + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::aruba::aoscx::snmp::plugin + +*** Test Cases *** +stack ${tc} + [Tags] network hp + ${command} Catenate + ... ${CMD} + ... --mode=stack + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/aruba/aoscx/snmp/slim_aoscx-stack + ... --snmp-timeout=1 + ... ${extra_options} + + # first run to build cache + Run ${command} + # second run to control the output + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --verbose OK: All stack members are ok checking stack member 'Anonymized 018' role: active [state: standby] port '1' operational status: up [admin status: enabled] port '2' operational status: up [admin status: enabled] checking stack member 'Anonymized 042' role: active [state: member] checking stack member 'Anonymized 076' role: active [state: member] checking stack member 'Anonymized 160' role: notReady [state: commander] port '1' operational status: up [admin status: enabled] port '2' operational status: up [admin status: enabled] + ... 2 --unknown-member-status='${PERCENT}\\{role\\} ne "notReady"' UNKNOWN: Stack member 'Anonymized 018' role: active [state: standby] - Stack member 'Anonymized 042' role: active [state: member] - Stack member 'Anonymized 076' role: active [state: member] + ... 3 --warning-member-status='${PERCENT}\\{state\\} ne "down"' WARNING: Stack member 'Anonymized 018' role: active [state: standby] - Stack member 'Anonymized 042' role: active [state: member] - Stack member 'Anonymized 076' role: active [state: member] - Stack member 'Anonymized 160' role: notReady [state: commander] + ... 4 --critical-member-status='${PERCENT}\\{role\\} eq ${PERCENT}\\{roleLast\\}' CRITICAL: Stack member 'Anonymized 018' role: active [state: standby] - Stack member 'Anonymized 042' role: active [state: member] - Stack member 'Anonymized 076' role: active [state: member] - Stack member 'Anonymized 160' role: notReady [state: commander] + ... 5 --unknown-port-status='${PERCENT}\\{oper_status\\} ne "down"' UNKNOWN: Stack member 'Anonymized 018' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] - Stack member 'Anonymized 160' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] + ... 6 --warning-port-status='${PERCENT}\\{admin_status\\} ne "down"' WARNING: Stack member 'Anonymized 018' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] - Stack member 'Anonymized 160' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] + ... 7 --critical-port-status='${PERCENT}\\{oper_status\\} eq "up" and ${PERCENT}\\{display\\} ne "up"' CRITICAL: Stack member 'Anonymized 018' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] - Stack member 'Anonymized 160' port '1' operational status: up [admin status: enabled] - port '2' operational status: up [admin status: enabled] From 96513235b075915ff45e137692e3e2cc56edc346 Mon Sep 17 00:00:00 2001 From: sfarouq-ext <116093375+sfarouq-ext@users.noreply.github.com> Date: Mon, 16 Dec 2024 09:26:18 +0100 Subject: [PATCH 3/4] spellcheck --- tests/resources/spellcheck/stopwords.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/resources/spellcheck/stopwords.txt b/tests/resources/spellcheck/stopwords.txt index 55c3a58940..d68d047cae 100644 --- a/tests/resources/spellcheck/stopwords.txt +++ b/tests/resources/spellcheck/stopwords.txt @@ -56,6 +56,7 @@ cpu-utilization-5s --critical-cpu-utilization --critical-na --critical-total-cpu-utilization +CX Datacore datasource DC4 From f2d2deb68febc773f739015b458a658abec79b82 Mon Sep 17 00:00:00 2001 From: sfarouq-ext <116093375+sfarouq-ext@users.noreply.github.com> Date: Mon, 16 Dec 2024 10:13:12 +0100 Subject: [PATCH 4/4] tags --- tests/network/aruba/aoscx/snmp/stack.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/network/aruba/aoscx/snmp/stack.robot b/tests/network/aruba/aoscx/snmp/stack.robot index b9162c60f3..85389a690d 100644 --- a/tests/network/aruba/aoscx/snmp/stack.robot +++ b/tests/network/aruba/aoscx/snmp/stack.robot @@ -11,7 +11,7 @@ ${CMD} ${CENTREON_PLUGINS} --plugin=network::aruba::aoscx::snmp::plugin *** Test Cases *** stack ${tc} - [Tags] network hp + [Tags] network aruba ${command} Catenate ... ${CMD} ... --mode=stack