"Container Start" data component captures events related to the activation or invocation of a container within a containerized environment. This includes starting a previously stopped container, restarting an existing container, or initializing a container for runtime. Monitoring these activities is critical for identifying unauthorized or unexpected container activations, which may indicate potential adversarial activity or misconfigurations. Examples:
docker start <container_name>, docker restart <container_name>This data component can be collected through the following measures:
| Name | Channel |
|---|---|
| containerd:runtime | CRI CreateContainer/StartContainer with privileged=true OR added capabilities OR host* namespaces |
| docker:events | exec_create: docker exec events targeting running containers from non-CI sources |
| docker:events | start |
| kubernetes:events | start: ContainerStarted or Pulling image → Started container |