centreon-plugins/storage/quantum/dxi/ssh/mode/memory.pm

180 lines
5.8 KiB
Perl
Raw Normal View History

2018-12-19 17:43:29 +01:00
#
2020-01-06 15:19:23 +01:00
# Copyright 2020 Centreon (http://www.centreon.com/)
2018-12-19 17:43:29 +01: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.
#
package storage::quantum::dxi::ssh::mode::memory;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
sub custom_usage_perfdata {
my ($self, %options) = @_;
2020-02-20 16:13:02 +01:00
$self->{output}->perfdata_add(
label => 'used',
unit => 'B',
value => $self->{result_values}->{used},
warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{label}, total => $self->{result_values}->{total}, cast_int => 1),
critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{label}, total => $self->{result_values}->{total}, cast_int => 1),
min => 0, max => $self->{result_values}->{total}
);
2018-12-19 17:43:29 +01:00
}
sub custom_usage_threshold {
my ($self, %options) = @_;
2020-02-20 16:13:02 +01:00
2018-12-19 17:43:29 +01:00
my ($exit, $threshold_value);
$threshold_value = $self->{result_values}->{used};
2019-03-26 16:28:40 +01:00
$threshold_value = $self->{result_values}->{free} if (defined($self->{instance_mode}->{option_results}->{free}));
if ($self->{instance_mode}->{option_results}->{units} eq '%') {
2018-12-19 17:43:29 +01:00
$threshold_value = $self->{result_values}->{prct_used};
2019-03-26 16:28:40 +01:00
$threshold_value = $self->{result_values}->{prct_free} if (defined($self->{instance_mode}->{option_results}->{free}));
2018-12-19 17:43:29 +01:00
}
2020-02-20 16:13:02 +01:00
$exit = $self->{perfdata}->threshold_check(
value => $threshold_value,
threshold => [
{ label => 'critical-' . $self->{label}, exit_litteral => 'critical' },
{ label => 'warning-' . $self->{label}, exit_litteral => 'warning' }
]
);
2018-12-19 17:43:29 +01:00
return $exit;
}
sub custom_usage_output {
my ($self, %options) = @_;
2020-02-20 16:13:02 +01:00
2018-12-19 17:43:29 +01:00
my ($used_value, $used_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{used});
my ($free_value, $free_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{free});
my ($total_value, $total_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{total});
2020-02-20 16:13:02 +01:00
return sprintf(
"Total: %s Used: %s (%.2f%%) Free: %s (%.2f%%)",
$total_value . " " . $total_unit,
$used_value . " " . $used_unit, $self->{result_values}->{prct_used},
$free_value . " " . $free_unit, $self->{result_values}->{prct_free}
);
2018-12-19 17:43:29 +01:00
}
sub custom_usage_calc {
my ($self, %options) = @_;
2019-03-26 16:28:40 +01:00
$self->{result_values}->{total} = $self->{instance_mode}->convert_to_bytes(raw_value => $options{new_datas}->{$self->{instance} . '_total'});
$self->{result_values}->{free} = $self->{instance_mode}->convert_to_bytes(raw_value => $options{new_datas}->{$self->{instance} . '_free'});
2018-12-19 17:43:29 +01:00
if ($self->{result_values}->{total} != 0) {
$self->{result_values}->{used} = $self->{result_values}->{total} - $self->{result_values}->{free};
$self->{result_values}->{prct_used} = $self->{result_values}->{used} * 100 / $self->{result_values}->{total};
$self->{result_values}->{prct_free} = 100 - $self->{result_values}->{prct_used};
} else {
$self->{result_values}->{free} = '0';
$self->{result_values}->{prct_used} = '0';
$self->{result_values}->{prct_free} = '0';
}
return 0;
}
sub convert_to_bytes {
my ($class, %options) = @_;
my ($value, $unit) = split(/\s+/, $options{raw_value});
if ($unit =~ /kb*/i) {
$value = $value * 1024;
} elsif ($unit =~ /mb*/i) {
$value = $value * 1024 * 1024;
} elsif ($unit =~ /gb*/i) {
$value = $value * 1024 * 1024 * 1024;
} elsif ($unit =~ /tb*/i) {
$value = $value * 1024 * 1024 * 1024 * 1024;
}
return $value;
}
sub set_counters {
my ($self, %options) = @_;
2020-02-20 16:13:02 +01:00
2018-12-19 17:43:29 +01:00
$self->{maps_counters_type} = [
{ name => 'global', type => 0 }
];
2020-02-20 16:13:02 +01:00
2018-12-19 17:43:29 +01:00
$self->{maps_counters}->{global} = [
{ label => 'usage', set => {
key_values => [ { name => 'total' }, { name => 'free' } ],
closure_custom_calc => $self->can('custom_usage_calc'),
closure_custom_output => $self->can('custom_usage_output'),
closure_custom_perfdata => $self->can('custom_usage_perfdata'),
closure_custom_threshold_check => $self->can('custom_usage_threshold'),
}
},
];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
2020-02-20 16:13:02 +01:00
$options{options}->add_options(arguments => {
'units:s' => { name => 'units', default => '%' },
'free' => { name => 'free' },
});
2018-12-19 17:43:29 +01:00
2020-02-20 16:13:02 +01:00
return $self;
2018-12-19 17:43:29 +01:00
}
sub manage_selection {
my ($self, %options) = @_;
2020-02-20 16:13:02 +01:00
my $stdout = $options{custom}->execute_command(command => 'syscli --getstatus systemmemory');
2018-12-19 17:43:29 +01:00
# Output data:
# Total Memory = 270.76 GB
# Free Memory = 91.19 GB
2020-02-20 16:13:02 +01:00
$self->{global} = {};
2018-12-19 17:43:29 +01:00
foreach (split(/\n/, $stdout)) {
2020-02-20 16:13:02 +01:00
$self->{global}->{total} = $1 if (/.*Total\sMemory\s=\s(.*)$/i);
$self->{global}->{free} = $1 if (/.*Free\sMemory\s=\s(.*)$/i);
2018-12-19 17:43:29 +01:00
}
}
1;
__END__
=head1 MODE
Check memory usage.
=over 8
=item B<--warning-usage>
Threshold warning.
=item B<--critical-usage>
Threshold critical.
=back
=cut