From ca24679f88fffd72a8dca776e7d20d415821b732 Mon Sep 17 00:00:00 2001 From: qgarnier Date: Thu, 20 Apr 2023 10:33:37 +0200 Subject: [PATCH] (plugin) network::sonus::sbc::snmp - mode cpu metric v2 (#4373) --- src/network/sonus/sbc/snmp/mode/cpu.pm | 70 ++++++++++++++++++++++++++ src/network/sonus/sbc/snmp/plugin.pm | 2 +- 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 src/network/sonus/sbc/snmp/mode/cpu.pm diff --git a/src/network/sonus/sbc/snmp/mode/cpu.pm b/src/network/sonus/sbc/snmp/mode/cpu.pm new file mode 100644 index 000000000..293936166 --- /dev/null +++ b/src/network/sonus/sbc/snmp/mode/cpu.pm @@ -0,0 +1,70 @@ +# +# 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::sonus::sbc::snmp::mode::cpu; + +use base qw(snmp_standard::mode::cpudetailed); + +use strict; +use warnings; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + return $self; +} + +1; + +__END__ + +=head1 MODE + +Check system CPUs. +(The average, over the last minute, of the percentage +of time that this processor was not idle) + +=over 8 + +=item B<--use-ucd> + +Use UCD mib for cpu average. + +=item B<--warning-average> + +Warning threshold average CPU utilization. + +=item B<--critical-average> + +Critical threshold average CPU utilization. + +=item B<--warning-core> + +Warning thresholds for each CPU core + +=item B<--critical-core> + +Critical thresholds for each CPU core + +=back + +=cut diff --git a/src/network/sonus/sbc/snmp/plugin.pm b/src/network/sonus/sbc/snmp/plugin.pm index 1b70e0741..0d28cb28e 100644 --- a/src/network/sonus/sbc/snmp/plugin.pm +++ b/src/network/sonus/sbc/snmp/plugin.pm @@ -32,7 +32,7 @@ sub new { $self->{modes} = { 'call-statistics' => 'network::sonus::sbc::snmp::mode::callstats', 'channels' => 'network::sonus::sbc::snmp::mode::channels', - 'cpu' => 'snmp_standard::mode::cpu', + 'cpu' => 'network::sonus::sbc::snmp::mode::cpu', 'cpu-detailed' => 'network::sonus::sbc::snmp::mode::cpudetailed', 'dsp-stats' => 'network::sonus::sbc::snmp::mode::dspstats', 'interfaces' => 'network::sonus::sbc::snmp::mode::interfaces',