mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Add terminate processor (#199674)
Closes [#195782](https://github.com/elastic/kibana/issues/195782) ## Summary This PR adds UI support for the Terminate Processor [[docs](https://www.elastic.co/guide/en/elasticsearch/reference/master/terminate-processor.html)]. This processor only has the default fields. https://github.com/user-attachments/assets/12b5e677-78e8-4f40-8427-e2482b47249a
This commit is contained in:
parent
7e65cdef6d
commit
b320a37d8b
1 changed files with 15 additions and 0 deletions
|
@ -902,6 +902,21 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
|
|||
},
|
||||
}),
|
||||
},
|
||||
terminate: {
|
||||
category: processorCategories.PIPELINE_HANDLING,
|
||||
docLinkPath: '/terminate-processor.html',
|
||||
label: i18n.translate('xpack.ingestPipelines.processors.label.terminate', {
|
||||
defaultMessage: 'Terminate',
|
||||
}),
|
||||
typeDescription: i18n.translate('xpack.ingestPipelines.processors.description.terminate', {
|
||||
defaultMessage:
|
||||
'Terminates the current ingest pipeline, causing no further processors to be run.',
|
||||
}),
|
||||
getDefaultDescription: () =>
|
||||
i18n.translate('xpack.ingestPipelines.processors.defaultDescription.terminate', {
|
||||
defaultMessage: 'Terminates the current pipeline',
|
||||
}),
|
||||
},
|
||||
trim: {
|
||||
category: processorCategories.DATA_TRANSFORMATION,
|
||||
FieldsComponent: Trim,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue