centreon-plugins/apps/nginx/serverstatus/mode/connections.pm

102 lines
2.9 KiB
Perl
Raw Normal View History

2014-05-12 17:25:30 +02:00
#
2021-02-08 09:55:50 +01:00
# Copyright 2021 Centreon (http://www.centreon.com/)
2015-07-21 11:51:02 +02:00
#
# 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.
#
2014-05-12 17:25:30 +02:00
package apps::nginx::serverstatus::mode::connections;
2021-03-16 15:50:34 +01:00
use base qw(centreon::plugins::templates::counter);
2014-05-12 17:25:30 +02:00
use strict;
use warnings;
2021-03-16 15:50:34 +01:00
sub prefix_global_output {
my ($self, %options) = @_;
return 'Connections ';
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'global', cb_prefix_output => 'prefix_global_output', type => 0 }
];
$self->{maps_counters}->{global} = [];
foreach (('active', 'reading', 'writing', 'waiting')) {
push @{$self->{maps_counters}->{global}},
{ label => 'connections-' . $_, nlabel => 'server.connections.' . $_ . '.count', set => {
key_values => [ { name => $_ }, { name => 'total' } ],
output_template => $_ . ': %d',
perfdatas => [
{ template => '%d', min => 0, max => 'total' }
]
}
};
}
}
2014-05-12 17:25:30 +02:00
sub new {
my ($class, %options) = @_;
2021-03-16 15:50:34 +01:00
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
2014-05-12 17:25:30 +02:00
bless $self, $class;
2019-03-06 16:47:46 +01:00
$options{options}->add_options(arguments => {
});
2021-03-16 15:50:34 +01:00
2014-05-12 17:25:30 +02:00
return $self;
}
2021-03-16 15:50:34 +01:00
sub manage_selection {
2014-05-12 17:25:30 +02:00
my ($self, %options) = @_;
2021-03-16 15:50:34 +01:00
my $content = $options{custom}->get_status();
$self->{global} = {};
$self->{global}->{active} = $1 if ($content =~ /Active connections:\s*(\d+)/msi);
$self->{global}->{reading} = $1 if ($content =~ /Reading:\s*(\d+)/msi);
$self->{global}->{writing} = $1 if ($content =~ /Writing:\s*(\d+)/msi);
$self->{global}->{waiting} = $1 if ($content =~ /Waiting:\s*(\d+)/msi);
if (!defined($self->{global}->{active})) {
$self->{output}->add_option_msg(short_msg => 'Cannot find connection informations.');
$self->{output}->option_exit();
2014-05-12 17:25:30 +02:00
}
2021-03-16 15:50:34 +01:00
my $total = 0;
$total += $self->{global}->{$_} foreach (keys %{$self->{global}});
$self->{global}->{total} = $total;
2014-05-12 17:25:30 +02:00
}
1;
__END__
=head1 MODE
2021-03-16 15:50:34 +01:00
Check current connections.
2014-05-12 17:25:30 +02:00
=over 8
2021-03-16 15:50:34 +01:00
=item B<--warning-*> B<--critical-*>
2014-05-12 17:25:30 +02:00
2021-03-16 15:50:34 +01:00
Thresholds.
Can be: 'connections-active', 'connections-waiting', 'connections-writing', 'connections-reading'.
2014-05-12 17:25:30 +02:00
=back
2019-03-06 16:47:46 +01:00
=cut