mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-27 07:34:35 +02:00
(plugin) cloud::azure::management::costs - add list-budget mode (#3887)
* (plugin) cloud::azure::management::costs - add list-budget mode * + align with convention * Fix typo in foreach
This commit is contained in:
parent
b7726198e8
commit
e07be08814
@ -810,6 +810,25 @@ sub azure_get_budget {
|
|||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub azure_list_budget_set_url {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
my $url = $self->{management_endpoint} . "/subscriptions/" . $self->{subscription};
|
||||||
|
$url .= "/providers/Microsoft.Consumption/budgets";
|
||||||
|
$url .= "?api-version=" . $self->{api_version};
|
||||||
|
|
||||||
|
return $url;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub azure_list_budget {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
my $full_url = $self->azure_list_budget_set_url(%options);
|
||||||
|
my $response = $self->request_api(method => 'GET', full_url => $full_url, hostname => '');
|
||||||
|
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
sub azure_get_usagedetails_set_url {
|
sub azure_get_usagedetails_set_url {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
@ -0,0 +1,103 @@
|
|||||||
|
#
|
||||||
|
# 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::management::costs::mode::listbudgets;
|
||||||
|
|
||||||
|
use base qw(centreon::plugins::mode);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ($class, %options) = @_;
|
||||||
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
bless $self, $class;
|
||||||
|
|
||||||
|
$options{options}->add_options(arguments => {
|
||||||
|
});
|
||||||
|
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub check_options {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
$self->SUPER::init(%options);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub manage_selection {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{budget} = $options{custom}->azure_list_budget();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->manage_selection(%options);
|
||||||
|
foreach my $budget (@{$self->{budget}->{value}) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf("[budget = %s][category = %s][amount = %s][timegrain = %s][id = %s]",
|
||||||
|
$budget->{name}, $budget->{properties}->{category}, $budget->{properties}->{amount}, $budget->{properties}->{timeGrain}, $budget->{id})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => 'OK',
|
||||||
|
short_msg => 'List budgets:'
|
||||||
|
);
|
||||||
|
$self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1);
|
||||||
|
$self->{output}->exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
sub disco_format {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->add_disco_format(elements => ['id', 'name', 'category', 'amount', 'timegrain']);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub disco_show {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->manage_selection(%options);
|
||||||
|
foreach my $budget (@{$self->{budget}->value}) {
|
||||||
|
$self->{output}->add_disco_entry(
|
||||||
|
name => $budget->{name},
|
||||||
|
category => $budget->{properties}->{category},
|
||||||
|
amount => $budget->{properties}->{amount},
|
||||||
|
timegrain => $budget->{properties}->{timeGrain},
|
||||||
|
id => $budget->{id}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
List Azure budgets.
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
@ -31,7 +31,8 @@ sub new {
|
|||||||
|
|
||||||
$self->{version} = '0.1';
|
$self->{version} = '0.1';
|
||||||
%{ $self->{modes} } = (
|
%{ $self->{modes} } = (
|
||||||
'budgets' => 'cloud::azure::management::costs::mode::budgets'
|
'budgets' => 'cloud::azure::management::costs::mode::budgets',
|
||||||
|
'list-budgets' => 'cloud::azure::management::costs::mode::listbudgets'
|
||||||
);
|
);
|
||||||
|
|
||||||
$self->{custom_modes}{api} = 'cloud::azure::custom::api';
|
$self->{custom_modes}{api} = 'cloud::azure::custom::api';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user