Skip to content

Container Alerts

The Container Alerts service collection provides operations for searching and reading container alert data using Falcon Query Language (FQL) filters.

LanguageLast Update
Pythonv1.4.8
PowerShellv2.2.9
Gov0.20.0
TypeScriptv0.6.0
Rustv0.7.0
Rubyv1.2.0
OperationDescription
ReadContainerAlertsCountBySeverity
read_counts_by_severity
Get Container Alert counts by severity.
ReadContainerAlertsCount
read_counts
Search Container Alerts by the provided search criteria.
SearchAndReadContainerAlerts
search_and_read
Search Container Alerts by the provided search criteria.

Get Container Alert counts by severity.

GET /container-security/aggregates/container-alerts/count-by-severity/v1
Scope Falcon Container Image: READ Consumes · Produces application/json
PEP 8 read_counts_by_severity
NameTypeData typeDescription
filterquerystringSearch Container Alerts using a query in Falcon Query Language (FQL). Supported filters: cid, container_id, last_seen
parametersquerydictionaryFull query string parameters payload in JSON format. Not required if using other keywords.
from falconpy import ContainerAlerts
falcon = ContainerAlerts(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.read_counts_by_severity(filter="string")
print(response)

Search Container Alerts by the provided search criteria

GET /container-security/aggregates/container-alerts/count/v1
Scope Falcon Container Image: READ Consumes · Produces application/json
PEP 8 read_counts
NameTypeData typeDescription
filterquerystringSearch Container Alerts using a query in Falcon Query Language (FQL). Supported filters: cid,last_seen
parametersquerydictionaryFull query string parameters payload in JSON format. Not required if using other keywords.
from falconpy import ContainerAlerts
falcon = ContainerAlerts(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.read_counts(filter="string")
print(response)

Search Container Alerts by the provided search criteria

GET /container-security/combined/container-alerts/v1
Scope Falcon Container Image: READ Consumes · Produces application/json
PEP 8 search_and_read
NameTypeData typeDescription
filterquerystringSearch Container Alerts using a query in Falcon Query Language (FQL). Supported filters: cid,container_id,last_seen,name,severity
limitqueryintegerThe upper-bound on the number of records to retrieve. (Default: 100)
offsetqueryintegerThe offset from where to begin.
parametersquerydictionaryFull query string parameters payload in JSON format. Not required if using other keywords.
sortquerystringThe fields to sort the records on.
from falconpy import ContainerAlerts
falcon = ContainerAlerts(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.search_and_read(filter="string",
limit=integer,
offset=integer,
sort="string")
print(response)