enh(plugin): renaming, style and new health mode
This commit is contained in:
parent
feedaab419
commit
1c7f00f471
|
@ -105,13 +105,13 @@ Example:
|
||||||
|
|
||||||
Using resource name :
|
Using resource name :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=latency --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-latency --custommode=api
|
||||||
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='average'
|
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='average'
|
||||||
--warning-cache-latency='8000' --critical-cache-latency='9000'
|
--warning-cache-latency='8000' --critical-cache-latency='9000'
|
||||||
|
|
||||||
Using resource id :
|
Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=latency --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-latency --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
||||||
--aggregation='average' --warning-total-latency='50' --critical-total-latency='100'
|
--aggregation='average' --warning-total-latency='50' --critical-total-latency='100'
|
||||||
|
|
||||||
|
|
|
@ -1,144 +0,0 @@
|
||||||
#
|
|
||||||
# Copyright 2021 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 cloud::azure::database::redis::mode::cachemissrate;
|
|
||||||
|
|
||||||
use base qw(cloud::azure::custom::mode);
|
|
||||||
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
|
|
||||||
sub get_metrics_mapping {
|
|
||||||
my ($self, %options) = @_;
|
|
||||||
|
|
||||||
my $metrics_mapping = {
|
|
||||||
'cachemissrate' => {
|
|
||||||
'output' => 'Cache Miss Rate',
|
|
||||||
'label' => 'cache-miss-rate',
|
|
||||||
'nlabel' => 'redis.cache.miss.rate',
|
|
||||||
'unit' => '%',
|
|
||||||
'min' => '0',
|
|
||||||
'max' => '100'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return $metrics_mapping;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub new {
|
|
||||||
my ($class, %options) = @_;
|
|
||||||
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
|
|
||||||
bless $self, $class;
|
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
|
||||||
'filter-metric:s' => { name => 'filter_metric' },
|
|
||||||
'resource:s' => { name => 'resource' },
|
|
||||||
'resource-group:s' => { name => 'resource_group' }
|
|
||||||
});
|
|
||||||
|
|
||||||
return $self;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub check_options {
|
|
||||||
my ($self, %options) = @_;
|
|
||||||
$self->SUPER::check_options(%options);
|
|
||||||
|
|
||||||
if (!defined($self->{option_results}->{resource}) || $self->{option_results}->{resource} eq '') {
|
|
||||||
$self->{output}->add_option_msg(short_msg => 'Need to specify either --resource <name> with --resource-group option or --resource <id>.');
|
|
||||||
$self->{output}->option_exit();
|
|
||||||
}
|
|
||||||
my $resource = $self->{option_results}->{resource};
|
|
||||||
my $resource_group = defined($self->{option_results}->{resource_group}) ? $self->{option_results}->{resource_group} : '';
|
|
||||||
if ($resource =~ /^\/subscriptions\/.*\/resourceGroups\/(.*)\/providers\/Microsoft\.Cache\/Redis\/(.*)$/) {
|
|
||||||
$resource_group = $1;
|
|
||||||
$resource = $2;
|
|
||||||
}
|
|
||||||
|
|
||||||
$self->{az_resource} = $resource;
|
|
||||||
$self->{az_resource_group} = $resource_group;
|
|
||||||
$self->{az_resource_type} = 'Redis';
|
|
||||||
$self->{az_resource_namespace} = 'Microsoft.Cache';
|
|
||||||
$self->{az_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 900;
|
|
||||||
$self->{az_interval} = defined($self->{option_results}->{interval}) ? $self->{option_results}->{interval} : 'PT5M';
|
|
||||||
$self->{az_aggregations} = ['Average'];
|
|
||||||
if (defined($self->{option_results}->{aggregation})) {
|
|
||||||
$self->{az_aggregations} = [];
|
|
||||||
foreach my $stat (@{$self->{option_results}->{aggregation}}) {
|
|
||||||
if ($stat ne '') {
|
|
||||||
push @{$self->{az_aggregations}}, ucfirst(lc($stat));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach my $metric (keys %{$self->{metrics_mapping}}) {
|
|
||||||
next if (defined($self->{option_results}->{filter_metric}) && $self->{option_results}->{filter_metric} ne ''
|
|
||||||
&& $metric !~ /$self->{option_results}->{filter_metric}/);
|
|
||||||
push @{$self->{az_metrics}}, $metric;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
1;
|
|
||||||
|
|
||||||
__END__
|
|
||||||
|
|
||||||
=head1 MODE
|
|
||||||
|
|
||||||
Check Azure Redis Cache miss rate.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
Using resource name :
|
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-miss-rate --custommode=api
|
|
||||||
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='average'
|
|
||||||
--warning-cache-miss-rate='40' --critical-cache-miss-rate='50'
|
|
||||||
|
|
||||||
Using resource id :
|
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-miss-rate --custommode=api
|
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
|
||||||
--aggregation='average' --warning-cache-miss-rate='40' --critical-cache-miss-rate='50'
|
|
||||||
|
|
||||||
|
|
||||||
Default aggregation: 'average' / 'minimum', 'maximum' and 'total' are valid.
|
|
||||||
|
|
||||||
=over 8
|
|
||||||
|
|
||||||
=item B<--resource>
|
|
||||||
|
|
||||||
Set resource name or id (Required).
|
|
||||||
|
|
||||||
=item B<--resource-group>
|
|
||||||
|
|
||||||
Set resource group (Required if resource's name is used).
|
|
||||||
|
|
||||||
=item B<--warning-*>
|
|
||||||
|
|
||||||
Warning threshold where '*' can be:
|
|
||||||
'cache-miss-rate'.
|
|
||||||
|
|
||||||
=item B<--critical-*>
|
|
||||||
|
|
||||||
Critical threshold where '*' can be:
|
|
||||||
'cache-miss-rate'.
|
|
||||||
|
|
||||||
=back
|
|
||||||
|
|
||||||
=cut
|
|
|
@ -18,7 +18,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
package cloud::azure::database::redis::mode::cachehits;
|
package cloud::azure::database::redis::mode::cacheusage;
|
||||||
|
|
||||||
use base qw(cloud::azure::custom::mode);
|
use base qw(cloud::azure::custom::mode);
|
||||||
|
|
||||||
|
@ -112,13 +112,13 @@ Example:
|
||||||
|
|
||||||
Using resource name :
|
Using resource name :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-hits --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-usage --custommode=api
|
||||||
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='total'
|
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='total'
|
||||||
--warning-cache-misses='800' --critical-cache-misses='900'
|
--warning-cache-misses='800' --critical-cache-misses='900'
|
||||||
|
|
||||||
Using resource id :
|
Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-hits --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=cache-usage --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
||||||
--aggregation='total' --warning-cache-misses='800' --critical-cache-misses='900'
|
--aggregation='total' --warning-cache-misses='800' --critical-cache-misses='900'
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
package cloud::azure::database::redis::mode::connectedclients;
|
package cloud::azure::database::redis::mode::clients;
|
||||||
|
|
||||||
use base qw(cloud::azure::custom::mode);
|
use base qw(cloud::azure::custom::mode);
|
||||||
|
|
||||||
|
@ -105,13 +105,13 @@ Example:
|
||||||
|
|
||||||
Using resource name :
|
Using resource name :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=connected-clients --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=clients --custommode=api
|
||||||
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='average'
|
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='average'
|
||||||
--warning-connected-clients='800' --critical-connected-clients='900'
|
--warning-connected-clients='800' --critical-connected-clients='900'
|
||||||
|
|
||||||
Using resource id :
|
Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=connected-clients --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=clients --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
||||||
--aggregation='average' --warning-connected-clients='800' --critical-connected-clients='900'
|
--aggregation='average' --warning-connected-clients='800' --critical-connected-clients='900'
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
#
|
||||||
|
# Copyright 2021 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 cloud::azure::database::redis::mode::health;
|
||||||
|
|
||||||
|
use base qw(cloud::azure::management::monitor::mode::health);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
sub check_options {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
$self->SUPER::check_options(%options);
|
||||||
|
|
||||||
|
$self->{az_resource_namespace} = 'Microsoft.Cache';
|
||||||
|
$self->{az_resource_type} = 'Redis';
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check Azure Redis cache health status.
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--resource>
|
||||||
|
|
||||||
|
Set resource name or id (Required).
|
||||||
|
|
||||||
|
=item B<--resource-group>
|
||||||
|
|
||||||
|
Set resource group (Required if resource's name is used).
|
||||||
|
|
||||||
|
=item B<--warning-status>
|
||||||
|
|
||||||
|
Set warning threshold for status (Default: '').
|
||||||
|
Can used special variables like: %{status}, %{summary}
|
||||||
|
|
||||||
|
=item B<--critical-status>
|
||||||
|
|
||||||
|
Set critical threshold for status (Default: '%{status} =~ /^Unavailable$/').
|
||||||
|
Can used special variables like: %{status}, %{summary}
|
||||||
|
|
||||||
|
=item B<--unknown-status>
|
||||||
|
|
||||||
|
Set unknown threshold for status (Default: '%{status} =~ /^Unknown$/').
|
||||||
|
Can used special variables like: %{status}, %{summary}
|
||||||
|
|
||||||
|
=item B<--ok-status>
|
||||||
|
|
||||||
|
Set ok threshold for status (Default: '%{status} =~ /^Available$/').
|
||||||
|
Can used special variables like: %{status}, %{summary}
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
|
@ -18,7 +18,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
package cloud::azure::database::redis::mode::serverload;
|
package cloud::azure::database::redis::mode::load;
|
||||||
|
|
||||||
use base qw(cloud::azure::custom::mode);
|
use base qw(cloud::azure::custom::mode);
|
||||||
|
|
||||||
|
@ -106,13 +106,13 @@ Example:
|
||||||
|
|
||||||
Using resource name :
|
Using resource name :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=server-load --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=load --custommode=api
|
||||||
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='maximum'
|
--resource=<redis_id> --resource-group=<resourcegroup_id> --aggregation='maximum'
|
||||||
--warning-server-load-percentage='80' --critical-server-load-percentage='90'
|
--warning-server-load-percentage='80' --critical-server-load-percentage='90'
|
||||||
|
|
||||||
Using resource id :
|
Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=server-load --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::database::redis::plugin --mode=load --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Cache/Redis/<redis_id>'
|
||||||
--aggregation='maximum' --warning-server-load-percentage='80' --critical-server-load-percentage='90'
|
--aggregation='maximum' --warning-server-load-percentage='80' --critical-server-load-percentage='90'
|
||||||
|
|
|
@ -31,17 +31,17 @@ sub new {
|
||||||
|
|
||||||
$self->{version} = '0.1';
|
$self->{version} = '0.1';
|
||||||
$self->{modes} = {
|
$self->{modes} = {
|
||||||
'discovery' => 'cloud::azure::database::redis::mode::discovery',
|
'cache-latency' => 'cloud::azure::database::redis::mode::cachelatency',
|
||||||
'cache-hits' => 'cloud::azure::database::redis::mode::cachehits',
|
'cache-throughput' => 'cloud::azure::database::redis::mode::cachethroughput',
|
||||||
'cache-latency' => 'cloud::azure::database::redis::mode::cachelatency',
|
'cache-usage' => 'cloud::azure::database::redis::mode::cacheusage',
|
||||||
'cache-miss-rate' => 'cloud::azure::database::redis::mode::cachemissrate',
|
'clients' => 'cloud::azure::database::redis::mode::clients',
|
||||||
'connected-clients' => 'cloud::azure::database::redis::mode::connectedclients',
|
'cpu' => 'cloud::azure::database::redis::mode::cpu',
|
||||||
'server-load' => 'cloud::azure::database::redis::mode::serverload',
|
'discovery' => 'cloud::azure::database::redis::mode::discovery',
|
||||||
'operations' => 'cloud::azure::database::redis::mode::operations',
|
'errors' => 'cloud::azure::database::redis::mode::errors',
|
||||||
'cpu' => 'cloud::azure::database::redis::mode::cpu',
|
'health' => 'cloud::azure::database::redis::mode::health',
|
||||||
'memory' => 'cloud::azure::database::redis::mode::memory',
|
'load' => 'cloud::azure::database::redis::mode::load',
|
||||||
'errors' => 'cloud::azure::database::redis::mode::errors',
|
'memory' => 'cloud::azure::database::redis::mode::memory',
|
||||||
'cache-throughput' => 'cloud::azure::database::redis::mode::cachethroughput'
|
'operations' => 'cloud::azure::database::redis::mode::operations',
|
||||||
};
|
};
|
||||||
|
|
||||||
$self->{custom_modes}->{azcli} = 'cloud::azure::custom::azcli';
|
$self->{custom_modes}->{azcli} = 'cloud::azure::custom::azcli';
|
||||||
|
|
Loading…
Reference in New Issue