github.com/observiq/bindplane-agent@v1.51.0/config/elasticsearch/filelog/config.yaml (about)

     1  receivers:
     2    filelog:
     3      include:
     4      - /var/log/log-file.json
     5      start_at: beginning
     6      resource:
     7        log_type: app
     8      operators:
     9        - type: move
    10          from: body
    11          to: body.message
    12        - type: json_parser
    13          parse_from: body.message
    14  
    15  exporters:
    16    elasticsearch:
    17      endpoints:
    18      - "https://<HOST-1>:9200"
    19      - "https://<HOST-2>:9200"
    20      - "https://<HOST-3>:9200"
    21  
    22  service:
    23    pipelines:
    24      logs:
    25        receivers:
    26        - filelog
    27        exporters:
    28        - elasticsearch