mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-27 23:54:18 +02:00
reorg(plugin)make nmap a dedicated plugin (#2834)
Co-authored-by: Thibault S <48209914+thibaults-centreon@users.noreply.github.com>
This commit is contained in:
parent
deb1b7490b
commit
b57a79404b
@ -18,13 +18,12 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
package os::linux::local::mode::discoverynmap;
|
package apps::nmap::cli::mode::discovery;
|
||||||
|
|
||||||
use base qw(centreon::plugins::mode);
|
use base qw(centreon::plugins::mode);
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use centreon::plugins::snmp;
|
|
||||||
use JSON::XS;
|
use JSON::XS;
|
||||||
use XML::Simple;
|
use XML::Simple;
|
||||||
|
|
||||||
@ -34,8 +33,8 @@ sub new {
|
|||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
$options{options}->add_options(arguments => {
|
||||||
'subnet:s' => { name => 'subnet' },
|
'subnet:s' => { name => 'subnet' },
|
||||||
'prettify' => { name => 'prettify' }
|
'prettify' => { name => 'prettify' }
|
||||||
});
|
});
|
||||||
|
|
||||||
return $self;
|
return $self;
|
50
centreon-plugins/apps/nmap/cli/plugin.pm
Normal file
50
centreon-plugins/apps/nmap/cli/plugin.pm
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
#
|
||||||
|
# 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 apps::nmap::cli::plugin;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use base qw(centreon::plugins::script_custom);
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ($class, %options) = @_;
|
||||||
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
bless $self, $class;
|
||||||
|
|
||||||
|
$self->{version} = '0.1';
|
||||||
|
$self->{modes} = {
|
||||||
|
'discovery' => 'apps::nmap::cli::mode::discovery',
|
||||||
|
};
|
||||||
|
|
||||||
|
$self->{custom_modes}->{cli} = 'centreon::plugins::script_custom::cli';
|
||||||
|
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 PLUGIN DESCRIPTION
|
||||||
|
|
||||||
|
Nmap Plugin to discover assets on your networks
|
||||||
|
|
||||||
|
=cut
|
@ -37,7 +37,6 @@ sub new {
|
|||||||
'cmd-return' => 'os::linux::local::mode::cmdreturn',
|
'cmd-return' => 'os::linux::local::mode::cmdreturn',
|
||||||
'connections' => 'os::linux::local::mode::connections',
|
'connections' => 'os::linux::local::mode::connections',
|
||||||
'directlvm-usage' => 'os::linux::local::mode::directlvmusage',
|
'directlvm-usage' => 'os::linux::local::mode::directlvmusage',
|
||||||
'discovery-nmap' => 'os::linux::local::mode::discoverynmap',
|
|
||||||
'discovery-snmp' => 'os::linux::local::mode::discoverysnmp',
|
'discovery-snmp' => 'os::linux::local::mode::discoverysnmp',
|
||||||
'diskio' => 'os::linux::local::mode::diskio',
|
'diskio' => 'os::linux::local::mode::diskio',
|
||||||
'files-size' => 'os::linux::local::mode::filessize',
|
'files-size' => 'os::linux::local::mode::filessize',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user