Created
December 5, 2019 08:07
-
-
Save quoeamaster/713159978cbdeb64157bedfbae1dd438 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST _ingest/pipeline/_simulate | |
| { | |
| "pipeline": { | |
| "processors": [ | |
| { | |
| "dissect": { | |
| "field": "message", | |
| "pattern": "%{name}:%{age}" | |
| } | |
| }, | |
| { | |
| "pipeline": { | |
| "name": "func_convert_age" | |
| } | |
| } | |
| ] | |
| }, | |
| "docs": [ | |
| { | |
| "_source": { | |
| "message": "helen wong:45" | |
| } | |
| }, | |
| { | |
| "_source": { | |
| "message": "josh blake:a46" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment