2017-04-11 21:52:47 -04:00
|
|
|
//lcawley Verified example output 2017-04-11
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-datafeed-resource]]
|
|
|
|
==== Data Feed Resources
|
|
|
|
|
|
|
|
A data feed resource has the following properties:
|
|
|
|
|
2017-04-10 11:59:27 -04:00
|
|
|
`aggregations`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(object) If set, the data feed performs aggregation searches.
|
|
|
|
For syntax information, see {ref}/search-aggregations.html[Aggregations].
|
2017-04-26 13:05:27 -04:00
|
|
|
Support for aggregations is limited: TBD.
|
2017-04-10 11:59:27 -04:00
|
|
|
For example:
|
|
|
|
`{"@timestamp": {"histogram": {"field": "@timestamp",
|
|
|
|
"interval": 30000,"offset": 0,"order": {"_key": "asc"},"keyed": false,
|
|
|
|
"min_doc_count": 0}, "aggregations": {"events_per_min": {"sum": {
|
|
|
|
"field": "events_per_min"}}}}}`.
|
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`chunking_config`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(object) The chunking configuration, which specifies how data searches are
|
|
|
|
chunked. See <<ml-datafeed-chunking-config>>.
|
2017-04-26 13:05:27 -04:00
|
|
|
For example: {"mode": "manual", "time_span": "3h"}
|
2017-04-11 21:52:47 -04:00
|
|
|
|
2017-04-10 11:59:27 -04:00
|
|
|
`datafeed_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) A numerical character string that uniquely identifies the data feed.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`frequency`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(time units) The interval at which scheduled queries are made while the data
|
|
|
|
feed runs in real time. The default value is either the bucket span for short
|
|
|
|
bucket spans, or, for longer bucket spans, a sensible fraction of the bucket
|
|
|
|
span. For example: "150s"
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`indexes` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(array) An array of index names. For example: ["it_ops_metrics"]
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`job_id` (required)::
|
2017-04-26 14:18:51 -04:00
|
|
|
(string) The unique identifier for the job to which the data feed sends data.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`query`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(object) The Elasticsearch query domain-specific language (DSL). This value
|
|
|
|
corresponds to the query object in an Elasticsearch search POST body. All the
|
|
|
|
options that are supported by Elasticsearch can be used, as this object is
|
|
|
|
passed verbatim to Elasticsearch. By default, this property has the following
|
|
|
|
value: `{"match_all": {"boost": 1}}`. If this property is not specified, the
|
|
|
|
default value is `“match_all”: {}`.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`query_delay`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(time units) The number of seconds behind real-time that data is queried. For
|
|
|
|
example, if data from 10:04 a.m. might not be searchable in Elasticsearch
|
|
|
|
until 10:06 a.m., set this property to 120 seconds. The default value is 60
|
|
|
|
seconds. For example: "60s".
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`scroll_size`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(unsigned integer) The `size` parameter that is used in Elasticsearch searches.
|
2017-04-10 11:59:27 -04:00
|
|
|
The default value is `1000`.
|
|
|
|
|
|
|
|
`types` (required)::
|
2017-04-26 14:18:51 -04:00
|
|
|
(array) A list of types to search for within the specified indices.
|
|
|
|
For example: ["network","sql","kpi"].
|
2017-04-26 13:05:27 -04:00
|
|
|
|
|
|
|
[[ml-datafeed-chunking-config]]
|
|
|
|
===== Chunking Configuration Objects
|
|
|
|
|
|
|
|
A chunking configuration object has the following properties:
|
|
|
|
|
|
|
|
`mode` (required)::
|
2017-04-26 14:18:51 -04:00
|
|
|
There are three available modes: +
|
|
|
|
`auto`::: The chunk size will be dynamically calculated.
|
|
|
|
`manual`::: Chunking will be applied according to the specified `time_span`.
|
|
|
|
`off`::: No chunking will be applied.
|
2017-04-26 13:05:27 -04:00
|
|
|
|
|
|
|
`time_span`::
|
|
|
|
(time units) The time span that each search will be querying.
|
|
|
|
This setting is only applicable when the mode is set to `manual`.
|
2017-04-26 14:18:51 -04:00
|
|
|
For example: "3h".
|
2017-04-10 11:59:27 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
[float]
|
2017-04-10 19:14:26 -04:00
|
|
|
[[ml-datafeed-counts]]
|
|
|
|
==== Data Feed Counts
|
2017-04-10 11:59:27 -04:00
|
|
|
|
2017-04-10 19:14:26 -04:00
|
|
|
The get data feed statistics API provides information about the operational
|
|
|
|
progress of a data feed. For example:
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`assigment_explanation`::
|
2017-04-11 21:52:47 -04:00
|
|
|
TBD. For example: " "
|
|
|
|
|
|
|
|
`datafeed_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) A numerical character string that uniquely identifies the data feed.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`node`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(object) TBD
|
2017-04-10 11:59:27 -04:00
|
|
|
The node that is running the query?
|
2017-04-11 21:52:47 -04:00
|
|
|
`id`::: TBD. For example, "0-o0tOoRTwKFZifatTWKNw".
|
|
|
|
`name`::: TBD. For example, "0-o0tOo".
|
2017-04-24 12:31:31 -04:00
|
|
|
`ephemeral_id`::: TBD. For example, "DOZltLxLS_SzYpW6hQ9hyg".
|
|
|
|
`transport_address`::: TBD. For example, "127.0.0.1:9300".
|
2017-04-11 21:52:47 -04:00
|
|
|
`attributes`::: TBD. For example, {"max_running_jobs": "10"}.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
`state`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The status of the data feed, which can be one of the following values: +
|
2017-04-24 12:31:31 -04:00
|
|
|
`started`::: The data feed is actively receiving data.
|
|
|
|
`stopped`::: The data feed is stopped and will not receive data until it is re-started.
|