OpenSearch/docs/reference/ingest
Martijn van Groningen 02dfd71efa
Backport: Add pipeline name to ingest metadata (#51050)
Backport: #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-16 10:50:47 +01:00
..
apis Backport: Add pipeline name to ingest metadata (#51050) 2020-01-16 10:50:47 +01:00
processors Backport: Add pipeline name to ingest metadata (#51050) 2020-01-16 10:50:47 +01:00
enrich.asciidoc [DOCS] Explicitly document enrich `target_field` includes `match_field` (#49407) 2019-12-02 09:13:24 -05:00
ingest-node.asciidoc [DOCS] Adds inference processor documentation (#50204) 2019-12-19 12:21:04 +01:00