Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xelaz/617ef05b7cbac679ef18ecde65798ac3 to your computer and use it in GitHub Desktop.
Save xelaz/617ef05b7cbac679ef18ecde65798ac3 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