update weblogic workmanage mode with class counter
This commit is contained in:
parent
5d24497369
commit
2a7af133a7
|
@ -20,72 +20,16 @@
|
||||||
|
|
||||||
package apps::java::weblogic::jmx::mode::workmanager;
|
package apps::java::weblogic::jmx::mode::workmanager;
|
||||||
|
|
||||||
use base qw(centreon::plugins::mode);
|
use base qw(centreon::plugins::templates::counter);
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use centreon::plugins::values;
|
|
||||||
use centreon::plugins::statefile;
|
|
||||||
use Digest::MD5 qw(md5_hex);
|
use Digest::MD5 qw(md5_hex);
|
||||||
|
|
||||||
my $thresholds = {
|
|
||||||
health => [
|
|
||||||
['HEALTH_OK', 'OK'],
|
|
||||||
['HEALTH_WARNING', 'WARNING'],
|
|
||||||
['HEALTH_CRITICAL', 'CRITICAL'],
|
|
||||||
['HEALTH_FAILED', 'CRITICAL'],
|
|
||||||
['HEALTH_OVERLOADED', 'CRITICAL'],
|
|
||||||
['LOW_MEMORY_REASON', 'CRITICAL'],
|
|
||||||
],
|
|
||||||
};
|
|
||||||
my $instance_mode;
|
|
||||||
|
|
||||||
my $maps_counters = {
|
|
||||||
runtime => {
|
|
||||||
'000_status' => { set => {
|
|
||||||
key_values => [ { name => 'health_state' } ],
|
|
||||||
closure_custom_calc => \&custom_status_calc,
|
|
||||||
output_template => 'State : %s', output_error_template => 'State : %s',
|
|
||||||
output_use => 'health_state',
|
|
||||||
closure_custom_perfdata => sub { return 0; },
|
|
||||||
closure_custom_threshold_check => \&custom_threshold_output,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
'001_request-completed' => { set => {
|
|
||||||
key_values => [ { name => 'completed', diff => 1 }, { name => 'runtime' } ],
|
|
||||||
output_template => 'Requests completed : %s',
|
|
||||||
perfdatas => [
|
|
||||||
{ label => 'request_completed', value => 'completed_absolute', template => '%s',
|
|
||||||
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
|
||||||
],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'002_request-pending' => { set => {
|
|
||||||
key_values => [ { name => 'pending' }, { name => 'runtime' } ],
|
|
||||||
output_template => 'Requests pending : %s',
|
|
||||||
perfdatas => [
|
|
||||||
{ label => 'request_pending', value => 'pending_absolute', template => '%s',
|
|
||||||
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
|
||||||
],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'003_thread-stuck' => { set => {
|
|
||||||
key_values => [ { name => 'stuck' }, { name => 'runtime' } ],
|
|
||||||
output_template => 'Threads stuck : %s',
|
|
||||||
perfdatas => [
|
|
||||||
{ label => 'thread_stuck', value => 'stuck_absolute', template => '%s',
|
|
||||||
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
|
||||||
],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
sub custom_threshold_output {
|
sub custom_threshold_output {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
return $instance_mode->get_severity(section => 'health', value => $self->{result_values}->{health_state});
|
return $self->{instance_mode}->get_severity(section => 'health', value => $self->{result_values}->{health_state});
|
||||||
}
|
}
|
||||||
|
|
||||||
sub custom_status_calc {
|
sub custom_status_calc {
|
||||||
|
@ -95,53 +39,78 @@ sub custom_status_calc {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub set_counters {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{maps_counters_type} = [
|
||||||
|
{ name => 'wm', type => 1, cb_prefix_output => 'prefix_wm_output', message_multiple => 'All WorkerManagers are ok' }
|
||||||
|
];
|
||||||
|
|
||||||
|
$self->{maps_counters}->{wm} = [
|
||||||
|
{ label => 'status', threshold => 0, set => {
|
||||||
|
key_values => [ { name => 'health_state' } ],
|
||||||
|
closure_custom_calc => $self->can('custom_status_calc'),
|
||||||
|
output_template => 'State : %s', output_error_template => 'State : %s',
|
||||||
|
output_use => 'health_state',
|
||||||
|
closure_custom_perfdata => sub { return 0; },
|
||||||
|
closure_custom_threshold_check => $self->can('custom_threshold_output'),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ label => 'request-completed', set => {
|
||||||
|
key_values => [ { name => 'completed', diff => 1 }, { name => 'runtime' } ],
|
||||||
|
output_template => 'Requests completed : %s',
|
||||||
|
perfdatas => [
|
||||||
|
{ label => 'request_completed', value => 'completed_absolute', template => '%s',
|
||||||
|
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
||||||
|
],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ label => 'request-pending', set => {
|
||||||
|
key_values => [ { name => 'pending' }, { name => 'runtime' } ],
|
||||||
|
output_template => 'Requests pending : %s',
|
||||||
|
perfdatas => [
|
||||||
|
{ label => 'request_pending', value => 'pending_absolute', template => '%s',
|
||||||
|
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
||||||
|
],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ label => 'thread-stuck', set => {
|
||||||
|
key_values => [ { name => 'stuck' }, { name => 'runtime' } ],
|
||||||
|
output_template => 'Threads stuck : %s',
|
||||||
|
perfdatas => [
|
||||||
|
{ label => 'thread_stuck', value => 'stuck_absolute', template => '%s',
|
||||||
|
min => 0, label_extra_instance => 1, instance_use => 'runtime_absolute' },
|
||||||
|
],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
sub prefix_wm_output {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
return "WorkerManager '" . $options{instance_value}->{display} . "' ";
|
||||||
|
}
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
my ($class, %options) = @_;
|
my ($class, %options) = @_;
|
||||||
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1);
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$self->{version} = '1.0';
|
$self->{version} = '1.0';
|
||||||
$options{options}->add_options(arguments =>
|
$options{options}->add_options(arguments => {
|
||||||
{
|
"filter-application:s" => { name => 'filter_application' },
|
||||||
"filter-application:s" => { name => 'filter_application' },
|
"filter-name:s" => { name => 'filter_name' },
|
||||||
"filter-name:s" => { name => 'filter_name' },
|
"filter-runtime:s" => { name => 'filter_runtime' },
|
||||||
"filter-runtime:s" => { name => 'filter_runtime' },
|
"threshold-overload:s@" => { name => 'threshold_overload' },
|
||||||
"threshold-overload:s@" => { name => 'threshold_overload' },
|
});
|
||||||
});
|
|
||||||
$self->{statefile_value} = centreon::plugins::statefile->new(%options);
|
|
||||||
|
|
||||||
foreach my $key (('runtime')) {
|
|
||||||
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}});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub check_options {
|
sub check_options {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
$self->SUPER::init(%options);
|
$self->SUPER::check_options(%options);
|
||||||
|
|
||||||
foreach my $key (('runtime')) {
|
|
||||||
foreach (keys %{$maps_counters->{$key}}) {
|
|
||||||
$maps_counters->{$key}->{$_}->{obj}->init(option_results => $self->{option_results});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$self->{statefile_value}->check_options(%options);
|
|
||||||
$instance_mode = $self;
|
|
||||||
|
|
||||||
$self->{overload_th} = {};
|
$self->{overload_th} = {};
|
||||||
foreach my $val (@{$self->{option_results}->{threshold_overload}}) {
|
foreach my $val (@{$self->{option_results}->{threshold_overload}}) {
|
||||||
|
@ -159,77 +128,16 @@ sub check_options {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub run {
|
my $thresholds = {
|
||||||
my ($self, %options) = @_;
|
health => [
|
||||||
$self->{connector} = $options{custom};
|
['HEALTH_OK', 'OK'],
|
||||||
|
['HEALTH_WARNING', 'WARNING'],
|
||||||
$self->manage_selection();
|
['HEALTH_CRITICAL', 'CRITICAL'],
|
||||||
|
['HEALTH_FAILED', 'CRITICAL'],
|
||||||
my $multiple = 1;
|
['HEALTH_OVERLOADED', 'CRITICAL'],
|
||||||
if (scalar(keys %{$self->{runtime}}) == 1) {
|
['LOW_MEMORY_REASON', 'CRITICAL'],
|
||||||
$multiple = 0;
|
],
|
||||||
}
|
};
|
||||||
|
|
||||||
if ($multiple == 1) {
|
|
||||||
$self->{output}->output_add(severity => 'OK',
|
|
||||||
short_msg => 'All WorkerManagers are ok');
|
|
||||||
}
|
|
||||||
|
|
||||||
my $matching = '';
|
|
||||||
foreach (('filter_application', 'filter_name', 'filter_runtime')) {
|
|
||||||
$matching .= defined($self->{option_results}->{$_}) ? $self->{option_results}->{$_} : 'all';
|
|
||||||
}
|
|
||||||
$self->{new_datas} = {};
|
|
||||||
$self->{statefile_value}->read(statefile => "weblogic_" . $self->{mode} . '_' . md5_hex($self->{connector}->{url}) . '_' . md5_hex($matching));
|
|
||||||
$self->{new_datas}->{last_timestamp} = time();
|
|
||||||
|
|
||||||
foreach my $id (sort keys %{$self->{runtime}}) {
|
|
||||||
my ($short_msg, $short_msg_append, $long_msg, $long_msg_append) = ('', '', '', '');
|
|
||||||
my @exits = ();
|
|
||||||
foreach (sort keys %{$maps_counters->{runtime}}) {
|
|
||||||
my $obj = $maps_counters->{runtime}->{$_}->{obj};
|
|
||||||
$obj->set(instance => $id);
|
|
||||||
|
|
||||||
my ($value_check) = $obj->execute(values => $self->{runtime}->{$id},
|
|
||||||
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 = ', ';
|
|
||||||
|
|
||||||
if (!$self->{output}->is_status(litteral => 1, value => $exit2, compare => 'ok')) {
|
|
||||||
$short_msg .= $short_msg_append . $output;
|
|
||||||
$short_msg_append = ', ';
|
|
||||||
}
|
|
||||||
|
|
||||||
$obj->perfdata(level => 1, extra_instance => $multiple);
|
|
||||||
}
|
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => "WorkerManager '$id' $long_msg");
|
|
||||||
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 => "WorkerManager '$id' $short_msg"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($multiple == 0) {
|
|
||||||
$self->{output}->output_add(short_msg => "WorkerManager '$id' $long_msg");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$self->{statefile_value}->write(data => $self->{new_datas});
|
|
||||||
$self->{output}->display();
|
|
||||||
$self->{output}->exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
sub get_severity {
|
sub get_severity {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
@ -265,13 +173,13 @@ my %map_state = (
|
||||||
sub manage_selection {
|
sub manage_selection {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
$self->{request} = [
|
my $request = [
|
||||||
{ mbean => 'com.bea:ApplicationRuntime=*,Name=*,ServerRuntime=*,Type=WorkManagerRuntime',
|
{ mbean => 'com.bea:ApplicationRuntime=*,Name=*,ServerRuntime=*,Type=WorkManagerRuntime',
|
||||||
attributes => [ { name => 'HealthState' }, { name => 'StuckThreadCount' }, { name => 'CompletedRequests' }, { name => 'PendingRequests' } ] }
|
attributes => [ { name => 'HealthState' }, { name => 'StuckThreadCount' }, { name => 'CompletedRequests' }, { name => 'PendingRequests' } ] }
|
||||||
];
|
];
|
||||||
my $result = $self->{connector}->get_attributes(request => $self->{request}, nothing_quit => 1);
|
my $result = $options{custom}->get_attributes(request => $request, nothing_quit => 1);
|
||||||
|
|
||||||
$self->{runtime} = {};
|
$self->{wm} = {};
|
||||||
foreach my $mbean (keys %{$result}) {
|
foreach my $mbean (keys %{$result}) {
|
||||||
next if ($mbean !~ /ApplicationRuntime=(.*?),Name=(.*?),ServerRuntime=(.*?),/);
|
next if ($mbean !~ /ApplicationRuntime=(.*?),Name=(.*?),ServerRuntime=(.*?),/);
|
||||||
my ($app, $name, $runtime) = ($1, $2, $3);
|
my ($app, $name, $runtime) = ($1, $2, $3);
|
||||||
|
@ -280,28 +188,40 @@ sub manage_selection {
|
||||||
|
|
||||||
if (defined($self->{option_results}->{filter_application}) && $self->{option_results}->{filter_application} ne '' &&
|
if (defined($self->{option_results}->{filter_application}) && $self->{option_results}->{filter_application} ne '' &&
|
||||||
$app !~ /$self->{option_results}->{filter_application}/) {
|
$app !~ /$self->{option_results}->{filter_application}/) {
|
||||||
$self->{output}->output_add(long_msg => "Skipping '" . $app . "': no matching filter application.");
|
$self->{output}->output_add(long_msg => "skipping '" . $app . "': no matching filter application.");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' &&
|
if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' &&
|
||||||
$name !~ /$self->{option_results}->{filter_name}/) {
|
$name !~ /$self->{option_results}->{filter_name}/) {
|
||||||
$self->{output}->output_add(long_msg => "Skipping '" . $name . "': no matching filter name.");
|
$self->{output}->output_add(long_msg => "skipping '" . $name . "': no matching filter name.");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
if (defined($self->{option_results}->{filter_runtime}) && $self->{option_results}->{filter_runtime} ne '' &&
|
if (defined($self->{option_results}->{filter_runtime}) && $self->{option_results}->{filter_runtime} ne '' &&
|
||||||
$runtime !~ /$self->{option_results}->{filter_runtime}/) {
|
$runtime !~ /$self->{option_results}->{filter_runtime}/) {
|
||||||
$self->{output}->output_add(long_msg => "Skipping '" . $runtime . "': no matching filter runtime.");
|
$self->{output}->output_add(long_msg => "skipping '" . $runtime . "': no matching filter runtime.");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
$self->{runtime}->{$app . '/' . $name . '/' . $runtime} = { health_state => $health_state, runtime => $app . '/' . $name . '/' . $runtime,
|
$self->{wm}->{$app . '/' . $name . '/' . $runtime} = {
|
||||||
completed => $result->{$mbean}->{CompletedRequests}, pending => $result->{$mbean}->{PendingRequests}, stuck => $result->{$mbean}->{StuckThreadCount} };
|
health_state => $health_state,
|
||||||
|
display => $app . '/' . $name . '/' . $runtime,
|
||||||
|
completed => $result->{$mbean}->{CompletedRequests},
|
||||||
|
pending => $result->{$mbean}->{PendingRequests},
|
||||||
|
stuck => $result->{$mbean}->{StuckThreadCount}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scalar(keys %{$self->{runtime}}) <= 0) {
|
if (scalar(keys %{$self->{wm}}) <= 0) {
|
||||||
$self->{output}->add_option_msg(short_msg => "No entry found.");
|
$self->{output}->add_option_msg(short_msg => "No entry found.");
|
||||||
$self->{output}->option_exit();
|
$self->{output}->option_exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$self->{cache_name} = "weblogic_" . $self->{mode} . '_' . md5_hex($self->{connector}->{url}) . '_' .
|
||||||
|
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')) . '_' .
|
||||||
|
(defined($self->{option_results}->{filter_application}) ? md5_hex($self->{option_results}->{filter_application}) : md5_hex('all')) . '_' .
|
||||||
|
(defined($self->{option_results}->{filter_name}) ? md5_hex($self->{option_results}->{filter_name}) : md5_hex('all')) . '_' .
|
||||||
|
(defined($self->{option_results}->{filter_runtime}) ? md5_hex($self->{option_results}->{filter_runtime}) : md5_hex('all'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
Loading…
Reference in New Issue