console: ingest node - add tag and update pipeline processor parameter (#24400) (#24445)

* console: ingest node - add tag and update pipeline processor parameter
This commit is contained in:
Bill McConaghy 2018-10-24 07:32:44 -04:00 committed by GitHub
parent e43b2bc5c4
commit 12a1aefe2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,8 @@
const commonPipelineParams = {
on_failure: [],
if: ''
if: '',
tag: ''
};
// Based on https://www.elastic.co/guide/en/elasticsearch/reference/master/append-processor.html
@ -268,9 +269,9 @@ const lowercaseProcessorDefinition = {
const pipelineProcessorDefinition = {
pipeline: {
__template: {
pipeline: ''
name: ''
},
pipeline: '',
name: '',
...commonPipelineParams
}
};
@ -309,7 +310,7 @@ const scriptProcessorDefinition = {
lang: 'painless',
file: '',
id: '',
inline: '',
source: '',
params: {},
...commonPipelineParams
}