centreon-plugins/database/redis/mode/commands.pm

114 lines
3.1 KiB
Perl
Raw Normal View History

2018-01-29 14:11:11 +01:00
#
2021-02-08 09:55:50 +01:00
# Copyright 2021 Centreon (http://www.centreon.com/)
2018-01-29 14:11:11 +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.
#
2021-11-03 09:58:28 +01:00
package database::redis::mode::commands;
2018-01-29 14:11:11 +01:00
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
use Digest::MD5 qw(md5_hex);
2021-11-03 09:58:28 +01:00
sub prefix_output {
my ($self, %options) = @_;
return 'Number of commands processed: ';
}
2018-01-29 14:11:11 +01:00
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
2021-11-03 09:58:28 +01:00
{ name => 'global', type => 0, message_separator => ' ', cb_prefix_output => 'prefix_output' }
2018-01-29 14:11:11 +01:00
];
$self->{maps_counters}->{global} = [
2021-11-03 09:58:28 +01:00
{ label => 'processed-commands', nlabel => 'commands.processed.count', set => {
2018-01-29 14:11:11 +01:00
key_values => [ { name => 'total_commands_processed', diff => 1 } ],
2021-11-03 09:58:28 +01:00
output_template => '%s',
2018-01-29 14:11:11 +01:00
perfdatas => [
2021-11-03 09:58:28 +01:00
{ template => '%s', min => 0 }
]
}
2018-01-29 14:11:11 +01:00
},
2021-11-03 09:58:28 +01:00
{ label => 'ops-per-sec', nlabel => 'commands.processed.persecond', set => {
2018-01-29 14:11:11 +01:00
key_values => [ { name => 'instantaneous_ops_per_sec' } ],
2021-11-03 09:58:28 +01:00
output_template => '%.2f/s',
2018-01-29 14:11:11 +01:00
perfdatas => [
2021-11-03 09:58:28 +01:00
{ template => '%.2f', min => 0 }
]
}
}
2018-01-29 14:11:11 +01:00
];
}
sub new {
my ($class, %options) = @_;
2021-11-03 09:58:28 +01:00
my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1);
2018-01-29 14:11:11 +01:00
bless $self, $class;
2021-11-03 09:58:28 +01:00
$options{options}->add_options(arguments => {});
2018-01-29 14:11:11 +01:00
return $self;
}
sub manage_selection {
my ($self, %options) = @_;
2021-11-03 09:58:28 +01:00
$self->{cache_name} = 'redis_database_' . $self->{mode} . '_' . $options{custom}->get_connection_info() . '_' .
2018-01-29 14:11:11 +01:00
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all'));
my $results = $options{custom}->get_info();
$self->{global} = {
total_commands_processed => $results->{total_commands_processed},
2021-11-03 09:58:28 +01:00
instantaneous_ops_per_sec => $results->{instantaneous_ops_per_sec}
2018-01-29 14:11:11 +01:00
};
}
1;
__END__
=head1 MODE
Check commands number
=over 8
=item B<--warning-processed-commands>
Warning threshold for number of commands processed by the server
=item B<--critical-processed-commands>
Critical threshold for number of commands processed by the server
=item B<--warning-ops-per-sec>
Warning threshold for number of commands processed per second
=item B<--critical-ops-per-sec>
Critical threshold for number of commands processed per second
=back
=cut