Your security team wants to run an RQL query to investigate network traffic anomalies where outbound traffic is flowing to known malicious IP addresses. Which RQL query type should be used?
Trap 1: event from cloud.audit where operation = 'NetworkFlow'
Cloud audit logs track control plane API calls, not network flow data.
Trap 2: identity from cloud.user where suspicious = true
Identity RQL queries user behaviors and permissions, not network sessions.
- A
event from cloud.audit where operation = 'NetworkFlow'
Why wrong: Cloud audit logs track control plane API calls, not network flow data.
- B
identity from cloud.user where suspicious = true
Why wrong: Identity RQL queries user behaviors and permissions, not network sessions.
- C
network from vpc.flow where dest.ip IN (fx.threat.ip)
Network flow RQL queries evaluate VPC flow logs and can correlate traffic against threat intelligence lists (fx.threat.ip).
- D
config from cloud.resource where cloud.type = 'aws' and api.name = 'aws-vpc'
Config queries analyze resource settings, not live network traffic flows.