Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix kv processor formatting #9098

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions _ingest-pipelines/processors/kv.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ To test the pipeline, run the following query:

```json
POST _ingest/pipeline/kv-pipeline/_simulate

```json
{
"docs": [
{
Expand All @@ -103,7 +101,7 @@ POST _ingest/pipeline/kv-pipeline/_simulate

**Response**

The following example response confirms that the pipeline is working as expected:
The following example response confirms that, in addition to the original `message` field, the document contains fields generated from key-value pairs:

```json
{
Expand Down Expand Up @@ -132,8 +130,6 @@ The following query ingests a document into an index named `testindex1`:

```json
PUT testindex1/_doc/1?pipeline=kv-pipeline

```json
{
"message": "goodbye=everybody hello=world"
}
Expand Down
Loading