<!-- ** Please read the guidelines below. ** Issues that do not follow these guidelines are likely to be closed. 1. GitHub is reserved for bug reports and feature requests. The best place to ask a general question is at the Elastic [forums](https://discuss.elastic.co). GitHub is not the place for general questions. 2. Is this bug report or feature request for a supported OS? If not, it is likely to be closed. See https://www.elastic.co/support/matrix#show_os 3. Please fill out EITHER the feature request block or the bug report block below, and delete the other block. --> <!-- Feature request --> **Describe the feature**: Interpolation in the pipeline processor would be an awesome addition to the Elasticsearch ingest nodes: i.e. ``` POST _ingest/pipeline/_simulate { "pipeline": { "processors": [ { "pipeline": { "name": "filebeat-{{agent.version}}" } } ] }, "docs": [ { "_source": { "message": "foo", "agent.version": "6.6.0" } } ] } ``` Thanks,