centreon-plugins/network/bluecoat/snmp/mode/cpu.pm

135 lines
4.4 KiB
Perl
Raw Normal View History

2013-12-13 16:14:12 +01:00
#
2020-01-06 15:19:23 +01:00
# Copyright 2020 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.
#
2013-12-13 16:14:12 +01:00
2015-08-12 15:11:24 +02:00
package network::bluecoat::snmp::mode::cpu;
2013-12-13 16:14:12 +01:00
2019-01-11 13:52:04 +01:00
use base qw(centreon::plugins::templates::counter);
2013-12-13 16:14:12 +01:00
use strict;
use warnings;
2019-01-11 13:52:04 +01:00
use Digest::MD5 qw(md5_hex);
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'cpu', type => 1, cb_prefix_output => 'prefix_cpu_output', message_multiple => 'All cpu usages are ok' },
];
$self->{maps_counters}->{cpu} = [
{ label => 'usage', set => {
key_values => [ { name => 'idle', diff => 1 }, { name => 'busy', diff => 1 }, { name => 'display' } ],
closure_custom_calc => $self->can('custom_data_calc'),
output_template => '%.2f %%', output_use => 'used_prct', threshold_use => 'used_prct',
perfdatas => [
{ label => 'cpu', value => 'used_prct', template => '%.2f', min => 0, max => 100, unit => '%',
2019-01-11 15:09:00 +01:00
label_extra_instance => 1, instance_use => 'display' },
2019-01-11 13:52:04 +01:00
],
}
},
];
}
sub custom_data_calc {
my ($self, %options) = @_;
2019-01-11 15:09:00 +01:00
$self->{result_values}->{display} = $options{new_datas}->{$self->{instance} . '_display'};
2019-01-11 13:52:04 +01:00
my $delta_busy = $options{new_datas}->{$self->{instance} . '_busy'} - $options{old_datas}->{$self->{instance} . '_busy'};
my $delta_idle = $options{new_datas}->{$self->{instance} . '_idle'} - $options{old_datas}->{$self->{instance} . '_idle'};
my $total = $delta_busy + $delta_idle;
$self->{result_values}->{used_prct} = 0;
if ($total > 0) {
$self->{result_values}->{used_prct} = ($delta_busy) * 100 / $total;
}
return 0;
}
sub prefix_cpu_output {
my ($self, %options) = @_;
return "CPU '" . $options{instance_value}->{display} . "' Usage : ";
}
2013-12-13 16:14:12 +01:00
sub new {
my ($class, %options) = @_;
2019-01-11 13:52:04 +01:00
my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1);
2013-12-13 16:14:12 +01:00
bless $self, $class;
$options{options}->add_options(arguments =>
{
});
return $self;
}
2019-01-11 13:52:04 +01:00
my $mapping = {
sgProxyCpuCoreBusyTime => { oid => '.1.3.6.1.4.1.3417.2.11.2.4.1.3' },
sgProxyCpuCoreIdleTime => { oid => '.1.3.6.1.4.1.3417.2.11.2.4.1.4' },
};
my $oid_table = '.1.3.6.1.4.1.3417.2.11.2.4.1';
2013-12-13 16:14:12 +01:00
2019-01-11 13:52:04 +01:00
sub manage_selection {
2013-12-13 16:14:12 +01:00
my ($self, %options) = @_;
2019-01-11 13:52:04 +01:00
if ($options{snmp}->is_snmpv1()) {
2013-12-13 16:14:12 +01:00
$self->{output}->add_option_msg(short_msg => "Need to use SNMP v2c or v3.");
$self->{output}->option_exit();
}
2019-01-11 13:52:04 +01:00
$self->{cache_name} = 'bluecoat_' . $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'));
2013-12-13 16:14:12 +01:00
2019-01-11 13:52:04 +01:00
$self->{cpu} = {};
2019-01-11 15:09:50 +01:00
my $snmp_result = $options{snmp}->get_table(oid => $oid_table, start => $mapping->{sgProxyCpuCoreBusyTime}, end => $mapping->{sgProxyCpuCoreIdleTime}, nothing_quit => 1);
2015-08-12 14:57:31 +02:00
my $i = 0;
2019-01-11 13:52:04 +01:00
foreach my $oid ($options{snmp}->oid_lex_sort(keys %{$snmp_result})) {
next if ($oid !~ /^$mapping->{sgProxyCpuCoreBusyTime}->{oid}\.(.*)$/);
2015-08-12 14:57:31 +02:00
my $instance = $1;
2019-01-11 13:52:04 +01:00
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance);
$self->{cpu}->{$i} = {
display => $i,
2019-04-09 16:49:03 +02:00
idle => $result->{sgProxyCpuCoreIdleTime}, busy => $result->{sgProxyCpuCoreBusyTime}
2019-01-11 13:52:04 +01:00
};
2015-08-12 14:57:31 +02:00
$i++;
2013-12-13 16:14:12 +01:00
}
}
1;
__END__
=head1 MODE
Check CPU Usage
=over 8
2019-01-11 13:52:04 +01:00
=item B<--warning-usage>
2013-12-13 16:14:12 +01:00
Threshold warning in percent.
2019-01-11 13:52:04 +01:00
=item B<--critical-usage>
2013-12-13 16:14:12 +01:00
Threshold critical in percent.
=back
=cut