Get anomaly detection job results for categories Added in 5.4.0
Path parameters
-
Identifier for the anomaly detection job.
Query parameters
-
from number
Skips the specified number of categories.
-
partition_field_value string
Only return categories for the specified partition.
-
size number
Specifies the maximum number of categories to obtain.
POST /_ml/anomaly_detectors/{job_id}/results/categories
curl \
-X POST http://api.example.com/_ml/anomaly_detectors/{job_id}/results/categories \
-H "Content-Type: application/json" \
-d '{"page":{"from":42.0,"size":42.0}}'
Request examples
{
"page": {
"from": 42.0,
"size": 42.0
}
}
Response examples (200)
{
"categories": [
{
"category_id": 42.0,
"examples": [
"string"
],
"grok_pattern": "string",
"job_id": "string",
"max_matching_length": 42.0,
"partition_field_name": "string",
"partition_field_value": "string",
"regex": "string",
"terms": "string",
"num_matches": 42.0,
"preferred_to_categories": [
"string"
],
"p": "string",
"result_type": "string",
"mlcategory": "string"
}
],
"count": 42.0
}