File: //usr/share/filebeat/module/aws/cloudwatch/ingest/pipeline.yml
description: "Pipeline for CloudWatch logs"
processors:
- set:
field: event.ingested
value: '{{_ingest.timestamp}}'
- grok:
field: message
patterns:
- "%{TIMESTAMP_ISO8601:_tmp.timestamp} %{SYSLOGTIMESTAMP:_tmp.syslog_timestamp} %{GREEDYDATA:aws.cloudwatch.message}"
- "%{TIMESTAMP_ISO8601:_tmp.timestamp} %{GREEDYDATA:aws.cloudwatch.message}"
- date:
field: '_tmp.timestamp'
target_field: "@timestamp"
ignore_failure: true
formats:
- 'ISO8601'
- remove:
field:
- _tmp
ignore_missing: true
on_failure:
- set:
field: "error.message"
value: "{{ _ingest.on_failure_message }}"