From 31c609db910e1dfe5dcc8e53f4802c5c5469a8f2 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Tue, 23 Apr 2019 13:38:35 +0200 Subject: [PATCH] [DOCS] change source and dest to be nested and add a query to the example (#41293) update source and dest to reflect the changes done in #40396 and add a query to the example. --- .../data-frames/apis/put-transform.asciidoc | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/docs/reference/data-frames/apis/put-transform.asciidoc b/docs/reference/data-frames/apis/put-transform.asciidoc index 68d7b4b0492..1889121ae5d 100644 --- a/docs/reference/data-frames/apis/put-transform.asciidoc +++ b/docs/reference/data-frames/apis/put-transform.asciidoc @@ -25,9 +25,10 @@ Instantiates a {dataframe-transform}. ==== Request Body -`source`:: The source index or index pattern. +`source`:: (object) The source configuration, consisting of `index` and optionally +a `query`. -`dest`:: The destination index. +`dest`:: (object) The destination configuration, consisting of `index`. `pivot`:: Defines the pivot function `group by` fields and the aggregation to reduce the data. @@ -44,8 +45,19 @@ sample data: -------------------------------------------------- PUT _data_frame/transforms/ecommerce_transform { - "source": "kibana_sample_data_ecommerce", - "dest": "kibana_sample_data_ecommerce_transform", + "source": { + "index": "kibana_sample_data_ecommerce", + "query": { + "term": { + "geoip.continent_name": { + "value": "Asia" + } + } + } + }, + "dest": { + "index": "kibana_sample_data_ecommerce_transform" + }, "pivot": { "group_by": { "customer_id": { @@ -74,4 +86,4 @@ When the transform is created, you receive the following results: "acknowledged" : true } ---- -// NOTCONSOLE \ No newline at end of file +// NOTCONSOLE