Skip to content

Instantly share code, notes, and snippets.

@qoomon
Last active May 8, 2018 09:31
Show Gist options
  • Save qoomon/376699d41cc91d3814a2ef4cb0bdc632 to your computer and use it in GitHub Desktop.
Save qoomon/376699d41cc91d3814a2ef4cb0bdc632 to your computer and use it in GitHub Desktop.
Elasticsearch auto generated timestamps

PUT _ingest/pipeline/timestamp

{
    "description": "Adds a timestamp field at the current time",
    "processors": [
        {
            "set": {
                "field": "@timestamp",
                "value": "{{_ingest.timestamp}}",
                "override": false
            }
        }
    ]
}

POST/PUT /?pipeline=timestamp

{
  "<FIELD>": "<VALUE>"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment