2013-12-13 16:14:12 +01:00
|
|
|
#
|
2019-01-09 09:57:11 +01:00
|
|
|
# Copyright 2019 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
|
|
|
|
2013-12-15 21:53:02 +01:00
|
|
|
package snmp_standard::mode::memory;
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
use base qw(centreon::plugins::templates::counter);
|
2013-12-13 16:14:12 +01:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
sub custom_usage_output {
|
2013-12-13 16:14:12 +01:00
|
|
|
my ($self, %options) = @_;
|
2019-03-19 15:52:23 +01:00
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
my $msg = sprintf("Ram Total: %s %s Used (-buffers/cache): %s %s (%.2f%%) Free: %s %s (%.2f%%)",
|
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{total_absolute}),
|
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{used_absolute}),
|
|
|
|
$self->{result_values}->{prct_used_absolute},
|
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{free_absolute}),
|
|
|
|
$self->{result_values}->{prct_free_absolute});
|
|
|
|
return $msg;
|
2019-03-19 15:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub custom_swap_output {
|
|
|
|
my ($self, %options) = @_;
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
my $msg = sprintf("Swap Total: %s %s Used: %s %s (%.2f%%) Free: %s %s (%.2f%%)",
|
2019-06-13 14:09:07 +02:00
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{total_absolute}),
|
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{used_absolute}),
|
|
|
|
$self->{result_values}->{prct_used_absolute},
|
|
|
|
$self->{perfdata}->change_bytes(value => $self->{result_values}->{free_absolute}),
|
|
|
|
$self->{result_values}->{prct_free_absolute});
|
2019-03-19 15:52:23 +01:00
|
|
|
return $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub set_counters {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
$self->{maps_counters_type} = [
|
|
|
|
{ name => 'ram', type => 0 },
|
|
|
|
{ name => 'swap', type => 0, message_separator => ' - ', skipped_code => { -10 => 1 } },
|
|
|
|
];
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
$self->{maps_counters}->{ram} = [
|
2019-06-13 14:09:07 +02:00
|
|
|
{ label => 'usage', nlabel => 'memory.usage.bytes', set => {
|
|
|
|
key_values => [ { name => 'used' }, { name => 'free' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' } ],
|
2019-03-19 15:52:23 +01:00
|
|
|
closure_custom_output => $self->can('custom_usage_output'),
|
2019-06-13 14:09:07 +02:00
|
|
|
perfdatas => [
|
|
|
|
{ label => 'used', value => 'used_absolute', template => '%d', min => 0, max => 'total_absolute',
|
|
|
|
unit => 'B', cast_int => 1 },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label => 'usage-free', display_ok => 0, nlabel => 'memory.free.bytes', set => {
|
|
|
|
key_values => [ { name => 'free' }, { name => 'used' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' } ],
|
|
|
|
closure_custom_output => $self->can('custom_usage_output'),
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'free', value => 'free_absolute', template => '%d', min => 0, max => 'total_absolute',
|
|
|
|
unit => 'B', cast_int => 1 },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label => 'usage-prct', display_ok => 0, nlabel => 'memory.usage.percentage', set => {
|
|
|
|
key_values => [ { name => 'prct_used' } ],
|
|
|
|
output_template => 'Used : %.2f %%',
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'used_prct', value => 'prct_used_absolute', template => '%d', min => 0, max => 0,
|
|
|
|
unit => '%' },
|
|
|
|
],
|
2019-03-19 15:52:23 +01:00
|
|
|
}
|
|
|
|
},
|
2019-06-13 14:09:07 +02:00
|
|
|
{ label => 'buffer', nlabel => 'memory.buffer.bytes', set => {
|
2019-03-19 15:52:23 +01:00
|
|
|
key_values => [ { name => 'memBuffer' } ],
|
|
|
|
output_template => 'Buffer: %s %s',
|
|
|
|
output_change_bytes => 1,
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'buffer', value => 'memBuffer_absolute', template => '%d',
|
|
|
|
min => 0, unit => 'B' },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
2019-06-13 14:09:07 +02:00
|
|
|
{ label => 'cached', nlabel => 'memory.cached.bytes', set => {
|
2019-03-19 15:52:23 +01:00
|
|
|
key_values => [ { name => 'memCached' } ],
|
|
|
|
output_template => 'Cached: %s %s',
|
|
|
|
output_change_bytes => 1,
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'cached', value => 'memCached_absolute', template => '%d',
|
|
|
|
min => 0, unit => 'B' },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
2019-06-13 14:09:07 +02:00
|
|
|
{ label => 'shared', nlabel => 'memory.shared.bytes', set => {
|
2019-03-19 15:52:23 +01:00
|
|
|
key_values => [ { name => 'memShared' } ],
|
|
|
|
output_template => 'Shared: %s %s',
|
|
|
|
output_change_bytes => 1,
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'shared', value => 'memShared_absolute', template => '%d',
|
|
|
|
min => 0, unit => 'B' },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
];
|
|
|
|
$self->{maps_counters}->{swap} = [
|
2019-06-13 14:09:07 +02:00
|
|
|
{ label => 'swap', nlabel => 'swap.usage.bytes', set => {
|
|
|
|
key_values => [ { name => 'used' }, { name => 'free' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' } ],
|
|
|
|
closure_custom_output => $self->can('custom_swap_output'),
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'swap', value => 'used_absolute', template => '%d', min => 0, max => 'total_absolute',
|
|
|
|
unit => 'B', cast_int => 1 },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label => 'swap-free', display_ok => 0, nlabel => 'swap.free.bytes', set => {
|
|
|
|
key_values => [ { name => 'free' }, { name => 'used' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' } ],
|
2019-03-19 15:52:23 +01:00
|
|
|
closure_custom_output => $self->can('custom_swap_output'),
|
2019-06-13 14:09:07 +02:00
|
|
|
perfdatas => [
|
|
|
|
{ label => 'swap_free', value => 'free_absolute', template => '%d', min => 0, max => 'total_absolute',
|
|
|
|
unit => 'B', cast_int => 1 },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label => 'swap-prct', display_ok => 0, nlabel => 'swap.usage.percentage', set => {
|
|
|
|
key_values => [ { name => 'prct_used' } ],
|
|
|
|
output_template => 'Used : %.2f %%',
|
|
|
|
perfdatas => [
|
|
|
|
{ label => 'swap_prct', value => 'prct_used_absolute', template => '%d', min => 0, max => 0,
|
|
|
|
unit => '%' },
|
|
|
|
],
|
2019-03-19 15:52:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
sub new {
|
|
|
|
my ($class, %options) = @_;
|
|
|
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
|
|
|
bless $self, $class;
|
2014-06-23 15:05:42 +02:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
$self->{version} = '1.0';
|
|
|
|
$options{options}->add_options(arguments => {
|
2019-06-13 14:09:07 +02:00
|
|
|
'units:s' => { name => 'units', default => '%' },
|
|
|
|
'free' => { name => 'free' },
|
|
|
|
'swap' => { name => 'check_swap' },
|
2019-03-19 15:52:23 +01:00
|
|
|
});
|
2014-04-14 15:35:11 +02:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
return $self;
|
|
|
|
}
|
2014-04-14 15:35:11 +02:00
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
sub compat_threshold_counter {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
foreach ('warning', 'critical') {
|
|
|
|
next if (!defined($options{option_results}->{$_ . '-' . $options{compat}->{th}}) || $options{option_results}->{$_ . '-' . $options{compat}->{th}} eq '');
|
|
|
|
if (defined($options{compat}->{free})) {
|
|
|
|
$options{option_results}->{$_ . '-' . $options{compat}->{th} . '-free'} = $options{option_results}->{$_ . '-' . $options{compat}->{th}};
|
|
|
|
$options{option_results}->{$_ . '-' . $options{compat}->{th}} = undef;
|
|
|
|
} elsif (defined($options{compat}->{units}) && $options{compat}->{units} eq '%') {
|
|
|
|
$options{option_results}->{$_ . '-' . $options{compat}->{th} . '-prct'} = $options{option_results}->{$_ . '-' . $options{compat}->{th}};
|
|
|
|
$options{option_results}->{$_ . '-' . $options{compat}->{th}} = undef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub check_options {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
# Compatibility
|
|
|
|
$self->compat_threshold_counter(%options, compat => { th => 'usage', units => $options{option_results}->{units}, free => $options{option_results}->{free}});
|
|
|
|
$self->compat_threshold_counter(%options, compat => { th => 'swap', units => $options{option_results}->{units}, free => $options{option_results}->{free}});
|
|
|
|
$self->SUPER::check_options(%options);
|
|
|
|
}
|
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
my $mapping = {
|
|
|
|
memTotalSwap => { oid => '.1.3.6.1.4.1.2021.4.3' },
|
|
|
|
memAvailSwap => { oid => '.1.3.6.1.4.1.2021.4.4' },
|
|
|
|
memTotalReal => { oid => '.1.3.6.1.4.1.2021.4.5' },
|
|
|
|
memAvailReal => { oid => '.1.3.6.1.4.1.2021.4.6' },
|
2019-03-19 16:29:54 +01:00
|
|
|
memTotalFree => { oid => '.1.3.6.1.4.1.2021.4.11' },
|
2019-03-19 15:52:23 +01:00
|
|
|
memShared => { oid => '.1.3.6.1.4.1.2021.4.13' },
|
|
|
|
memBuffer => { oid => '.1.3.6.1.4.1.2021.4.14' },
|
|
|
|
memCached => { oid => '.1.3.6.1.4.1.2021.4.15' },
|
|
|
|
};
|
|
|
|
|
|
|
|
my $oid_memory = '.1.3.6.1.4.1.2021.4';
|
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
sub memory_calc {
|
2019-03-19 15:52:23 +01:00
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
my $available = ($options{result}->{memAvailReal}) ? $options{result}->{memAvailReal} * 1024 : 0;
|
|
|
|
my $total = ($options{result}->{memTotalReal}) ? $options{result}->{memTotalReal} * 1024 : 0;
|
|
|
|
my $buffer = ($options{result}->{memBuffer}) ? $options{result}->{memBuffer} * 1024 : 0;
|
|
|
|
my $cached = ($options{result}->{memCached}) ? $options{result}->{memCached} * 1024 : 0;
|
|
|
|
my ($used, $free, $prct_used, $prct_free) = (0, 0, 0, 0);
|
|
|
|
|
|
|
|
if ($total != 0) {
|
|
|
|
$used = $total - $available - $buffer - $cached;
|
|
|
|
$free = $total - $used;
|
|
|
|
$prct_used = $used * 100 / $total;
|
|
|
|
$prct_free = 100 - $prct_used;
|
|
|
|
}
|
2014-04-14 15:35:11 +02:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
$self->{ram} = {
|
2019-06-13 14:09:07 +02:00
|
|
|
total => $total,
|
|
|
|
used => $used,
|
|
|
|
free => $free,
|
|
|
|
prct_used => $prct_used,
|
|
|
|
prct_free => $prct_free,
|
|
|
|
memShared => ($options{result}->{memShared}) ? $options{result}->{memShared} * 1024 : 0,
|
|
|
|
memBuffer => $buffer,
|
|
|
|
memCached => $cached,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub swap_calc {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
my $free = ($options{result}->{memAvailSwap}) ? $options{result}->{memAvailSwap} * 1024 : 0;
|
|
|
|
my $total = ($options{result}->{memTotalSwap}) ? $options{result}->{memTotalSwap} * 1024 : 0;
|
|
|
|
my ($used, $prct_used, $prct_free) = (0, 0, 0, 0);
|
|
|
|
|
|
|
|
if ($total != 0) {
|
|
|
|
$used = $total - $free;
|
|
|
|
$prct_used = $used * 100 / $total;
|
|
|
|
$prct_free = 100 - $prct_used;
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{swap} = {
|
|
|
|
total => $total,
|
|
|
|
used => $used,
|
|
|
|
free => $free,
|
|
|
|
prct_used => $prct_used,
|
|
|
|
prct_free => $prct_free,
|
2019-03-19 15:52:23 +01:00
|
|
|
};
|
2019-06-13 14:09:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub manage_selection {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
my $results = $options{snmp}->get_table(oid => $oid_memory, end => $mapping->{memCached}->{oid});
|
|
|
|
my $result = $options{snmp}->map_instance(mapping => $mapping, results => $results, instance => 0);
|
|
|
|
|
|
|
|
$self->memory_calc(result => $result);
|
2019-03-19 15:52:23 +01:00
|
|
|
if (defined($self->{option_results}->{check_swap})) {
|
2019-06-13 14:09:07 +02:00
|
|
|
$self->swap_calc(result => $result);
|
2014-04-14 15:35:11 +02:00
|
|
|
}
|
2013-12-13 16:14:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
__END__
|
|
|
|
|
|
|
|
=head1 MODE
|
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
Check memory usage (UCD-SNMP-MIB).
|
2013-12-13 16:14:12 +01:00
|
|
|
|
|
|
|
=over 8
|
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
=item B<--units>
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
Units of thresholds (Default: '%') ('%', 'absolute') (Deprecated. Please use new counters directly)
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-03-19 15:52:23 +01:00
|
|
|
=item B<--free>
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
Thresholds are on free space left (Deprecated. Please use new counters directly)
|
2013-12-13 16:14:12 +01:00
|
|
|
|
2014-09-30 16:42:03 +02:00
|
|
|
=item B<--swap>
|
2014-04-14 15:35:11 +02:00
|
|
|
|
|
|
|
Check swap also.
|
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
=item B<--warning-*> B<--critical-*>
|
2014-06-23 15:05:42 +02:00
|
|
|
|
2019-06-13 14:09:07 +02:00
|
|
|
Thresholds.
|
|
|
|
Can be: 'usage' (B), 'usage-free' (B), 'usage-prct' (%),
|
|
|
|
'swap' (B), 'swap-free' (B), 'swap-prct' (%),
|
|
|
|
'buffer' (B), 'cached' (B), 'shared' (B).
|
2014-06-23 15:05:42 +02:00
|
|
|
|
2013-12-13 16:14:12 +01:00
|
|
|
=back
|
|
|
|
|
|
|
|
=cut
|