Get datafeeds
Added in 7.7.0
Get configuration and usage information about datafeeds.
This API returns a maximum of 10,000 datafeeds.
If the Elasticsearch security features are enabled, you must have monitor_ml
, monitor
, manage_ml
, or manage
cluster privileges to use this API.
IMPORTANT: CAT APIs are only intended for human consumption using the Kibana console or command line. They are not intended for use by applications. For application consumption, use the get datafeed statistics API.
Path parameters
-
datafeed_id
string Required A numerical character string that uniquely identifies the datafeed.
Query parameters
-
allow_no_match
boolean Specifies what to do when the request:
- Contains wildcard expressions and there are no datafeeds that match.
- Contains the
_all
string or no identifiers and there are no matches. - Contains wildcard expressions and there are only partial matches.
If
true
, the API returns an empty datafeeds array when there are no matches and the subset of results when there are partial matches. Iffalse
, the API returns a 404 status code when there are no matches or only partial matches. -
h
string | array[string] Comma-separated list of column names to display.
Supported values include:
ae
(orassignment_explanation
): For started datafeeds only, contains messages relating to the selection of a node.bc
(orbuckets.count
,bucketsCount
): The number of buckets processed.id
: A numerical character string that uniquely identifies the datafeed.na
(ornode.address
,nodeAddress
): For started datafeeds only, the network address of the node where the datafeed is started.ne
(ornode.ephemeral_id
,nodeEphemeralId
): For started datafeeds only, the ephemeral ID of the node where the datafeed is started.ni
(ornode.id
,nodeId
): For started datafeeds only, the unique identifier of the node where the datafeed is started.nn
(ornode.name
,nodeName
): For started datafeeds only, the name of the node where the datafeed is started.sba
(orsearch.bucket_avg
,searchBucketAvg
): The average search time per bucket, in milliseconds.sc
(orsearch.count
,searchCount
): The number of searches run by the datafeed.seah
(orsearch.exp_avg_hour
,searchExpAvgHour
): The exponential average search time per hour, in milliseconds.st
(orsearch.time
,searchTime
): The total time the datafeed spent searching, in milliseconds.s
(orstate
): The status of the datafeed:starting
,started
,stopping
, orstopped
. Ifstarting
, the datafeed has been requested to start but has not yet started. Ifstarted
, the datafeed is actively receiving data. Ifstopping
, the datafeed has been requested to stop gracefully and is completing its final action. Ifstopped
, the datafeed is stopped and will not receive data until it is re-started.
-
s
string | array[string] Comma-separated list of column names or column aliases used to sort the response.
Supported values include:
ae
(orassignment_explanation
): For started datafeeds only, contains messages relating to the selection of a node.bc
(orbuckets.count
,bucketsCount
): The number of buckets processed.id
: A numerical character string that uniquely identifies the datafeed.na
(ornode.address
,nodeAddress
): For started datafeeds only, the network address of the node where the datafeed is started.ne
(ornode.ephemeral_id
,nodeEphemeralId
): For started datafeeds only, the ephemeral ID of the node where the datafeed is started.ni
(ornode.id
,nodeId
): For started datafeeds only, the unique identifier of the node where the datafeed is started.nn
(ornode.name
,nodeName
): For started datafeeds only, the name of the node where the datafeed is started.sba
(orsearch.bucket_avg
,searchBucketAvg
): The average search time per bucket, in milliseconds.sc
(orsearch.count
,searchCount
): The number of searches run by the datafeed.seah
(orsearch.exp_avg_hour
,searchExpAvgHour
): The exponential average search time per hour, in milliseconds.st
(orsearch.time
,searchTime
): The total time the datafeed spent searching, in milliseconds.s
(orstate
): The status of the datafeed:starting
,started
,stopping
, orstopped
. Ifstarting
, the datafeed has been requested to start but has not yet started. Ifstarted
, the datafeed is actively receiving data. Ifstopping
, the datafeed has been requested to stop gracefully and is completing its final action. Ifstopped
, the datafeed is stopped and will not receive data until it is re-started.
-
time
string The unit used to display time values.
Values are
nanos
,micros
,ms
,s
,m
,h
, ord
.
curl \
--request GET 'http://api.example.com/_cat/ml/datafeeds/{datafeed_id}' \
--header "Authorization: $API_KEY"
[
{
"id": "datafeed-high_sum_total_sales",
"state": "stopped",
"buckets.count": "743",
"search.count": "7"
},
{
"id": "datafeed-low_request_rate",
"state": "stopped",
"buckets.count": "1457",
"search.count": "3"
},
{
"id": "datafeed-response_code_rates",
"state": "stopped",
"buckets.count": "1460",
"search.count": "18"
},
{
"id": "datafeed-url_scanning",
"state": "stopped",
"buckets.count": "1460",
"search.count": "18"
}
]