OpenLDAP インテグレーションを使用すると、OpenLDAP サーバーの cn=Monitor
バックエンドからメトリクスを取得できます。
OpenLDAP インテグレーションは Agent とパッケージ化されています。OpenLDAP メトリクスの収集を開始するには、以下を実行します。
OpenLDAP サーバーで cn=Monitor
バックエンドを構成します。 OpenLDAP サーバーに Agent をインストール します。 サーバーで cn=Monitor
バックエンドが構成されていない場合は、以下の手順に従ってください。
インストールでモニターが有効化されていることを確認します。
sudo ldapsearch -Y EXTERNAL -H ldapi:/// -b cn = module{ 0} ,cn= config
Copy
olcModuleLoad: back_monitor.la
という行が表示される場合は、モニターはすでに有効化されています。手順 3 に進んでください。
サーバーでモニタリングを有効にします。
cat <<EOF | sudo ldapmodify -Y EXTERNAL -H ldapi:///
dn: cn=module{0},cn=config
changetype: modify
add: olcModuleLoad
olcModuleLoad: back_monitor.la
EOF
slappasswd
で暗号化パスワードを作成します。
新しいユーザーを追加します。
cat <<EOF | ldapadd -H ldapi:/// -D <YOUR BIND DN HERE> -w <YOUR PASSWORD HERE>
dn: <USER_DISTINGUISHED_NAME>
objectClass: simpleSecurityObject
objectClass: organizationalRole
cn: <COMMON_NAME_OF_THE_NEW_USER>
description: LDAP monitor
userPassword:<PASSWORD>
EOF
モニターデータベースを構成します。
cat <<EOF | sudo ldapadd -Y EXTERNAL -H ldapi:///
dn: olcDatabase=Monitor,cn=config
objectClass: olcDatabaseConfig
objectClass: olcMonitorConfig
olcDatabase: Monitor
olcAccess: to dn.subtree='cn=Monitor' by dn.base='<USER_DISTINGUISHED_NAME>' read by * none
EOF
ホストで実行中の Agent に対してこのチェックを構成するには
メトリクスの収集 Agent のコンフィギュレーションディレクトリのルートにある conf.d
フォルダーの openldap.d/conf.yaml
を編集します。使用可能なすべてのコンフィギュレーションオプションについては、サンプル openldap.d/conf.yaml を参照してください。
init_config :
instances :
## @param url - string - required
## Full URL of your ldap server. Use `ldaps` or `ldap` as the scheme to
## use TLS or not, or `ldapi` to connect to a UNIX socket.
#
- url : ldaps://localhost:636
## @param username - string - optional
## The DN of the user that can read the monitor database.
#
username : "<USER_DISTINGUISHED_NAME>"
## @param password - string - optional
## Password associated with `username`
#
password : "<PASSWORD>"
Copy
Agent を再起動します 。
ログ収集 Agent バージョン 6.0 以降で利用可能
Datadog Agent で、ログの収集はデフォルトで無効になっています。以下のように、datadog.yaml
ファイルでこれを有効にします。
OpenLDAP のログの収集を開始するには、次のコンフィギュレーションブロックを openldap.d/conf.yaml
ファイルに追加します。
logs :
- type : file
path : /var/log/slapd.log
source : openldap
service : "<SERVICE_NAME>"
Copy
path
パラメーターと service
パラメーターの値を変更し、環境に合わせて構成してください。使用可能なすべてのコンフィギュレーションオプションの詳細については、サンプル openldap.d/conf.yaml を参照してください。
Agent を再起動します 。
メトリクスの収集 コンテナ環境の場合は、オートディスカバリーのインテグレーションテンプレート のガイドを参照して、次のパラメーターを適用してください。
パラメーター 値 <INTEGRATION_NAME>
openldap
<INIT_CONFIG>
空白または {}
<INSTANCE_CONFIG>
{"url":"ldaps://%%host%%:636","username":"<ユーザーの識別名>","password":"<パスワード>"}
ログ収集 Agent バージョン 6.0 以降で利用可能
Datadog Agent で、ログの収集はデフォルトで無効になっています。有効にする方法については、Kubernetes ログ収集 を参照してください。
パラメーター 値 <LOG_CONFIG>
{"source": "openldap", "service": "<サービス名>"}
Agent の status サブコマンドを実行 し、Checks セクションで openldap
を探します。
このチェックは、すべての主要プラットフォームと互換性があります。
openldap.bind_time (gauge)Time it takes the check to bind to the OpenLDAP serverShown as second openldap.connections.current (gauge)Current number of active connectionsShown as connection openldap.connections.max_file_descriptors (gauge)Maximum number of file descriptorsShown as file openldap.connections.total (count)Total number of connections since the server startedShown as connection openldap.operations.completed (count)Number of operations completed by the server tagged by operation typeShown as operation openldap.operations.completed.total (count)Total number of operations completed by the serverShown as operation openldap.operations.initiated (count)Number of operations initiated by the server tagged by operation typeShown as operation openldap.operations.initiated.total (count)Total number of operations initiated by the serverShown as operation openldap.query.duration (gauge)Time it takes to execute the queryShown as second openldap.query.entries (gauge)Number of entries returned by the queryShown as entry openldap.statistics.bytes (count)Number of bytes sent by the serverShown as byte openldap.statistics.entries (count)Number of entries sent by the serverShown as entry openldap.statistics.pdu (count)Number of PDU packets sent by the serverShown as packet openldap.statistics.referrals (count)Number of referrals sent by the serverShown as message openldap.threads (gauge)Number of threads started by the server tagged by stateShown as thread openldap.threads.max (gauge)Maximum number of threads as configuredShown as thread openldap.threads.max_pending (gauge)Maximum number of pending threadsShown as thread openldap.uptime (gauge)Uptime of the serverShown as second openldap.waiter.read (gauge)Number of current read waitersShown as worker openldap.waiter.write (gauge)Number of current writer waitersShown as worker
openldap チェックには、イベントは含まれません。
openldap.can_connect Returns CRITICAL
if the integration cannot bind to the monitored OpenLDAP server, OK
otherwise.Statuses: ok, critical
ご不明な点は、Datadog のサポートチーム までお問合せください。