From 45f192b7ccc12f7946f9bbf9f80be5e738f189fb Mon Sep 17 00:00:00 2001 From: Jason Bryan Date: Tue, 12 Jan 2016 15:52:32 -0500 Subject: [PATCH] Minor documentation updates. --- docs/plugins/ingest.asciidoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/plugins/ingest.asciidoc b/docs/plugins/ingest.asciidoc index e41f9bbd431..ea42932e561 100644 --- a/docs/plugins/ingest.asciidoc +++ b/docs/plugins/ingest.asciidoc @@ -21,7 +21,7 @@ on an index or bulk request to tell the ingest plugin what pipeline is going to [source,js] -------------------------------------------------- -PUT /my-index/my-type/my-id?ingest=my_pipeline_id +PUT /my-index/my-type/my-id?pipeline=my_pipeline_id { ... } @@ -80,7 +80,8 @@ name must not exist. -------------------------------------------------- { "rename": { - "field": "foo" + "field": "foo", + "to": "foobar" } } --------------------------------------------------