openldap.conf 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # netdata python.d.plugin configuration for openldap
  2. #
  3. # This file is in YaML format. Generally the format is:
  4. #
  5. # name: value
  6. #
  7. # There are 2 sections:
  8. # - global variables
  9. # - one or more JOBS
  10. #
  11. # JOBS allow you to collect values from multiple sources.
  12. # Each source will have its own set of charts.
  13. #
  14. # JOB parameters have to be indented (using spaces only, example below).
  15. # ----------------------------------------------------------------------
  16. # Global Variables
  17. # These variables set the defaults for all JOBs, however each JOB
  18. # may define its own, overriding the defaults.
  19. # update_every sets the default data collection frequency.
  20. # If unset, the python.d.plugin default is used.
  21. # postfix is slow, so once every 10 seconds
  22. update_every: 10
  23. # priority controls the order of charts at the netdata dashboard.
  24. # Lower numbers move the charts towards the top of the page.
  25. # If unset, the default for python.d.plugin is used.
  26. # priority: 60000
  27. # penalty indicates whether to apply penalty to update_every in case of failures.
  28. # Penalty will increase every 5 failed updates in a row. Maximum penalty is 10 minutes.
  29. # penalty: yes
  30. # autodetection_retry sets the job re-check interval in seconds.
  31. # The job is not deleted if check fails.
  32. # Attempts to start the job are made once every autodetection_retry.
  33. # This feature is disabled by default.
  34. # autodetection_retry: 0
  35. # ----------------------------------------------------------------------
  36. # JOBS (data collection sources)
  37. #
  38. # The default JOBS share the same *name*. JOBS with the same name
  39. # are mutually exclusive. Only one of them will be allowed running at
  40. # any time. This allows autodetection to try several alternatives and
  41. # pick the one that works.
  42. #
  43. # Any number of jobs is supported.
  44. #
  45. # All python.d.plugin JOBS (for all its modules) support a set of
  46. # predefined parameters. These are:
  47. #
  48. # job_name:
  49. # name: myname # the JOB's name as it will appear at the
  50. # # dashboard (by default is the job_name)
  51. # # JOBs sharing a name are mutually exclusive
  52. # update_every: 1 # the JOB's data collection frequency
  53. # priority: 60000 # the JOB's order on the dashboard
  54. # penalty: yes # the JOB's penalty
  55. # autodetection_retry: 0 # the JOB's re-check interval in seconds
  56. #
  57. # ----------------------------------------------------------------------
  58. # OPENLDAP EXTRA PARAMETERS
  59. # Set here your LDAP connection settings
  60. #username : "cn=admin,dc=example,dc=com" # The bind user with right to access monitor statistics
  61. #password : "yourpass" # The password for the binded user
  62. #server : 'localhost' # The listening address of the LDAP server. In case of TLS, use the hostname which the certificate is published for.
  63. #port : 389 # The listening port of the LDAP server. Change to 636 port in case of TLS connection
  64. #use_tls : False # Make True if a TLS connection is used over ldaps://
  65. #use_start_tls: False # Make True if a TLS connection is used over ldap://
  66. #cert_check : True # False if you want to ignore certificate check
  67. #timeout : 1 # Seconds to timeout if no connection exi