-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add microsoft azure plugin, wip (#1097)
- Loading branch information
Showing
38 changed files
with
7,493 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
# | ||
# Copyright 2018 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::compute::mode::cpu; | ||
|
||
use base qw(centreon::plugins::templates::counter); | ||
|
||
use strict; | ||
use warnings; | ||
|
||
sub prefix_metric_output { | ||
my ($self, %options) = @_; | ||
|
||
return "Resource '" . $options{instance_value}->{display} . "' " . $options{instance_value}->{stat} . " "; | ||
} | ||
|
||
sub set_counters { | ||
my ($self, %options) = @_; | ||
|
||
$self->{maps_counters_type} = [ | ||
{ name => 'metric', type => 1, cb_prefix_output => 'prefix_metric_output', message_multiple => "All CPU metrics are ok", skipped_code => { -10 => 1 } }, | ||
]; | ||
|
||
foreach my $aggregation ('minimum', 'maximum', 'average', 'total') { | ||
foreach my $metric ('CPU Credits Remaining', 'CPU Credits Consumed') { | ||
my $metric_perf = lc($metric); | ||
my $metric_label = lc($metric); | ||
$metric_perf =~ s/ /_/g; | ||
$metric_label =~ s/ /-/g; | ||
my $entry = { label => $metric_label . '-' . $aggregation, set => { | ||
key_values => [ { name => $metric_perf . '_' . $aggregation }, { name => 'display' }, { name => 'stat' } ], | ||
output_template => $metric . ': %.2f', | ||
perfdatas => [ | ||
{ label => $metric_perf . '_' . $aggregation, value => $metric_perf . '_' . $aggregation . '_absolute', | ||
template => '%.2f', unit => 'credits', label_extra_instance => 1, instance_use => 'display_absolute', | ||
min => 0 }, | ||
], | ||
} | ||
}; | ||
push @{$self->{maps_counters}->{metric}}, $entry; | ||
} | ||
foreach my $metric ('Percentage CPU') { | ||
my $metric_perf = lc($metric); | ||
my $metric_label = lc($metric); | ||
$metric_perf =~ s/ /_/g; | ||
$metric_label =~ s/ /-/g; | ||
my $entry = { label => $metric_label . '-' . $aggregation, set => { | ||
key_values => [ { name => $metric_perf . '_' . $aggregation }, { name => 'display' }, { name => 'stat' } ], | ||
output_template => $metric . ': %.2f %%', | ||
perfdatas => [ | ||
{ label => $metric_perf . '_' . $aggregation, value => $metric_perf . '_' . $aggregation . '_absolute', | ||
template => '%.2f', unit => '%', label_extra_instance => 1, instance_use => 'display_absolute', | ||
min => 0, max => 100 }, | ||
], | ||
} | ||
}; | ||
push @{$self->{maps_counters}->{metric}}, $entry; | ||
} | ||
} | ||
} | ||
|
||
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 => | ||
{ | ||
"resource:s@" => { name => 'resource' }, | ||
"resource-group:s" => { name => 'resource_group' }, | ||
"resource-type:s" => { name => 'resource_type' }, | ||
"filter-metric:s" => { name => 'filter_metric' }, | ||
}); | ||
|
||
return $self; | ||
} | ||
|
||
sub check_options { | ||
my ($self, %options) = @_; | ||
$self->SUPER::check_options(%options); | ||
|
||
if (!defined($self->{option_results}->{resource})) { | ||
$self->{output}->add_option_msg(short_msg => "Need to specify either --resource <name> with --resource-group and --resource-type options or --resource <id>."); | ||
$self->{output}->option_exit(); | ||
} | ||
|
||
$self->{az_resource_group} = ''; | ||
$self->{az_resource_type} = ''; | ||
$self->{az_resource_namespace} = 'Microsoft.Compute'; | ||
|
||
foreach my $resource (@{$self->{option_results}->{resource}}) { | ||
push @{$self->{az_resource}}, $resource; | ||
if ($resource =~ /^\/subscriptions\/.*\/resourceGroups\/.*\/providers\/Microsoft\.Compute\/.*\/.*$/) { | ||
$self->{az_resource_namespace} = ''; | ||
} else { | ||
$self->{az_resource_group} = $self->{option_results}->{resource_group}; | ||
$self->{az_resource_type} = $self->{option_results}->{resource_type}; | ||
} | ||
} | ||
|
||
$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 ('CPU Credits Remaining', 'CPU Credits Consumed', 'Percentage CPU') { | ||
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; | ||
} | ||
} | ||
|
||
sub manage_selection { | ||
my ($self, %options) = @_; | ||
|
||
my %metric_results; | ||
foreach my $resource (@{$self->{az_resource}}) { | ||
my $resource_name = $resource; | ||
$resource_name = $1 if ($resource_name =~ /^\/subscriptions\/.*\/resourceGroups\/.*\/providers\/Microsoft\.Compute\/.*\/(.*)$/); | ||
|
||
($metric_results{$resource_name}, undef, undef) = $options{custom}->azure_get_metrics( | ||
resource => $resource, | ||
resource_group => $self->{az_resource_group}, | ||
resource_type => $self->{az_resource_type}, | ||
resource_namespace => $self->{az_resource_namespace}, | ||
metrics => $self->{az_metrics}, | ||
aggregations => $self->{az_aggregations}, | ||
timeframe => $self->{az_timeframe}, | ||
interval => $self->{az_interval}, | ||
); | ||
|
||
foreach my $metric (@{$self->{az_metrics}}) { | ||
my $metric_name = lc($metric); | ||
$metric_name =~ s/ /_/g; | ||
foreach my $aggregation (@{$self->{az_aggregations}}) { | ||
next if (!defined($metric_results{$resource_name}->{$metric_name}->{lc($aggregation)}) && !defined($self->{option_results}->{zeroed})); | ||
|
||
$self->{metric}->{$resource_name . "_" . lc($aggregation)}->{display} = $resource_name; | ||
$self->{metric}->{$resource_name . "_" . lc($aggregation)}->{stat} = lc($aggregation); | ||
$self->{metric}->{$resource_name . "_" . lc($aggregation)}->{$metric_name . "_" . lc($aggregation)} = defined($metric_results{$resource_name}->{$metric_name}->{lc($aggregation)}) ? $metric_results{$resource_name}->{$metric_name}->{lc($aggregation)} : 0; | ||
} | ||
} | ||
} | ||
|
||
if (scalar(keys %{$self->{metric}}) <= 0) { | ||
$self->{output}->add_option_msg(short_msg => 'No metrics. Check your options or use --zeroed option to set 0 on undefined values'); | ||
$self->{output}->option_exit(); | ||
} | ||
} | ||
|
||
1; | ||
|
||
__END__ | ||
=head1 MODE | ||
Check compute resources CPU metrics. | ||
Example: | ||
Using resource name : | ||
perl centreon_plugins.pl --plugin=cloud::azure::compute::plugin --custommode=azcli --mode=cpu | ||
--resource=MYSQLINSTANCE --resource-group=MYHOSTGROUP --resource-type=virtualMachines | ||
--filter-metric='Credits' --aggregation='average' --critical-cpu-credits-remaining-average='10' --verbose | ||
Using resource id : | ||
perl centreon_plugins.pl --plugin=cloud::azure::compute::plugin --custommode=azcli --mode=cpu | ||
--resource='/subscriptions/xxx/resourceGroups/xxx/providers/Microsoft.Compute/virtualMachines/xxx' | ||
--filter-metric='Credits' --aggregation='average' --critical-cpu-credits-remaining-average='10' --verbose | ||
Default aggregation: 'average' / All aggregations 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<--resource-type> | ||
Set resource type (Required if resource's name is used) (Can be: 'virtualMachines', 'xx'). | ||
=item B<--filter-metric> | ||
Filter metrics (Can be: 'CPU Credits Remaining', 'CPU Credits Consumed', | ||
'Percentage CPU') (Can be a regexp). | ||
=item B<--warning-$metric$-$aggregation$> | ||
Thresholds warning ($metric$ can be: 'cpu-credits-remaining', 'cpu-credits-consumed', | ||
'percentage-cpu', $aggregation$ can be: 'minimum', 'maximum', 'average', 'total'). | ||
=item B<--critical-$metric$-$aggregation$> | ||
Thresholds critical ($metric$ can be: 'cpu-credits-remaining', 'cpu-credits-consumed', | ||
'percentage-cpu', $aggregation$ can be: 'minimum', 'maximum', 'average', 'total'). | ||
=back | ||
=cut |
Oops, something went wrong.