Package org.elasticsearch.plugins
Interface IngestPlugin
public interface IngestPlugin
An extension point for
Plugin
implementations to add custom ingest processors-
Method Summary
Modifier and TypeMethodDescriptiondefault Map<String,Processor.Factory>
getProcessors(Processor.Parameters parameters)
Returns additional ingest processor types added by this plugin.
-
Method Details
-
getProcessors
Returns additional ingest processor types added by this plugin. The key of the returnedMap
is the unique name for the processor which is specified in pipeline configurations, and the value is aProcessor.Factory
to create the processor from a given pipeline configuration.
-