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.6.5
PowerShellv2.2.9
Gov0.22.0
TypeScriptv0.6.0
Rustv0.7.1
Rubyv1.4.0


OperationDescription
ReadContainerAlertsCount
read_counts
Search Container Alerts by the provided search criteria
ReadContainerAlertsCountBySeverity
read_counts_by_severity
Get Container Alerts counts by severity
SearchAndReadContainerAlerts
search_and_read
Search Container Alerts by the provided search criteria

Search Container Alerts by the provided search criteria

Method GET
Route /container-security/aggregates/container-alerts/count/v1
Scope Falcon Container Image: READ
PEP 8 read_counts
filter query · string
Search Container Alerts using a query in Falcon Query Language (FQL). Supported filters:
Available values (2)
cidlast_seen
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when 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)
[
{
"count": 0,
"label": "string"
}
]


Get Container Alerts counts by severity

Method GET
Route /container-security/aggregates/container-alerts/count-by-severity/v1
Scope Falcon Container Image: READ
PEP 8 read_counts_by_severity
filter query · string
Search Container Alerts using a query in Falcon Query Language (FQL). Supported filter fields:
Available values (3)
cidcontainer_idlast_seen
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when 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)
[
{
"count": 0,
"label": "string"
}
]


Search Container Alerts by the provided search criteria

Method GET
Route /container-security/combined/container-alerts/v1
Scope Falcon Container Image: READ
PEP 8 search_and_read
filter query · string
Search Container Alerts using a query in Falcon Query Language (FQL). Supported filter fields:
Available values (5)
cidcontainer_idlast_seen
nameseverity
limit query · integer
The upper-bound on the number of records to retrieve. Maximum limit: 100.
offset query · integer
The offset from where to begin. Maximum offset = 10000 - limit.
sort query · string
The fields to sort the records on.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
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)
[
{
"containers_impacted_count": "string",
"containers_impacted_ids": [],
"detection_description": "string",
"detection_event_simple_name": "string",
"detection_name": "string",
"first_seen_timestamp": "string",
"last_seen_timestamp": "string",
"severity": "string"
}
]