centreon-plugins/apps/antivirus/mcafee/webgateway/snmp/mode/ftpstatistics.pm

149 lines
4.9 KiB
Perl

#
# Copyright 2020 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 apps::antivirus::mcafee::webgateway::snmp::mode::ftpstatistics;
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 => 'traffics', type => 0, cb_prefix_output => 'prefix_traffic_output' },
];
$self->{maps_counters}->{traffics} = [
{ label => 'client-to-proxy', set => {
key_values => [ { name => 'stFtpBytesFromClient', per_second => 1 } ],
output_template => 'from client to proxy: %s %s/s',
output_change_bytes => 2,
perfdatas => [
{ label => 'ftp_traffic_client_to_proxy', template => '%d', min => 0, unit => 'b/s' },
],
}
},
{ label => 'server-to-proxy', set => {
key_values => [ { name => 'stFtpBytesFromServer', per_second => 1 } ],
output_template => 'from server to proxy: %s %s/s',
output_change_bytes => 2,
perfdatas => [
{ label => 'ftp_traffic_server_to_proxy', template => '%d', min => 0, unit => 'b/s' },
],
}
},
{ label => 'proxy-to-client', set => {
key_values => [ { name => 'stFtpBytesToClient', per_second => 1 } ],
output_template => 'from proxy to client: %s %s/s',
output_change_bytes => 2,
perfdatas => [
{ label => 'ftp_traffic_proxy_to_client', template => '%d', min => 0, unit => 'b/s' },
],
}
},
{ label => 'proxy-to-server', set => {
key_values => [ { name => 'stFtpBytesToServer', per_second => 1 } ],
output_template => 'from proxy to server: %s %s/s',
output_change_bytes => 2,
perfdatas => [
{ label => 'ftp_traffic_proxy_to_server', template => '%d', min => 0, unit => 'b/s' },
],
}
},
];
}
sub prefix_traffic_output {
my ($self, %options) = @_;
return "FTP Traffic ";
}
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 $oid_stFtpBytesFromClient = '.1.3.6.1.4.1.1230.2.7.2.4.2.0';
my $oid_stFtpBytesFromServer = '.1.3.6.1.4.1.1230.2.7.2.4.3.0';
my $oid_stFtpBytesToClient = '.1.3.6.1.4.1.1230.2.7.2.4.4.0';
my $oid_stFtpBytesToServer = '.1.3.6.1.4.1.1230.2.7.2.4.5.0';
sub manage_selection {
my ($self, %options) = @_;
$self->{cache_name} = "mcafee_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' .
(defined($self->{option_results}->{filter_name}) ? md5_hex($self->{option_results}->{filter_name}) : md5_hex('all')) . '_' .
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all'));
my $results = $options{snmp}->get_leef(oids => [ $oid_stFtpBytesFromClient, $oid_stFtpBytesFromServer,
$oid_stFtpBytesToClient, $oid_stFtpBytesToServer ],
nothing_quit => 1);
$self->{traffics} = {};
$self->{traffics} = {
stFtpBytesFromClient => $results->{$oid_stFtpBytesFromClient} * 8,
stFtpBytesFromServer => $results->{$oid_stFtpBytesFromServer} * 8,
stFtpBytesToClient => $results->{$oid_stFtpBytesToClient} * 8,
stFtpBytesToServer => $results->{$oid_stFtpBytesToServer} * 8,
};
}
1;
__END__
=head1 MODE
Check FTP statistics.
=over 8
=item B<--filter-counters>
Only display some counters (regexp can be used).
(Example: --filter-counters='^proxy')
=item B<--warning-*>
Threshold warning.
Can be: 'client-to-proxy', 'server-to-proxy',
'proxy-to-client', 'proxy-to-server'.
=item B<--critical-*>
Threshold critical.
Can be: 'client-to-proxy', 'server-to-proxy',
'proxy-to-client', 'proxy-to-server'.
=back
=cut