Created
May 23, 2022 14:44
-
-
Save lockwooddev/a6bd2593d898f86252fe3aa8776fd4fe to your computer and use it in GitHub Desktop.
ingest pipeline for article
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
| { | |
| "description": "forward docs to data stream", | |
| "processors": [ | |
| { | |
| "set": { | |
| "field": "_index", | |
| "value": "metrics" | |
| } | |
| }, | |
| { | |
| "set": { | |
| "field": "@timestamp", | |
| "value": "{{_ingest.timestamp}}" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment