centreon-plugins/database/firebird/mode/queries.pm

259 lines
9.2 KiB
Perl
Raw Normal View History

2015-08-06 16:11:56 +02:00
#
# Copyright 2015 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 database::firebird::mode::queries;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
2015-08-07 11:33:56 +02:00
use centreon::plugins::values;
2015-08-06 16:11:56 +02:00
use centreon::plugins::statefile;
2015-08-07 11:33:56 +02:00
my $maps_counters = {
global => {
'000_total' => { set => {
key_values => [ { name => 'total', diff => 1 } ],
per_second => 1,
output_template => 'Total : %d',
perfdatas => [
{ label => 'total', template => '%d', value => 'total_per_second',
unit => '/s', min => 0 },
],
}
},
'001_seq-reads' => { set => {
key_values => [ { name => 'seq_reads', diff => 1 } ],
per_second => 1,
output_template => 'Seq Reads : %d',
perfdatas => [
{ label => 'seq_reads', template => '%d', value => 'seq_reads_per_second',
unit => '/s', min => 0 },
],
}
},
'002_inserts' => { set => {
key_values => [ { name => 'inserts', diff => 1 } ],
per_second => 1,
output_template => 'Inserts : %d',
perfdatas => [
{ label => 'inserts', template => '%d', value => 'inserts_per_second',
unit => '/s', min => 0 },
],
}
},
'003_updates' => { set => {
key_values => [ { name => 'updates', diff => 1 } ],
per_second => 1,
output_template => 'Updates : %d',
perfdatas => [
{ label => 'updates', template => '%d', value => 'updates_per_second',
unit => '/s', min => 0 },
],
}
},
'004_deletes' => { set => {
key_values => [ { name => 'deletes', diff => 1 } ],
per_second => 1,
output_template => 'Deletes : %d',
perfdatas => [
{ label => 'deletes', template => '%d', value => 'deletes_per_second',
unit => '/s', min => 0 },
],
}
},
'005_backouts' => { set => {
key_values => [ { name => 'backouts', diff => 1 } ],
per_second => 1,
output_template => 'Backouts : %d',
perfdatas => [
{ label => 'backouts', template => '%d', value => 'backouts_per_second',
unit => '/s', min => 0 },
],
}
},
'006_purges' => { set => {
key_values => [ { name => 'purges', diff => 1 } ],
per_second => 1,
output_template => 'Purges : %d',
perfdatas => [
{ label => 'purges', template => '%d', value => 'purges_per_second',
unit => '/s', min => 0 },
],
}
},
'007_expunges' => { set => {
key_values => [ { name => 'expunges', diff => 1 } ],
per_second => 1,
output_template => 'Expunges : %d',
perfdatas => [
{ label => 'expunges', template => '%d', value => 'expunges_per_second',
unit => '/s', min => 0 },
],
}
},
},
};
2015-08-06 16:11:56 +02:00
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$self->{version} = '1.0';
$options{options}->add_options(arguments =>
2015-08-07 11:33:56 +02:00
{
2015-08-06 16:11:56 +02:00
});
2015-08-07 11:33:56 +02:00
$self->{statefile_value} = centreon::plugins::statefile->new(%options);
foreach my $key (('global')) {
foreach (keys %{$maps_counters->{$key}}) {
my ($id, $name) = split /_/;
if (!defined($maps_counters->{$key}->{$_}->{threshold}) || $maps_counters->{$key}->{$_}->{threshold} != 0) {
$options{options}->add_options(arguments => {
'warning-' . $name . ':s' => { name => 'warning-' . $name },
'critical-' . $name . ':s' => { name => 'critical-' . $name },
});
}
$maps_counters->{$key}->{$_}->{obj} = centreon::plugins::values->new(statefile => $self->{statefile_value},
output => $self->{output}, perfdata => $self->{perfdata},
label => $name);
$maps_counters->{$key}->{$_}->{obj}->set(%{$maps_counters->{$key}->{$_}->{set}});
}
}
2015-08-06 16:11:56 +02:00
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::init(%options);
2015-08-07 11:33:56 +02:00
foreach my $key (('global')) {
foreach (keys %{$maps_counters->{$key}}) {
$maps_counters->{$key}->{$_}->{obj}->init(option_results => $self->{option_results});
}
2015-08-06 16:11:56 +02:00
}
2015-08-07 11:33:56 +02:00
$self->{statefile_value}->check_options(%options);
2015-08-06 16:11:56 +02:00
}
sub run {
my ($self, %options) = @_;
$self->{sql} = $options{sql};
2015-08-07 11:33:56 +02:00
$self->manage_selection();
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
$self->{new_datas} = {};
$self->{statefile_value}->read(statefile => 'firebird_' . $self->{mode} . '_' . $self->{sql}->get_unique_id4save());
$self->{new_datas}->{last_timestamp} = time();
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
my ($short_msg, $short_msg_append, $long_msg, $long_msg_append) = ('', '', '', '');
my @exits;
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
foreach (sort keys %{$maps_counters->{global}}) {
my $obj = $maps_counters->{global}->{$_}->{obj};
$obj->set(instance => 'firebird');
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
my ($value_check) = $obj->execute(values => $self->{firebird},
new_datas => $self->{new_datas});
if ($value_check != 0) {
$long_msg .= $long_msg_append . $obj->output_error();
$long_msg_append = ', ';
next;
}
my $exit2 = $obj->threshold_check();
push @exits, $exit2;
my $output = $obj->output();
$long_msg .= $long_msg_append . $output;
$long_msg_append = ', ';
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
if (!$self->{output}->is_status(litteral => 1, value => $exit2, compare => 'ok')) {
$short_msg .= $short_msg_append . $output;
$short_msg_append = ', ';
}
$obj->perfdata();
2015-08-07 10:48:56 +02:00
}
2015-08-07 11:33:56 +02:00
my $exit = $self->{output}->get_most_critical(status => [ @exits ]);
if (!$self->{output}->is_status(litteral => 1, value => $exit, compare => 'ok')) {
$self->{output}->output_add(severity => $exit,
short_msg => "Records $short_msg"
);
} else {
$self->{output}->output_add(short_msg => "Records $long_msg");
2015-08-06 16:11:56 +02:00
}
2015-08-07 11:33:56 +02:00
$self->{statefile_value}->write(data => $self->{new_datas});
2015-08-06 16:11:56 +02:00
$self->{output}->display();
$self->{output}->exit();
}
2015-08-07 11:33:56 +02:00
sub manage_selection {
my ($self, %options) = @_;
$self->{sql}->connect();
$self->{sql}->query(query => q{SELECT MON$RECORD_SEQ_READS as MYREADS,MON$RECORD_INSERTS as MYINSERTS,
MON$RECORD_UPDATES as MYUPDATES, MON$RECORD_DELETES as MYDELETES, MON$RECORD_BACKOUTS as MYBACKOUTS,
MON$RECORD_PURGES as MYPURGES, MON$RECORD_EXPUNGES as MYEXPUNGES
FROM MON$RECORD_STATS mr WHERE mr.MON$STAT_GROUP = '0'});
my $row = $self->{sql}->fetchrow_hashref();
if (!defined($row)) {
$self->{output}->add_option_msg(short_msg => "Cannot get query informations");
$self->{output}->option_exit();
}
$self->{firebird} = { seq_reads => $row->{MYREADS}, inserts => $row->{MYINSERTS},
updates => $row->{MYUPDATES}, deletes => $row->{MYDELETES},
backouts => $row->{MYBACKOUTS}, purges => $row->{MYPURGES}, expunges => $row->{MYEXPUNGES} };
$self->{firebird}->{total} = $row->{MYREADS} + $row->{MYINSERTS} + $row->{MYUPDATES} +
$row->{MYDELETES} + $row->{MYBACKOUTS} + $row->{MYPURGES} + $row->{MYEXPUNGES};
}
2015-08-06 16:11:56 +02:00
1;
__END__
=head1 MODE
2015-08-07 11:33:56 +02:00
Check queries statistics on current database.
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
=over 8)
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
=item B<--warning-*>
2015-08-06 16:11:56 +02:00
Threshold warning.
2015-08-07 11:33:56 +02:00
Can be: 'total', 'seq-reads', 'inserts', 'updates',
'deletes', 'backouts', 'purges', 'expunges'.
2015-08-06 16:11:56 +02:00
2015-08-07 11:33:56 +02:00
=item B<--critical-*>
2015-08-06 16:11:56 +02:00
Threshold critical.
2015-08-07 11:33:56 +02:00
Can be: 'total', 'seq-reads', 'inserts', 'updates',
'deletes', 'backouts', 'purges', 'expunges'.
2015-08-06 16:11:56 +02:00
=back
=cut