Docker + Elasticsearch + Geoip + User Agent Pipeline

Hi,

I have an elasticsearch dependency for my app and I'm using the following configuration in the docker-compose.yml file:

elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0 
    ports:
      - "9200:9200"
    volumes:
      - esdata:/usr/share/elasticsearch/data

This builds the image correctly and installs the ingest-geoip and ingest-useragent plugin correctly:

[2020-04-17T12:52:21,839][INFO ][o.e.p.PluginsService ] [dStP6fF] loaded plugin [ingest-geoip]
[2020-04-17T12:52:21,839][INFO ][o.e.p.PluginsService ] [dStP6fF] loaded plugin [ingest-user-agent]

I, however, need to create two different pipelines for these plugins using a PUT request. Ideally, as part of the image building, the pipelines should only be created once.

This is the body of the PUT request:

{
    "parse_ip_ua": {
        "description": "Parse IP Address and User Agent information",
        "processors": [
            {
                "user_agent": {
                    "field": "user_agent",
                    "target_field": "useragent",
                    "ignore_missing": true
                }
            },
            {
                "geoip": {
                    "field": "ip_address",
                    "ignore_missing": true
                }
            }
        ]
    }
}

Any idea on how to achieve this? Thanks in advance.

Bump. Anyone?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.