Fix another simulate example in ingest docs
When simulating an ingest pipeline against an existing pipeline, the
_source field is required to wrap each doc. This commit fixes another
example in the docs that is missing this.
Relates #25743, relates e3a0c11239
This commit is contained in:
parent
e3a0c11239
commit
e9dfb2a215
|
@ -205,8 +205,8 @@ POST _ingest/pipeline/_simulate
|
||||||
// pipeline definition here
|
// pipeline definition here
|
||||||
},
|
},
|
||||||
"docs" : [
|
"docs" : [
|
||||||
{ /** first document **/ },
|
{ "_source": {/** first document **/} },
|
||||||
{ /** second document **/ },
|
{ "_source": {/** second document **/} },
|
||||||
// ...
|
// ...
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue