List asset criticality records
List asset criticality records, paging, sorting and filtering as needed.
Query parameters
-
sort_field string
The field to sort by.
Values are
id_value
,id_field
,criticality_level
, or\@timestamp
. -
sort_direction string
The order to sort by.
Values are
asc
ordesc
. -
page integer
The page number to return.
Minimum value is
1
. -
per_page integer
The number of records to return per page.
Minimum value is
1
, maximum value is1000
. -
kuery string
The kuery to filter by.
curl \
--request GET https://localhost:5601/api/asset_criticality/list
{
"page": 1,
"total": 2,
"records": [
{
"host": {
"name": "my_other_host",
"asset": {
"criticality": "medium_impact"
}
},
"asset": {
"criticality": "medium_impact"
},
"id_field": "host.name",
"id_value": "my_other_host",
"@timestamp": "2024-08-02T14:40:35.705Z",
"criticality_level": "medium_impact"
},
{
"host": {
"name": "my_host",
"asset": {
"criticality": "high_impact"
}
},
"asset": {
"criticality": "high_impact"
},
"id_field": "host.name",
"id_value": "my_host",
"@timestamp": "2024-08-02T11:15:34.290Z",
"criticality_level": "high_impact"
}
],
"per_page": 10
}