centreon-plugins/os/aix/local/mode/inodes.pm

135 lines
3.8 KiB
Perl
Raw Normal View History

#
2020-01-06 15:19:23 +01:00
# 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 os::aix::local::mode::inodes;
2018-07-13 16:15:46 +02:00
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
2018-07-13 16:15:46 +02:00
sub set_counters {
my ($self, %options) = @_;
2020-06-02 16:18:36 +02:00
2018-07-13 16:15:46 +02:00
$self->{maps_counters_type} = [
{ name => 'inodes', type => 1, cb_prefix_output => 'prefix_inodes_output', message_multiple => 'All inode partitions are ok' }
];
2020-06-02 16:18:36 +02:00
2018-07-13 16:15:46 +02:00
$self->{maps_counters}->{inodes} = [
2020-06-02 16:18:36 +02:00
{ label => 'usage', nlabel => 'storage.inodes.usage.percentage', set => {
key_values => [ { name => 'used' } ],
output_template => 'used: %s %%',
2018-07-13 16:15:46 +02:00
perfdatas => [
2020-06-02 16:18:36 +02:00
{ template => '%.2f', unit => '%', min => 0, max => 100, label_extra_instance => 1 }
]
2018-07-13 16:15:46 +02:00
}
2020-06-02 16:18:36 +02:00
}
2018-07-13 16:15:46 +02:00
];
}
sub prefix_inodes_output {
my ($self, %options) = @_;
2020-06-02 16:18:36 +02:00
2018-07-13 16:15:46 +02:00
return "Inodes partition '" . $options{instance_value}->{display} . "' ";
}
sub new {
my ($class, %options) = @_;
2020-06-02 16:18:36 +02:00
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
bless $self, $class;
2019-03-06 17:08:07 +01:00
$options{options}->add_options(arguments => {
2020-06-02 16:18:36 +02:00
'filter-fs:s' => { name => 'filter_fs' },
'filter-mount:s' => { name => 'filter_mount' }
2019-03-06 17:08:07 +01:00
});
return $self;
}
sub manage_selection {
my ($self, %options) = @_;
2020-06-02 16:18:36 +02:00
my ($stdout, $exit_code) = $options{custom}->execute_command(
command => 'df',
command_options => '-i -v 2>&1'
2018-07-13 16:15:46 +02:00
);
2020-06-02 16:18:36 +02:00
2018-07-13 16:15:46 +02:00
$self->{inodes} = {};
my @lines = split /\n/, $stdout;
# Header not needed
shift @lines;
foreach my $line (@lines) {
2019-04-03 16:50:22 +02:00
# Can be very different.
#Filesystem 512-blocks Used Free %Used Iused Ifree %Iused Mounted on
#/dev/hd4 1048576 118408 930168 12% 3699 104325 4% /
#
#Filesystem 512-blocks Free %Used Iused %Iused Mounted on
#/dev/hd0 19368 9976 48% 4714 5% /
2020-06-02 16:18:36 +02:00
2019-04-03 16:50:22 +02:00
next if ($line !~ /^(\S+)/);
my $fs = $1;
next if ($line !~ /(\d+)%\s+([^%]*?)$/);
my ($ipercent, $mount) = ($1, $2);
2020-06-02 16:18:36 +02:00
next if (defined($self->{option_results}->{filter_fs}) && $self->{option_results}->{filter_fs} ne '' &&
2020-06-02 16:18:36 +02:00
$fs !~ /$self->{option_results}->{filter_fs}/);
next if (defined($self->{option_results}->{filter_mount}) && $self->{option_results}->{filter_mount} ne '' &&
$mount !~ /$self->{option_results}->{filter_mount}/);
$self->{inodes}->{$mount} = { display => $mount, used => $ipercent };
}
2018-07-13 16:15:46 +02:00
if (scalar(keys %{$self->{inodes}}) <= 0) {
$self->{output}->add_option_msg(short_msg => "No storage found (filters or command issue)");
$self->{output}->option_exit();
}
}
1;
__END__
=head1 MODE
2018-07-13 16:15:46 +02:00
Check inodes usage on partitions.
2020-06-02 16:18:36 +02:00
Command used: df -i -v 2>&1
=over 8
2020-06-02 16:18:36 +02:00
=item B<--filter-fs>
2020-06-02 16:18:36 +02:00
Filter filesystem (regexp can be used).
2020-06-02 16:18:36 +02:00
=item B<--filter-mount>
2020-06-02 16:18:36 +02:00
Filter mountpoint (regexp can be used).
2018-07-13 16:15:46 +02:00
=item B<--warning-usage>
2018-07-13 16:15:46 +02:00
Threshold warning in percent.
2018-07-13 16:15:46 +02:00
=item B<--critical-usage>
2018-07-13 16:15:46 +02:00
Threshold critical in percent.
=back
=cut