centreon-plugins/apps/pvx/restapi/mode/networkuserexperience.pm

165 lines
5.1 KiB
Perl
Raw Normal View History

2018-11-28 17:37:34 +01:00
#
2020-01-06 15:19:23 +01:00
# Copyright 2020 Centreon (http://www.centreon.com/)
2018-11-28 17:37:34 +01:00
#
# 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::pvx::restapi::mode::networkuserexperience;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'instances', type => 1, cb_prefix_output => 'prefix_instances_output', message_multiple => 'All metrics are ok' },
];
$self->{maps_counters}->{instances} = [
{ label => 'time', set => {
key_values => [ { name => 'user_experience' }, { name => 'key' }, { name => 'instance_label' } ],
output_template => 'End-User Experience: %.3f s',
perfdatas => [
2020-05-26 09:53:36 +02:00
{ label => 'time', template => '%.3f',
min => 0, unit => 's', label_extra_instance => 1, instance_use => 'key' }
]
2018-11-28 17:37:34 +01:00
}
2020-05-26 09:53:36 +02:00
}
2018-11-28 17:37:34 +01:00
];
}
sub prefix_instances_output {
my ($self, %options) = @_;
return $options{instance_value}->{instance_label} . " '" . $options{instance_value}->{key} . "' ";
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
2020-02-04 18:00:00 +01:00
$options{options}->add_options(arguments => {
'instance:s' => { name => 'instance', default => 'layer' },
'top:s' => { name => 'top' },
'filter:s' => { name => 'filter' },
2020-05-26 09:53:36 +02:00
'from:s' => { name => 'from' }
2020-02-04 18:00:00 +01:00
});
2018-11-28 17:37:34 +01:00
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
2020-05-26 09:26:26 +02:00
if (!defined($self->{option_results}->{from}) || $self->{option_results}->{from} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --from option as a PVQL object.");
2018-11-28 17:37:34 +01:00
$self->{output}->option_exit();
}
if (!defined($self->{option_results}->{instance}) || $self->{option_results}->{instance} eq '') {
2020-05-26 09:26:26 +02:00
$self->{output}->add_option_msg(short_msg => "Need to specify --instance option as a PVQL object.");
$self->{output}->option_exit();
}
2018-11-28 17:37:34 +01:00
$self->{pvql_timeframe} = defined($self->{option_results}->{timeframe}) ? $self->{option_results}->{timeframe} : 900;
}
sub manage_selection {
my ($self, %options) = @_;
my $instance_label = $self->{option_results}->{instance};
$instance_label =~ s/\./ /g;
$instance_label =~ s/(\w+)/\u\L$1/g;
$self->{instances} = {};
my $apps;
if ($self->{option_results}->{instance} =~ /application/) {
my $results = $options{custom}->get_endpoint(url_path => '/get-configuration');
$apps = $results->{applications};
}
my $results = $options{custom}->query_range(
query => 'user.experience',
instance => $self->{option_results}->{instance},
top => $self->{option_results}->{top},
filter => $self->{option_results}->{filter},
from => $self->{option_results}->{from},
timeframe => $self->{pvql_timeframe},
);
foreach my $result (@{$results}) {
next if (!defined(${$result->{key}}[0]));
my $instance;
$instance = ${$result->{key}}[0]->{value} if (defined(${$result->{key}}[0]->{value}));
$instance = ${$result->{key}}[0]->{status} if (defined(${$result->{key}}[0]->{status}));
$self->{instances}->{$instance}->{key} = $instance;
2020-05-26 09:26:26 +02:00
$self->{instances}->{$instance}->{key} = $apps->{$instance}->{name} if (defined($apps->{$instance}->{name}) && $self->{option_results}->{instance} =~ /application/);
2018-11-28 17:37:34 +01:00
$self->{instances}->{$instance}->{user_experience} = (defined(${$result->{values}}[0]->{value})) ? ${$result->{values}}[0]->{value} : 0;
$self->{instances}->{$instance}->{instance_label} = $instance_label;
}
if (scalar(keys %{$self->{instances}}) <= 0) {
$self->{output}->add_option_msg(short_msg => "No instances or results found.");
$self->{output}->option_exit();
}
}
1;
__END__
=head1 MODE
Check instances connection metrics.
=over 8
=item B<--instance>
Filter on a specific instance (Must be a PVQL object, Default: 'layer')
(Object 'application' will be mapped with applications name)
=item B<--filter>
Add a PVQL filter (Example: --filter='application = "mysql"')
=item B<--from>
Add a PVQL from clause to filter on a specific layer (Example: --from='tcp')
=item B<--top>
Only search for the top X results.
=item B<--warning-time>
Threshold warning (s).
=item B<--critical-time>
Threshold critical (s).
=back
=cut