summaryrefslogtreecommitdiffstats
path: root/lib/Smokeping/probes/EchoPingLDAP.pm
diff options
context:
space:
mode:
authorNiko Tyni <ntyni@iki.fi>2007-04-14 20:11:54 +0200
committerNiko Tyni <ntyni@iki.fi>2007-04-14 20:11:54 +0200
commitee9fe37aa2e14a2dcb7e12c773a45ac7d8033616 (patch)
tree6aead327150c8e5de773c6dafd0d658cc1002f96 /lib/Smokeping/probes/EchoPingLDAP.pm
parentb3a821582cc383947831954f9c562f8e8dddffd8 (diff)
downloadsmokeping-ee9fe37aa2e14a2dcb7e12c773a45ac7d8033616.tar.gz
smokeping-ee9fe37aa2e14a2dcb7e12c773a45ac7d8033616.tar.xz
r1048@rispa: niko | 2007-04-14 21:01:51 +0300
add echoping ldap probe
Diffstat (limited to 'lib/Smokeping/probes/EchoPingLDAP.pm')
-rw-r--r--lib/Smokeping/probes/EchoPingLDAP.pm99
1 files changed, 99 insertions, 0 deletions
diff --git a/lib/Smokeping/probes/EchoPingLDAP.pm b/lib/Smokeping/probes/EchoPingLDAP.pm
new file mode 100644
index 0000000..e5aa023
--- /dev/null
+++ b/lib/Smokeping/probes/EchoPingLDAP.pm
@@ -0,0 +1,99 @@
+package Smokeping::probes::EchoPingLDAP;
+
+=head1 301 Moved Permanently
+
+This is a Smokeping probe module. Please use the command
+
+C<smokeping -man Smokeping::probes::EchoPingLDAP>
+
+to view the documentation or the command
+
+C<smokeping -makepod Smokeping::probes::EchoPingLDAP>
+
+to generate the POD document.
+
+=cut
+
+sub pod_hash {
+ return {
+ name => <<DOC,
+Smokeping::probes::EchoPingLDAP - an echoping(1) probe for SmokePing
+DOC
+ overview => <<DOC,
+Measures LDAP roundtrip times for SmokePing with the echoping_ldap plugin.
+DOC
+ authors => <<'DOC',
+Niko Tyni <ntyni@iki.fi>
+DOC
+ notes => <<'DOC',
+The I<fill>, I<size> and I<udp> EchoPing variables are not valid.
+
+Plugins, including echoping_ldap, are available starting with echoping version 6.
+DOC
+ see_also => <<DOC,
+L<Smokeping::probes::EchoPing>,
+L<Smokeping::probes::EchoPingPlugin>
+DOC
+ }
+}
+
+use strict;
+use base qw(Smokeping::probes::EchoPingPlugin);
+use Carp;
+
+sub plugin_args {
+ my $self = shift;
+ my $target = shift;
+ my @args;
+ my $req = $target->{vars}{ldap_request};
+ push @args, "-r $req" if $req;
+
+ my $base = $target->{vars}{ldap_base};
+ push @args, "-b $base" if $base;
+
+ my $scope = $target->{vars}{ldap_scope};
+ push @args, "-s $scope" if $scope;
+
+ return @args;
+}
+
+sub ProbeDesc($) {
+ return "LDAP pings using the echoping_ldap 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} = 'ldap';
+ $h->{plugin}{_example} = '/path/to/ldap.so';
+ return $class->_makevars($h, {
+ ldap_request => {
+ _doc => <<DOC,
+The echoping_ldap '-r' option:
+the request to the LDAP server, in LDAP filter language.
+DOC
+ _example => '(objectclass=*)',
+ },
+ ldap_base => {
+ _doc => <<DOC,
+The echoping_ldap '-b' option:
+base of the search.
+DOC
+ _example => 'dc=current,dc=bugs,dc=debian,dc=org',
+ },
+ ldap_scope => {
+ _doc => <<DOC,
+The echoping_ldap '-s' option:
+scope of the search, "sub", "one" or "base".
+DOC
+ _example => 'one',
+ },
+ },
+ );
+}
+
+1;