centreon-plugins/apps/iis/local/mode/applicationpoolstate.pm

226 lines
7.7 KiB
Perl
Raw Normal View History

2014-02-17 16:37:20 +01:00
#
2019-01-09 09:57:11 +01:00
# Copyright 2019 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-02-17 16:37:20 +01:00
package apps::iis::local::mode::applicationpoolstate;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
use Win32::OLE;
my %state_map = (
0 => 'starting',
1 => 'started',
2 => 'stopping',
3 => 'stopped',
4 => 'unknown',
);
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 =>
{
"warning" => { name => 'warning', },
"critical" => { name => 'critical', },
"pools:s" => { name => 'pools', },
"auto" => { name => 'auto', },
"exclude:s" => { name => 'exclude', },
});
$self->{pools_rules} = {};
$self->{wql_filter} = '';
$self->{threshold} = 'CRITICAL';
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::init(%options);
if (!defined($self->{option_results}->{pools}) && !defined($self->{option_results}->{auto})) {
$self->{output}->add_option_msg(short_msg => "Need to specify at least '--pools' or '--auto' option.");
$self->{output}->option_exit();
}
if (defined($self->{option_results}->{pools})) {
my $append = '';
foreach my $rule (split /,/, $self->{option_results}->{pools}) {
if ($rule !~ /^([^\!=]*)(\!=|=){0,1}(.*){0,1}/) {
$self->{output}->add_option_msg(short_msg => "Wrong rule in --pools option: " . $rule);
$self->{output}->option_exit();
}
if (!defined($1) || $1 eq '') {
$self->{output}->add_option_msg(short_msg => "Need pool name for rule: " . $rule);
$self->{output}->option_exit();
}
my $poolname = $1;
my $operator = defined($2) && $2 ne '' ? $2 : '!=';
my $state = defined($3) && $3 ne '' ? lc($3) : 'started';
if ($operator !~ /^(=|\!=)$/) {
$self->{output}->add_option_msg(short_msg => "Wrong operator for rule: " . $rule . ". Should be '=' or '!='.");
$self->{output}->option_exit();
}
if ($state !~ /^(started|starting|stopped|stopping|unknown)$/i) {
$self->{output}->add_option_msg(short_msg => "Wrong state for rule: " . $rule . ". See help for available state.");
$self->{output}->option_exit();
}
$self->{service_rules}->{$poolname} = {operator => $operator, state => $state};
$self->{wql_filter} .= $append . "Name = '" . $poolname . "'";
$append = ' Or ';
}
if ($self->{wql_filter} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify one rule for --pools option.");
$self->{output}->option_exit();
}
}
$self->{threshold} = 'WARNING' if (defined($self->{option_results}->{warning}));
$self->{threshold} = 'CRITICAL' if (defined($self->{option_results}->{critical}));
}
sub check_auto {
my ($self, %options) = @_;
my $wmi = Win32::OLE->GetObject('winmgmts:root\WebAdministration');
if (!defined($wmi)) {
$self->{output}->add_option_msg(short_msg => "Cant create server object:" . Win32::OLE->LastError());
$self->{output}->option_exit();
}
my $query = "Select Name, AutoStart From ApplicationPool";
my $resultset = $wmi->ExecQuery($query);
foreach my $obj (in $resultset) {
my $name = $obj->{Name};
my $state = $obj->GetState();
# Not an Auto service
next if ($obj->{AutoStart} == 0);
if (defined($self->{option_results}->{exclude}) && $self->{option_results}->{exclude} ne '' && $name =~ /$self->{option_results}->{exclude}/) {
$self->{output}->output_add(long_msg => "Skipping pool '" . $name . "'");
next;
}
$self->{output}->output_add(long_msg => "Pool '" . $name . "' state: " . $state_map{$state});
2014-02-21 11:31:20 +01:00
if ($state_map{$state} !~ /^started$/i) {
2014-02-17 16:37:20 +01:00
$self->{output}->output_add(severity => $self->{threshold},
short_msg => "Service '" . $name . "' is " . $state_map{$state});
}
}
}
sub check {
my ($self, %options) = @_;
my $result = {};
my $wmi = Win32::OLE->GetObject('winmgmts:root\WebAdministration');
if (!defined($wmi)) {
$self->{output}->add_option_msg(short_msg => "Cant create server object:" . Win32::OLE->LastError());
$self->{output}->option_exit();
}
my $query = 'Select Name From ApplicationPool Where ' . $self->{wql_filter};
my $resultset = $wmi->ExecQuery($query);
foreach my $obj (in $resultset) {
$result->{$obj->{Name}} = {state => $obj->GetState()};
}
foreach my $name (sort(keys %{$self->{service_rules}})) {
if (!defined($result->{$name})) {
$self->{output}->output_add(severity => 'UNKNOWN',
short_msg => "Pool '" . $name . "' not found");
next;
}
$self->{output}->output_add(long_msg => "Pool '" . $name . "' state: " . $state_map{$result->{$name}->{state}});
if ($self->{service_rules}->{$name}->{operator} eq '=' &&
$state_map{$result->{$name}->{state}} eq $self->{service_rules}->{$name}->{state}) {
$self->{output}->output_add(severity => $self->{threshold},
short_msg => "Pool '" . $name . "' is " . $state_map{$result->{$name}->{state}});
} elsif ($self->{service_rules}->{$name}->{operator} eq '!=' &&
$state_map{$result->{$name}->{state}} ne $self->{service_rules}->{$name}->{state}) {
$self->{output}->output_add(severity => $self->{threshold},
short_msg => "Service '" . $name . "' is " . $state_map{$result->{$name}->{state}});
}
}
}
sub run {
my ($self, %options) = @_;
$self->{output}->output_add(severity => 'OK',
short_msg => 'All application pools are ok');
if (defined($self->{option_results}->{auto})) {
$self->check_auto();
} else {
$self->check();
}
$self->{output}->display();
$self->{output}->exit();
}
1;
__END__
=head1 MODE
Check IIS Application Pools State.
=over 8
=item B<--warning>
Return warning.
=item B<--critical>
Return critical.
=item B<--pools>
Application Pool to monitor.
Syntax: [pool_name[[=|!=]state]],...
Available states are:
- 'started',
- 'starting',
- 'stopped',
- 'stopping'
- 'unknown'
=item B<--auto>
Return threshold for auto start pools not starting.
=item B<--exclude>
Exclude some pool for --auto option (Can be a regexp).
=back
=cut