2017-04-11 21:52:47 -04:00
|
|
|
//lcawley Verified example output 2017-04-11
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-get-category]]
|
|
|
|
==== Get Categories
|
|
|
|
|
2017-05-08 10:12:03 -04:00
|
|
|
The get categories API enables you to retrieve job results for one or more
|
|
|
|
categories.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
===== Request
|
|
|
|
|
|
|
|
`GET _xpack/ml/anomaly_detectors/<job_id>/results/categories` +
|
|
|
|
|
|
|
|
`GET _xpack/ml/anomaly_detectors/<job_id>/results/categories/<category_id>`
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
//===== Description
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
===== Path Parameters
|
|
|
|
|
|
|
|
`job_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Identifier for the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`category_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Identifier for the category. If you do not specify this optional parameter,
|
2017-04-18 18:13:21 -04:00
|
|
|
the API returns information about all categories in the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-04-10 19:14:26 -04:00
|
|
|
===== Request Body
|
|
|
|
|
2017-04-28 12:14:53 -04:00
|
|
|
`page`::
|
|
|
|
`from`:::
|
2017-04-11 22:26:18 -04:00
|
|
|
(integer) Skips the specified number of categories.
|
2017-04-28 12:14:53 -04:00
|
|
|
`size`:::
|
2017-04-11 22:26:18 -04:00
|
|
|
(integer) Specifies the maximum number of categories to obtain.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-04-10 19:14:26 -04:00
|
|
|
===== Results
|
|
|
|
|
|
|
|
The API returns the following information:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-10 19:14:26 -04:00
|
|
|
`categories`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(array) An array of category objects. For more information, see
|
2017-04-10 19:14:26 -04:00
|
|
|
<<ml-results-categories,Categories>>.
|
2017-04-25 17:08:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
===== Authorization
|
|
|
|
|
|
|
|
You must have `monitor_ml`, `monitor`, `manage_ml`, or `manage` cluster
|
|
|
|
privileges to use this API. You also need `read` index privilege on the index
|
|
|
|
that stores the results. The `machine_learning_admin` and `machine_learning_user`
|
|
|
|
roles provide these privileges. For more information, see
|
|
|
|
<<security-privileges>> and <<built-in-roles>>.
|
|
|
|
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
===== Examples
|
|
|
|
|
2017-04-28 12:14:53 -04:00
|
|
|
The following example gets information about one category for the
|
|
|
|
`it_ops_new_logs` job:
|
2017-04-10 19:14:26 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
GET _xpack/ml/anomaly_detectors/it_ops_new_logs/results/categories
|
2017-04-28 12:14:53 -04:00
|
|
|
{
|
|
|
|
"page":{
|
|
|
|
"size": 1
|
|
|
|
}
|
|
|
|
}
|
2017-04-10 19:14:26 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[skip:todo]
|
|
|
|
|
2017-04-28 12:14:53 -04:00
|
|
|
In this example, the API returns the following information:
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
2017-04-10 19:14:26 -04:00
|
|
|
"count": 11,
|
|
|
|
"categories": [
|
|
|
|
{
|
|
|
|
"job_id": "it_ops_new_logs",
|
|
|
|
"category_id": 1,
|
2017-04-28 12:14:53 -04:00
|
|
|
"terms": "Actual Transaction Already Voided Reversed hostname dbserver.acme.com physicalhost esxserver1.acme.com vmhost app1.acme.com",
|
|
|
|
"regex": ".*?Actual.+?Transaction.+?Already.+?Voided.+?Reversed.+?hostname.+?dbserver.acme.com.+?physicalhost.+?esxserver1.acme.com.+?vmhost.+?app1.acme.com.*",
|
2017-04-10 19:14:26 -04:00
|
|
|
"max_matching_length": 137,
|
|
|
|
"examples": [
|
2017-04-28 12:14:53 -04:00
|
|
|
"Actual Transaction Already Voided / Reversed;hostname=dbserver.acme.com;physicalhost=esxserver1.acme.com;vmhost=app1.acme.com"
|
2017-04-10 19:14:26 -04:00
|
|
|
]
|
2017-04-28 12:14:53 -04:00
|
|
|
}
|
2017-04-04 18:26:39 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
----
|