mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-29 16:45:04 +02:00
enh(apc): add uptime mode + overload ntp mode (#2969)
This commit is contained in:
parent
69bc3dd7f9
commit
c4fcf5566e
75
centreon-plugins/hardware/ats/apc/snmp/mode/ntp.pm
Normal file
75
centreon-plugins/hardware/ats/apc/snmp/mode/ntp.pm
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#
|
||||||
|
# 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 hardware::ats::apc::snmp::mode::ntp;
|
||||||
|
|
||||||
|
use base qw(snmp_standard::mode::ntp);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Date::Parse;
|
||||||
|
|
||||||
|
sub get_target_time {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
my $oid_mconfigClockDate = '.1.3.6.1.4.1.318.2.1.6.1.0';
|
||||||
|
my $oid_mconfigClockTime = '.1.3.6.1.4.1.318.2.1.6.2.0';
|
||||||
|
my $snmp_result = $options{snmp}->get_leef(oids => [ $oid_mconfigClockDate, $oid_mconfigClockTime ], nothing_quit => 1);
|
||||||
|
|
||||||
|
my $epoch = Date::Parse::str2time($snmp_result->{$oid_mconfigClockDate} . ' ' . $snmp_result->{$oid_mconfigClockTime});
|
||||||
|
return $self->get_from_epoch(date => $epoch);
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check time offset of server with ntp server. Use local time if ntp-host option is not set.
|
||||||
|
SNMP gives a date with second precision (no milliseconds). Time precision is not very accurate.
|
||||||
|
Use threshold with (+-) 2 seconds offset (minimum).
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--warning-offset>
|
||||||
|
|
||||||
|
Time offset warning threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--critical-offset>
|
||||||
|
|
||||||
|
Time offset critical Threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--ntp-hostname>
|
||||||
|
|
||||||
|
Set the ntp hostname (if not set, localtime is used).
|
||||||
|
|
||||||
|
=item B<--ntp-port>
|
||||||
|
|
||||||
|
Set the ntp port (Default: 123).
|
||||||
|
|
||||||
|
=item B<--timezone>
|
||||||
|
|
||||||
|
Set the timezone of distant server. For Windows, you need to set it.
|
||||||
|
Can use format: 'Europe/London' or '+0100'.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
@ -30,11 +30,13 @@ sub new {
|
|||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$self->{version} = '0.1';
|
$self->{version} = '0.1';
|
||||||
%{$self->{modes}} = (
|
$self->{modes} = {
|
||||||
'device-status' => 'hardware::ats::apc::snmp::mode::devicestatus',
|
'device-status' => 'hardware::ats::apc::snmp::mode::devicestatus',
|
||||||
'input-lines' => 'hardware::ats::apc::snmp::mode::inputlines',
|
'input-lines' => 'hardware::ats::apc::snmp::mode::inputlines',
|
||||||
'output-lines' => 'hardware::ats::apc::snmp::mode::outputlines',
|
'output-lines' => 'hardware::ats::apc::snmp::mode::outputlines',
|
||||||
);
|
'time' => 'hardware::ats::apc::snmp::mode::ntp',
|
||||||
|
'uptime' => 'snmp_standard::mode::uptime'
|
||||||
|
};
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
75
centreon-plugins/hardware/pdu/apc/snmp/mode/ntp.pm
Normal file
75
centreon-plugins/hardware/pdu/apc/snmp/mode/ntp.pm
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#
|
||||||
|
# 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 hardware::pdu::apc::snmp::mode::ntp;
|
||||||
|
|
||||||
|
use base qw(snmp_standard::mode::ntp);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Date::Parse;
|
||||||
|
|
||||||
|
sub get_target_time {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
my $oid_mconfigClockDate = '.1.3.6.1.4.1.318.2.1.6.1.0';
|
||||||
|
my $oid_mconfigClockTime = '.1.3.6.1.4.1.318.2.1.6.2.0';
|
||||||
|
my $snmp_result = $options{snmp}->get_leef(oids => [ $oid_mconfigClockDate, $oid_mconfigClockTime ], nothing_quit => 1);
|
||||||
|
|
||||||
|
my $epoch = Date::Parse::str2time($snmp_result->{$oid_mconfigClockDate} . ' ' . $snmp_result->{$oid_mconfigClockTime});
|
||||||
|
return $self->get_from_epoch(date => $epoch);
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check time offset of server with ntp server. Use local time if ntp-host option is not set.
|
||||||
|
SNMP gives a date with second precision (no milliseconds). Time precision is not very accurate.
|
||||||
|
Use threshold with (+-) 2 seconds offset (minimum).
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--warning-offset>
|
||||||
|
|
||||||
|
Time offset warning threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--critical-offset>
|
||||||
|
|
||||||
|
Time offset critical Threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--ntp-hostname>
|
||||||
|
|
||||||
|
Set the ntp hostname (if not set, localtime is used).
|
||||||
|
|
||||||
|
=item B<--ntp-port>
|
||||||
|
|
||||||
|
Set the ntp port (Default: 123).
|
||||||
|
|
||||||
|
=item B<--timezone>
|
||||||
|
|
||||||
|
Set the timezone of distant server. For Windows, you need to set it.
|
||||||
|
Can use format: 'Europe/London' or '+0100'.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
@ -30,11 +30,13 @@ sub new {
|
|||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$self->{version} = '0.1';
|
$self->{version} = '0.1';
|
||||||
%{$self->{modes}} = (
|
$self->{modes} = {
|
||||||
'load' => 'hardware::pdu::apc::snmp::mode::load',
|
'load' => 'hardware::pdu::apc::snmp::mode::load',
|
||||||
'hardware' => 'hardware::pdu::apc::snmp::mode::hardware',
|
'hardware' => 'hardware::pdu::apc::snmp::mode::hardware',
|
||||||
'outlet' => 'hardware::pdu::apc::snmp::mode::outlet',
|
'outlet' => 'hardware::pdu::apc::snmp::mode::outlet',
|
||||||
);
|
'time' => 'hardware::pdu::apc::snmp::mode::ntp',
|
||||||
|
'uptime' => 'snmp_standard::mode::uptime'
|
||||||
|
};
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
75
centreon-plugins/hardware/ups/apc/snmp/mode/ntp.pm
Normal file
75
centreon-plugins/hardware/ups/apc/snmp/mode/ntp.pm
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#
|
||||||
|
# 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 hardware::ups::apc::snmp::mode::ntp;
|
||||||
|
|
||||||
|
use base qw(snmp_standard::mode::ntp);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Date::Parse;
|
||||||
|
|
||||||
|
sub get_target_time {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
my $oid_mconfigClockDate = '.1.3.6.1.4.1.318.2.1.6.1.0';
|
||||||
|
my $oid_mconfigClockTime = '.1.3.6.1.4.1.318.2.1.6.2.0';
|
||||||
|
my $snmp_result = $options{snmp}->get_leef(oids => [ $oid_mconfigClockDate, $oid_mconfigClockTime ], nothing_quit => 1);
|
||||||
|
|
||||||
|
my $epoch = Date::Parse::str2time($snmp_result->{$oid_mconfigClockDate} . ' ' . $snmp_result->{$oid_mconfigClockTime});
|
||||||
|
return $self->get_from_epoch(date => $epoch);
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check time offset of server with ntp server. Use local time if ntp-host option is not set.
|
||||||
|
SNMP gives a date with second precision (no milliseconds). Time precision is not very accurate.
|
||||||
|
Use threshold with (+-) 2 seconds offset (minimum).
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--warning-offset>
|
||||||
|
|
||||||
|
Time offset warning threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--critical-offset>
|
||||||
|
|
||||||
|
Time offset critical Threshold (in seconds).
|
||||||
|
|
||||||
|
=item B<--ntp-hostname>
|
||||||
|
|
||||||
|
Set the ntp hostname (if not set, localtime is used).
|
||||||
|
|
||||||
|
=item B<--ntp-port>
|
||||||
|
|
||||||
|
Set the ntp port (Default: 123).
|
||||||
|
|
||||||
|
=item B<--timezone>
|
||||||
|
|
||||||
|
Set the timezone of distant server. For Windows, you need to set it.
|
||||||
|
Can use format: 'Europe/London' or '+0100'.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
@ -28,12 +28,14 @@ sub new {
|
|||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$self->{version} = '0.1';
|
$self->{version} = '0.1';
|
||||||
%{$self->{modes}} = (
|
$self->{modes} = {
|
||||||
'battery-status' => 'hardware::ups::apc::snmp::mode::batterystatus',
|
'battery-status' => 'hardware::ups::apc::snmp::mode::batterystatus',
|
||||||
'input-lines' => 'hardware::ups::apc::snmp::mode::inputlines',
|
'input-lines' => 'hardware::ups::apc::snmp::mode::inputlines',
|
||||||
'output-lines' => 'hardware::ups::apc::snmp::mode::outputlines',
|
'output-lines' => 'hardware::ups::apc::snmp::mode::outputlines',
|
||||||
'sensors' => 'hardware::ups::apc::snmp::mode::sensors',
|
'sensors' => 'hardware::ups::apc::snmp::mode::sensors',
|
||||||
);
|
'time' => 'hardware::ups::apc::snmp::mode::ntp',
|
||||||
|
'uptime' => 'snmp_standard::mode::uptime'
|
||||||
|
};
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user