- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Use the following instructions to enable Misconfigurations, Threat Detection, and Vulnerability Management.
7.46
or later.Add the following environment variables to your datadog-agent
container definition:
{
"containerDefinitions": [
{
"name": "datadog-agent",
...
"mountPoints": [
{
"sourceVolume": "docker_sock",
"containerPath": "/var/run/docker.sock",
"readOnly": true
},
{
"sourceVolume": "proc",
"containerPath": "/host/proc/",
"readOnly": true
},
{
"sourceVolume": "cgroup",
"containerPath": "/host/sys/fs/cgroup",
"readOnly": true
},
{
"sourceVolume": "passwd",
"containerPath": "/etc/passwd",
"readOnly": true
},
{
"sourceVolume": "os_release",
"containerPath": "/host/etc/os-release",
"readOnly": true
},
{
"sourceVolume": "kernel_debug",
"containerPath": "/sys/kernel/debug"
},
{
"sourceVolume": "root",
"containerPath": "/host/root",
"readOnly": true
}
],
...
"environment": [
...
{
"name": "DD_COMPLIANCE_CONFIG_ENABLED",
"value": "true"
},
{
"name": "DD_COMPLIANCE_CONFIG_HOST_BENCHMARKS_ENABLED",
"value": "true"
},
{
"name": "DD_RUNTIME_SECURITY_CONFIG_ENABLED",
"value": "true"
},
{
"name": "DD_SYSTEM_PROBE_ENABLED",
"value": "true"
},
{
"name": "DD_RUNTIME_SECURITY_CONFIG_REMOTE_CONFIGURATION_ENABLED",
"value": "true"
},
{
"name": "DD_SBOM_ENABLED",
"value": "true"
},
{
"name": "DD_SBOM_CONTAINER_IMAGE_ENABLED",
"value": "true"
},
{
"name": "DD_CONTAINER_IMAGE_ENABLED",
"value": "true"
},
{
"name": "DD_SBOM_HOST_ENABLED",
"value": "true"
}
]
}
],
...
"volumes": [
{
"name": "docker_sock",
"host": {
"sourcePath": "/var/run/docker.sock"
}
},
{
"name": "proc",
"host": {
"sourcePath": "/proc/"
}
},
{
"name": "cgroup",
"host": {
"sourcePath": "/sys/fs/cgroup/"
}
},
{
"name": "passwd",
"host": {
"sourcePath": "/etc/passwd"
}
},
{
"name": "os_release",
"host": {
"sourcePath": "/etc/os-release"
}
},
{
"name": "kernel_debug",
"host": {
"sourcePath": "/sys/kernel/debug"
}
},
{
"name": "root",
"host": {
"sourcePath": "/"
}
}
],
"linuxParameters": {
"capabilities": {
"add": [
"SYS_ADMIN",
"SYS_RESOURCE",
"SYS_PTRACE",
"NET_ADMIN",
"NET_BROADCAST",
"NET_RAW",
"IPC_LOCK",
"CHOWN"
]
}
},
"requiresCompatibilities": [
"EC2"
]
}
If the Agent fails to extract the SBOM from the container image, increase the Agent memory in the container definition:
{
"containerDefinitions": [
{
"name": "datadog-agent",
"memory": 256,
...
}
]
...
}