- 重要な情報
- はじめに
- 用語集
- エージェント
- インテグレーション
- OpenTelemetry
- 開発者
- API
- CoScreen
- アプリ内
- インフラストラクチャー
- アプリケーションパフォーマンス
- 継続的インテグレーション
- ログ管理
- セキュリティ
- UX モニタリング
- 管理
Live Processes is available in Datadog Agent version 5.16.0 and above. See the instructions for standard Agent installation for platform-specific details.
Note: Live Processes is not available for the source install method of the Agent.
Once the Datadog Agent is installed, enable Live Processes collection by editing the configuration file at:
/etc/dd-agent/datadog.conf
and adding the following line to the [Main]
section:
process_agent_enabled: true
After configuration is complete, restart the Agent.
Note: To collect container information in the standard install, the dd-agent
user needs to have permissions to access docker.sock
.
Update to Datadog Agent image version 5.16.0 or above:
$ docker pull gcr.io/datadoghq/docker-dd-agent
Follow the instructions for docker-dd-agent, passing in the following attributes, in addition to any other custom settings as appropriate:
-v /etc/passwd:/etc/passwd:ro
-e DD_PROCESS_AGENT_ENABLED=true
In the dd-agent.yaml manifest used to create the DaemonSet, add the following environment variables, volume mount, and volume:
env:
- name: DD_PROCESS_AGENT_ENABLED
value: "true"
volumeMounts:
- name: passwd
mountPath: /etc/passwd
readOnly: true
volumes:
- hostPath:
path: /etc/passwd
name: passwd
See the standard DaemonSet installation and the docker-dd-agent information pages for further documentation.