Skip to content

Files

Latest commit

f9cff1e · Jun 20, 2022

History

History

operators

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 16, 2021
Jun 25, 2021
Sep 14, 2021
May 7, 2021
May 7, 2021
Jun 25, 2021
Feb 23, 2022
Oct 27, 2021
Aug 21, 2021
Sep 9, 2020
Feb 15, 2022
Sep 18, 2020
Aug 24, 2020
Jun 25, 2021
Jun 20, 2022
Nov 18, 2020
Aug 31, 2020
Jun 18, 2021
Dec 14, 2021
Nov 13, 2020
Oct 7, 2021
Aug 18, 2021
Nov 13, 2020
Sep 15, 2020
Jan 4, 2021
Sep 20, 2021
Aug 18, 2020
Jun 25, 2021
Oct 2, 2020
Jul 22, 2020
Dec 7, 2020
Nov 13, 2020
Jun 25, 2021
Nov 13, 2020
Jun 25, 2021
Dec 15, 2020
Nov 13, 2020
Nov 11, 2020
Nov 11, 2020
Jul 22, 2020
Feb 3, 2021
Aug 21, 2021
Nov 13, 2020
May 20, 2021
Feb 2, 2021
Nov 13, 2020
Nov 9, 2021

What is an operator?

An operator is the most basic unit of log processing. Each operator fulfills a single responsibility, such as reading lines from a file, or parsing JSON from a field. Operators are then chained together in a pipeline to achieve a desired result.

For instance, a user may read lines from a file using the file_input operator. From there, the results of this operation may be sent to a regex_parser operator that creates fields based on a regex pattern. And then finally, these results may be sent to a elastic_output operator that writes each line to Elasticsearch.

What operators are available?

Inputs:

Parsers:

Outputs:

General purpose:

Or create your own plugins for a technology-specific use case.