GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Search::Elasticsearch::Client::5_0::Direct::Ingest(3) User Contributed Perl Documentation Search::Elasticsearch::Client::5_0::Direct::Ingest(3)

Search::Elasticsearch::Client::5_0::Direct::Ingest - A client for accessing the Ingest API

version 6.00

This module provides methods to access the Ingest API, such as creating, getting, deleting and simulating ingest pipelines.

It does Search::Elasticsearch::Role::Client::Direct.

    $response = $e->ingest->put_pipeline(
        id   => $id,                # required
        body => { pipeline defn }   # required
    );

The "put_pipeline()" method creates or updates a pipeline with the specified ID.

Query string parameters: "error_trace", "human", "master_timeout", "timeout"

See the put pipeline docs <https://www.elastic.co/guide/en/elasticsearch/reference/current/put-pipeline-api.html> for more information.

    $response = $e->ingest->get_pipeline(
        id   => \@id,               # optional
    );

The "get_pipeline()" method returns pipelines with the specified IDs (or all pipelines).

Query string parameters: "error_trace", "human", "master_timeout", "timeout"

See the get pipeline docs <https://www.elastic.co/guide/en/elasticsearch/reference/current/get-pipeline-api.html> for more information.

    $response = $e->ingest->delete_pipeline(
        id   => $id,                # required
    );

The "delete_pipeline()" method deletes the pipeline with the specified ID.

Query string parameters: "error_trace", "human", "master_timeout", "timeout"

See the delete pipeline docs <https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-pipeline-api.html> for more information.

    $response = $e->ingest->put_pipeline(
        id   => $id,                # optional
        body => { simulate args }   # required
    );

The "simulate()" method executes the pipeline specified by ID or inline in the body against the docs provided in the body and provides debugging output of the execution process.

Query string parameters: "error_trace", "human", "verbose"

See the simulate pipeline docs <https://www.elastic.co/guide/en/elasticsearch/reference/current/simulate-pipeline-api.html> for more information.

    $response = $e->inges->processor_grok()

Retrieves the configured patterns associated with the Grok processor.

Query string parameters: "error_trace", "human"

See the grok processor docs <https://www.elastic.co/guide/en/elasticsearch/reference/current/grok-processor.html> for more information.

Clinton Gormley <drtech@cpan.org>

This software is Copyright (c) 2017 by Elasticsearch BV.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004
2017-11-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.