List asset criticality records Beta
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.
GET /api/asset_criticality/list
curl \
-X GET https://localhost:5601/api/asset_criticality/list
Response examples (200)
{
"page": 42,
"per_page": 42,
"records": [
{
"id_field": "host.name",
"id_value": "string",
"criticality_level": "low_impact",
"asset": {
"criticality": "low_impact"
},
"host": {
"asset": {
"criticality": "low_impact"
},
"name": "string"
},
"user": {
"asset": {
"criticality": "low_impact"
},
"name": "string"
},
"@timestamp": "2017-07-21T17:32:28Z"
}
],
"total": 42
}