centreon-plugins/database/mssql/mode/blockedprocesses.pm

138 lines
4.7 KiB
Perl
Raw Normal View History

2014-06-23 15:50:46 +02:00
#
2018-01-29 14:11:11 +01:00
# Copyright 2018 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.
#
2014-06-23 15:50:46 +02:00
package database::mssql::mode::blockedprocesses;
use base qw(centreon::plugins::templates::counter);
2014-06-23 15:50:46 +02:00
use strict;
use warnings;
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'global', type => 0 },
{ name => 'processwaittime', type => 1, message_multiple => 'No processes have been waiting for longer than thresholds' },
];
$self->{maps_counters}->{global} = [
{ label => 'total', set => {
key_values => [ { name => 'total' } ],
output_template => 'There are %s blocked processes',
perfdatas => [
{ label => 'total_blocked_processes', value => 'total_absolute', template => '%s',
unit => '', min => 0 },
],
}
},
];
$self->{maps_counters}->{processwaittime} = [
{ label => 'processwaittime', set => {
key_values => [ { name => 'waittime' }, { name => 'display' } ],
closure_custom_output => $self->can('custom_processwaittime_output'),
}
},
];
}
sub custom_processwaittime_output {
my ($self, %options) = @_;
return $self->{result_values}->{display_absolute};
}
2014-06-23 15:50:46 +02:00
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
2014-06-23 15:50:46 +02:00
$self->{version} = '1.0';
$options{options}->add_options(arguments =>
{
"filter-program:s" => { name => 'filter_program' },
"filter-command:s" => { name => 'filter_command' },
2014-06-23 15:50:46 +02:00
});
return $self;
}
sub manage_selection {
2014-06-23 15:50:46 +02:00
my ($self, %options) = @_;
$options{sql}->connect();
$options{sql}->query(query => "SELECT spid, trim(program_name) as program_name, trim(cmd) as cmd, trim(status) as status, waittime FROM master.dbo.sysprocesses WHERE blocked <> '0'");
2014-06-23 15:50:46 +02:00
$self->{global} = { total => 0 };
$self->{processwaittime} = {};
while (my $row = $options{sql}->fetchrow_hashref()) {
# waittime is given in milliseconds, so we convert it to seconds
my $proc_waittime = $row->{waittime} / 1000;
my $proc_identity_verbose = "command '".$row->{cmd}."' (spid ".$row->{spid}.((defined $row->{program_name} && $row->{program_name} ne '')?(" from program '".$row->{program_name}."'"):'').", status '".$row->{status}."') waited ".$proc_waittime."s";
my $proc_identity = 'spid_'.$row->{spid};
if (defined($self->{option_results}->{filter_program}) && $self->{option_results}->{filter_program} ne '' &&
$row->{program_name} !~ /$self->{option_results}->{filter_program}/) {
$self->{output}->output_add(debug => 1, long_msg => "Skipping process having " . $proc_identity_verbose . ": because program is not matching filter.");
next;
}
if (defined($self->{option_results}->{filter_command}) && $self->{option_results}->{filter_command} ne '' &&
$row->{cmd} !~ /$self->{option_results}->{filter_command}/) {
$self->{output}->output_add(debug => 1, long_msg => "Skipping process having " . $proc_identity_verbose . ": because command is not matching filter.");
next
}
# We increment the total number of blocked processes
$self->{global}->{total} += 1;
$self->{processwaittime}->{$proc_identity} = { waittime => $proc_waittime, display => $proc_identity_verbose };
}
2014-06-23 15:50:46 +02:00
}
1;
__END__
=head1 MODE
Checks if some processes are in a blocked state on a MSSQL Server instance.
2014-06-23 15:50:46 +02:00
=over 8
=item B<--filter-program>
Filter results based on the program (client) name (can be a regexp).
=item B<--filter-command>
Filter results based on the command name (can be a regexp).
=item B<--warning-*>
2014-06-23 15:50:46 +02:00
Set warning threshold for number of user. Can be : 'total', 'processwaittime'
2014-06-23 15:50:46 +02:00
=item B<--critical-*>
2014-06-23 15:50:46 +02:00
Set critical threshold for number of user. Can be : 'total', 'processwaittime'
2014-06-23 15:50:46 +02:00
=back
=cut