package Smokeping::probes::EchoPingWhois; =head1 301 Moved Permanently This is a Smokeping probe module. Please use the command C to view the documentation or the command C to generate the POD document. =cut sub pod_hash { return { name => < < <<'DOC', Niko Tyni DOC notes => <<'DOC', The I, I and I EchoPing variables are not valid. Plugins, including echoping_whois, are available starting with echoping version 6. DOC see_also => <, L DOC } } use strict; use base qw(Smokeping::probes::EchoPingPlugin); use Carp; sub plugin_args { my $self = shift; my $target = shift; my @args; push @args, $target->{vars}{whois_request}; return @args; } sub ProbeDesc($) { return "whois pings using the echoping_whois plugin"; } sub targetvars { my $class = shift; my $h = $class->SUPER::targetvars; delete $h->{udp}; delete $h->{fill}; delete $h->{size}; $h->{_mandatory} = [ grep { $_ ne "plugin" } @{$h->{_mandatory}}]; $h->{plugin}{_default} = 'whois'; $h->{plugin}{_example} = '/path/to/whois.so'; return $class->_makevars($h, { _mandatory => [ 'whois_request' ], whois_request => { _doc => < 'example.org', }, }, ); } 1;