Skip to content

Pipelines

Anton edited this page Jan 24, 2020 · 2 revisions

Pipelines are processing plugins that can modify data as it comes in. A number of plugins can be enabled for a pipeline, but Logarithm is recommended to be used with info pipeline, that consists of GeoIP processor and User-Agent parser.

On This Page

Pipelines, -P

Shows existing pipelines.

user:~$ logarithm es.local:9200 -P
Fetching the list of pipelines
Name  Description               Processors                              
info  IP Address And UserAgent  geoip: ip                               
                                user_agent: headers.user-agent

Add Pipeline, -p

Creates a new pipeline with geoip and user_agent processors.

user:~$ logarithm es.local:9200 -p info2
Creating a pipeline info2
Pipeline info2 created.

Remove Pipeline, -d

Removes the pipeline with the given name.

user:~$ logarithm es.local:9200 -p info2 -d
Are you sure you want to delete pipeline info2 (y/n): [n] y
Removing info2 pipeline
Pipeline info2 removed.
Clone this wiki locally