168 lines
6.3 KiB
Perl
168 lines
6.3 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::sonus::sbc::snmp::mode::callstats;
|
|
|
|
use base qw(centreon::plugins::templates::counter);
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Digest::MD5 qw(md5_hex);
|
|
|
|
sub set_counters {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{maps_counters_type} = [
|
|
{ name => 'port', type => 1, cb_prefix_output => 'prefix_port_output', message_multiple => 'All calls stats on ports are OK' },
|
|
];
|
|
|
|
$self->{maps_counters}->{port} = [
|
|
{ label => 'current-calls', set => {
|
|
key_values => [ { name => 'current' }, { name => 'display' } ],
|
|
output_template => 'Current calls : %s',
|
|
perfdatas => [
|
|
{ label => 'current', template => '%d',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
{ label => 'total-per-sec', set => {
|
|
key_values => [ { name => 'total', per_second => 1 }, { name => 'display' } ],
|
|
output_template => 'total calls: %.2f/s',
|
|
perfdatas => [
|
|
{ label => 'total', template => '%.2f',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
{ label => 'connected-per-sec', set => {
|
|
key_values => [ { name => 'connected', per_second => 1 }, { name => 'display' } ],
|
|
output_template => 'connected calls: %.2f/s',
|
|
perfdatas => [
|
|
{ label => 'connected', template => '%.2f',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
{ label => 'refused-per-sec', set => {
|
|
key_values => [ { name => 'refused', per_second => 1 }, { name => 'display' } ],
|
|
output_template => 'refused calls: %.2f/s',
|
|
perfdatas => [
|
|
{ label => 'refused', template => '%.2f',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
{ label => 'errored-per-sec', set => {
|
|
key_values => [ { name => 'errored', per_second => 1 }, { name => 'display' } ],
|
|
output_template => 'errored calls: %.2f/s',
|
|
perfdatas => [
|
|
{ label => 'errored', template => '%.2f',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
{ label => 'blocked-per-sec', set => {
|
|
key_values => [ { name => 'blocked', per_second => 1 }, { name => 'display' } ],
|
|
output_template => 'blocked calls: %.2f/s',
|
|
perfdatas => [
|
|
{ label => 'blocked', template => '%.2f',
|
|
min => 0, unit => 'calls', label_extra_instance => 1, instance_use => 'display' },
|
|
],
|
|
}
|
|
},
|
|
];
|
|
}
|
|
|
|
sub prefix_dsp_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);
|
|
bless $self, $class;
|
|
|
|
$options{options}->add_options(arguments => {
|
|
});
|
|
|
|
return $self;
|
|
}
|
|
|
|
my $mapping = {
|
|
uxPTCurrentCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.5' },
|
|
uxPTTotalCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.6' },
|
|
uxPTConnectedCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.7' },
|
|
uxPTRefusedCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.8' },
|
|
uxPTErroredCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.9' },
|
|
uxPTBlockedCalls => { oid => '.1.3.6.1.4.1.177.15.1.5.1.2.1.18' },
|
|
};
|
|
|
|
my $oid_uxPortTable = '.1.3.6.1.4.1.177.15.1.5.1.2.1';
|
|
|
|
sub manage_selection {
|
|
my ($self, %options) = @_;
|
|
|
|
$self->{snmp} = $options{snmp};
|
|
$self->{cache_name} = "sonus_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' .
|
|
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all'));
|
|
|
|
$self->{results} = $options{snmp}->get_table(oid => $oid_uxPortTable,
|
|
nothing_quit => 1);
|
|
|
|
foreach my $oid (keys %{$self->{results}}) {
|
|
next if $oid !~ /^$mapping->{uxPTCurrentCalls}->{oid}\.(.*)$/;
|
|
my $instance = $1;
|
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
|
|
$self->{port}->{$instance} = { current => $result->{uxPTCurrentCalls},
|
|
total => $result->{uxPTTotalCalls},
|
|
connected => $result->{uxPTConnectedCalls},
|
|
refused => $result->{uxPTRefusedCalls},
|
|
errored => $result->{uxPTErroredCalls},
|
|
blocked => $result->{uxPTBlockedCalls},
|
|
display => $instance };
|
|
}
|
|
}
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
=head1 MODE
|
|
|
|
Check Call statistics
|
|
|
|
=over 8
|
|
|
|
=item B<--warning-*>
|
|
|
|
Warning on counters. Can be ('current-calls', 'total-per-sec', 'connected-per-sec', 'refused-per-sec', 'errored-per-sec', 'blocked-per-sec')
|
|
|
|
=item B<--critical-*>
|
|
|
|
Critical on counters. Can be ('current-calls', 'total-per-sec', 'connected-per-sec', 'refused-per-sec', 'errored-per-sec', 'blocked-per-sec')
|
|
|
|
=back
|
|
|
|
=cut
|