IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Get Filters API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Get Filters API
editRetrieves filters.
Request
editGET _xpack/ml/filters/<filter_id>
GET _xpack/ml/filters/
Description
editYou can get a single filter or all filters. For more information, see Machine learning custom rules.
Path Parameters
edit-
filter_id - (string) Identifier for the filter.
Request Body
edit-
from - (integer) Skips the specified number of filters.
-
size - (integer) Specifies the maximum number of filters to obtain.
Results
editThe API returns the following information:
-
filters - (array) An array of filter resources. For more information, see Filter Resources.
Authorization
editYou must have monitor_ml, monitor, manage_ml, or manage cluster
privileges to use this API. For more information, see
Security privileges.
Examples
editThe following example gets configuration information for the safe_domains
filter:
GET _xpack/ml/filters/safe_domains
The API returns the following results:
{
"count": 1,
"filters": [
{
"filter_id": "safe_domains",
"description": "A list of safe domains",
"items": [
"*.google.com",
"wikipedia.org"
]
}
]
}