mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* console: ingest node - add tag and update pipeline processor parameter
This commit is contained in:
parent
e43b2bc5c4
commit
12a1aefe2c
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue