summaryrefslogtreecommitdiffstats
path: root/contrib/munin/accounts.py
blob: 4215f68dc3058c28e2f6e71deebcbf0c60687226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import sys
from account import *

if __name__ == "__main__":

    if len(sys.argv) > 1 and sys.argv[1] == 'config':
        print('graph_title Splinux')
        print('graph_vlabel Amount')
        print('accounts.label Accounts')
    else:
        service = AccountService(LDAP_HOST, LDAP_BASE_DN,SERVICES)
        accounts = service.find(LDAP_ADMIN_USER, LDAP_ADMIN_PASS)

        print('accounts.value %s' % len(accounts))