centreon-plugins/apps/backup/rubrik/restapi/mode/compliance.pm

123 lines
3.2 KiB
Perl

#
# Copyright 2020 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 apps::backup::rubrik::restapi::mode::compliance;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
sub prefix_global_output {
my ($self, %options) = @_;
return 'Backup objects last 24 hours ';
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'global', type => 0, cb_prefix_output => 'prefix_global_output', skipped_code => { -10 => 1 } }
];
$self->{maps_counters}->{global} = [
{ label => 'incompliance', nlabel => 'backup.objects.incompliance.24h.count', set => {
key_values => [ { name => 'incompliance' } ],
output_template => 'in compliance: %s',
perfdatas => [
{ template => '%s', min => 0 }
]
}
},
{ label => 'noncompliance', nlabel => 'backup.objects.noncompliance.24h.count', set => {
key_values => [ { name => 'noncompliance' } ],
output_template => 'non compliance: %s',
perfdatas => [
{ template => '%s', min => 0 }
]
}
}
];
}
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 => {
});
return $self;
}
sub manage_selection {
my ($self, %options) = @_;
my $reports = $options{custom}->request_api(endpoint => '/report');
my $report_id;
foreach (@{$reports->{data}}) {
if ($_->{name} eq 'SLA Compliance Summary') {
$report_id = $_->{id};
last;
}
}
if (!defined($report_id)) {
$self->{output}->add_option_msg(short_msg => "Cannot find report name 'SLA Compliance Summary'");
$self->{output}->option_exit();
}
my $tasks = $options{custom}->request_api(
endpoint => '/report/' . $report_id . '/chart',
get_param => ['timezone_offset=0', 'chart_id=chart0']
);
$self->{global} = {};
foreach (@{$tasks->[0]->{dataColumns}}) {
$self->{global}->{ lc($_->{label}) } = $_->{dataPoints}->[0]->{value};
}
}
1;
__END__
=head1 MODE
Check backup objects compliance.
=over 8
=item B<--filter-counters>
Only display some counters (regexp can be used).
Example: --filter-counters='noncompliance'
=item B<--warning-*> B<--critical-*>
Thresholds.
Can be: 'incompliance', 'noncompliance'.
=back
=cut