elasticsearch/docs/reference/ingest
Martijn van Groningen 2b2935fd52
Add pipeline name to ingest metadata (#50467)
This commit adds the name of the current pipeline to ingest metadata.
This pipeline name is accessible under the following key: '_ingest.pipeline'.

Example usage in pipeline:
PUT /_ingest/pipeline/2
{
    "processors": [
        {
            "set": {
                "field": "pipeline_name",
                "value": "{{_ingest.pipeline}}"
            }
        }
    ]
}

Closes #42106
2020-01-15 16:17:05 +01:00
..
apis Add pipeline name to ingest metadata (#50467) 2020-01-15 16:17:05 +01:00
processors Add pipeline name to ingest metadata (#50467) 2020-01-15 16:17:05 +01:00
enrich.asciidoc [DOCS] Explicitly document enrich target_field includes match_field (#49407) 2019-12-02 09:12:21 -05:00
ingest-node.asciidoc [DOCS] Adds inference processor documentation (#50204) 2019-12-19 12:19:44 +01:00