summaryrefslogtreecommitdiffstats
path: root/roles/common/files/usr/local/share/munin/plugins/slapd2
blob: 68c482b08630fe182cb5eb7996f8cf5ac0d684f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/usr/bin/perl -w

# Munin plugin for monitoring slapd.  Based on Bjorn Ruberg's slapd_
# plugin.  The main difference is that in our case munin SASL-binds
# against the LDAP directory, and a single connection is used to collect
# all statistics.
# Copyright Bjorn Ruberg <bjorn@ruberg.no>
# Copyright © 2015 Guilhem Moulin <guilhem@fripost.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

use warnings;
use strict;

use Net::LDAP ();
use Net::LDAP::Util ();
use Authen::SASL ();

# The possible measurements
my %OPS =
    ('statistics_bytes'
     => {
         'search' => "cn=Bytes,cn=Statistics",
         'desc'   => "The number of bytes sent by the LDAP server.",
         'vlabel' => 'Bytes per ${graph_period}',
         'label'  => 'Bytes',
         'title'  => "Number of bytes sent",
         'info'   => "The graph shows the number of bytes sent",
	 'scope'  => "base"
         },
     'statistics_pdu'
     => {
         'search' => "cn=PDU,cn=Statistics",
         'desc'   => "The number of PDUs sent by the LDAP server.",
         'vlabel' => 'PDUs per ${graph_period}',
         'label'  => 'PDUs',
         'title'  => "Number of PDUs sent",
         'info'   => "The graph shows the number of PDUs sent",
	 'scope'  => "base"
         },
     # Referrals
     'statistics_referrals' 
     => {
         'search' => "cn=Referrals,cn=Statistics",
         'desc'   => "The number of Referrals sent by the LDAP server.",
         'vlabel' => 'Referrals per ${graph_period}',
         'label'  => 'Referrals',
         'title'  => "Number of LDAP Referrals",
         'info'   => "The graph shows the number of referrals sent",
	 'scope'  => "base"
         },
     # Entries
     'statistics_entries'
     => {
         'search' => "cn=Entries,cn=Statistics",
         'desc'   => "The number of Entries sent by the LDAP server.",
         'vlabel' => 'Entries per ${graph_period}',
         'label'  => 'Entries',
         'title'  => "Number of LDAP Entries",
         'info'   => "The graph shows the number of entries sent",
	 'scope'  => "base"
         },
     # Only read Total
     'connections' 
     => {
         'search' => 'cn=Total,cn=Connections',
         'desc'   => 'The number of connections',
         'label'  => 'Connections',
         'vlabel' => 'Connections per ${graph_period}',
         'title'  => 'Number of Connections',
         'info'   => 'Number of connections to the LDAP server',
         'scope'  => "base"
         },
     # dn: cn=Write,cn=Waiters,cn=Monitor
     # dn: cn=Read,cn=Waiters,cn=Monitor
     'waiters' 
     => {
         'search' => 'cn=Waiters',
         'filter' => '(|(cn=Write)(cn=Read))',
         'desc'   => "The current number of Waiters",
         'label2' => {'write' => 'Write',
                      'read'  => 'Read'},
         'vlabel' => "Waiters",
         'title'  => "Number of Waiters",
         'info'   => "The graph shows the number of Waiters"
         },
     'operations'
     => {
         'search' => "cn=Operations",
         'desc'   => "Operations",
         'vlabel' => 'Operations per ${graph_period}',
         'label'  => 'Operations',
         'title'  => "Operations",
         'info'   => "Number of completed LDAP operations"
         },
     'operations_diff'
     => {
         'search' => "cn=Operations",
         'desc'   => "Operations deviance",
         'vlabel' => 'Deviance',
         'label'  => 'Deviance',
         'title'  => "Operations deviance",
         'info'   => "Deviance between Initiated and Completed ops"
       }
     );


my $ldap = Net::LDAP::->new( 'ldapi://' );
my $sasl = Authen::SASL::->new( mechanism => 'EXTERNAL' );
my $mesg = $ldap->bind( undef, sasl => $sasl );
die "LDAP error code $mesg->code: $mesg->error\n",
    Net::LDAP::Util::ldap_error_text($mesg), "\n"
    if $mesg->code;
my $basedn = 'cn=Monitor';


if (@ARGV and $ARGV[0] eq 'config') {
    foreach my $action (keys %OPS) {
        print "multigraph slapd2_$action\n";
        print "graph_title $OPS{$action}->{title}\n";
        print "graph_info $OPS{$action}->{info}\n";
        print "graph_vlabel $OPS{$action}->{vlabel}\n";
        print "graph_args --base 1000 -l 0\n";
        print "graph_scale no\n";
        print "graph_category OpenLDAP\n";

        if ($OPS{$action}->{label2}) {
            foreach my $key (keys %{$OPS{$action}->{label2}}) {
              my $name = $action . "_" . $key;
              print "$name.label $OPS{$action}->{label2}->{$key}\n";
              print "$name.type GAUGE\n";
            }
        } elsif ($action =~ /^operations(?:_diff)?$/) {
            my $mesg = $ldap->search ( base   => "$OPS{$action}->{search},$basedn"
                                     , scope  => 'one'
                                     , deref  => 'never'
                                     , filter => '(objectclass=*)'
                                     , attrs  => [ 'monitorOpInitiated'
                                                 , 'monitorOpCompleted'
                                                 , 'cn' ]
                                     );
            die "LDAP error code $mesg->code: $mesg->error\n",
                Net::LDAP::Util::ldap_error_text($mesg), "\n"
                if $mesg->code;
    
            while (my $e = $mesg->pop_entry) {
                my $cn = $e->get_value('cn');
                my $name = $action .'_'. lc $cn;
                print "$name.label $cn\n";
                print "$name.type DERIVE\n";
                print "$name.min 0\n";
            
                if ($action eq "operations") {
                    print "$name.info The number of $cn operations\n";
                } else {
                    print "$name.info The difference between Initiated ";
                    print "and Completed operations (should be 0)\n";
                    print "$name.warning 1\n";
                }            
            }
        } else {
            print "$action.label $OPS{$action}->{label}\n";
            print "$action.type DERIVE\n";
            print "$action.min 0\n";
        }
    }
}

else {
    foreach my $action (keys %OPS) {
        my $searchdn = "$OPS{$action}->{search},$basedn";
        my @searchattrs;

        if ($action =~ /^operations(_diff)?$/) {
            # We look for different parameters in Operations branch
            @searchattrs = ('monitorOpInitiated', 'monitorOpCompleted', 'cn');
        } else {
            @searchattrs = ('monitorCounter', 'cn');
        }

        my $mesg = $ldap->search ( base   => "$OPS{$action}->{search},$basedn"
                                 , scope  => $OPS{$action}->{scope} // 'one'
                                 , deref  => 'never'
                                 , filter => $OPS{$action}->{filter} // '(objectclass=*)'
                                 , attrs  => \@searchattrs
                                 );
        die "LDAP error code $mesg->code: $mesg->error\n",
            Net::LDAP::Util::ldap_error_text($mesg), "\n"
            if $mesg->code;
    
        print "multigraph slapd2_$action\n";
        while (my $e = $mesg->pop_entry) {
            my $cn = $e->get_value('cn');
            if ($action =~ /operations(_diff)?$/) {
        	    if ($1) {
        	        my $opsInit = $e->get_value('monitorOpInitiated'); 
        	        my $opsComp = $e->get_value('monitorOpCompleted');
        	        printf "operations_diff_%s.value %d\n", lc $cn, ($opsInit - $opsComp);
        	} else {
        	    printf "operations_%s.value %d\n", lc $cn, $e->get_value('monitorOpCompleted');
        	}
            } else {
        	    # Hotfix, must do for now
                printf "%s.value %d\n",
                    (($action =~ /_/ or $action eq 'connections') ? lc $action : lc "${action}_${cn}"),
                    $e->get_value('monitorCounter');
            }
        }
    }
}

#$mesg = $ldap->search( base   => 'cn=Monitor'
#                     , scope  => 'base'
#                     , deref  => 'never'
#                     , attrs  => 

$ldap->unbind();


#$mesg =
#    $ldap->search (
#                   base   => $searchdn,
#                   scope  => $scope,
#                   filter => $filter,
#                   attrs  => $searchattrs,
#                   );
#
#$mesg->code && die $mesg->error;
#
#my $max = $mesg->count;
#
#for (my $i = 0 ; $i < $max ; $i++) {
#    my $entry = $mesg->entry ($i);
#    my $cn = $entry->get_value('cn');
#    if ($action =~ /operations(_diff)?$/) {
#	if ($1) {
#	    my $opsInit =
#		$entry->get_value('monitorOpInitiated'); 
#	    my $opsComp =
#		$entry->get_value('monitorOpCompleted');
#	    print lc ("operations_diff_${cn}.value ");
#	    print ($opsInit - $opsComp);
#	    print "\n";
#	} else {
#	    print lc ("operations_${cn}.value ");
#	    print $entry->get_value('monitorOpCompleted'),
#	    "\n";
#	}
#    } else {
#	# Hotfix, must do for now
#	if ($action =~ /_/ || $action eq 'connections') {
#	    print lc ("${action}.value ");
#	} else {
#	    print lc ("${action}_${cn}.value ");
#	}
#	print $entry->get_value('monitorCounter'), "\n";
#    }
#}
#$ldap->unbind;