Which TWO mechanisms are commonly used by container runtime security tools to monitor container activity? (Choose two)
Trap 1: Kubernetes persistent volume snapshotting
Volume snapshotting backs up storage data, unrelated to runtime security monitoring.
Trap 2: CoreDNS query log analysis
CoreDNS logs resolve domain name queries, not runtime container security events.
- A
eBPF (Extended Berkeley Packet Filter) programs attached to kernel tracepoints
eBPF provides high-performance, non-intrusive observation of system calls and network events.
- B
Kubernetes persistent volume snapshotting
Why wrong: Volume snapshotting backs up storage data, unrelated to runtime security monitoring.
- C
Kubernetes Horizontal Pod Autoscaler metrics collection
HPA scales replicas based on CPU/memory usage and does not monitor security runtime behavior.
- D
Linux Security Modules (LSM) such as SELinux, AppArmor, or seccomp
LSMs enforce mandatory access controls and system call filtering at the kernel level.
- E
CoreDNS query log analysis
Why wrong: CoreDNS logs resolve domain name queries, not runtime container security events.