Sha256: 58d6a49aeee2aa1d53d9a2e26f31eeb61fbd0292d1249cb122d2bef262b4c0fd

Contents?: true

Size: 345 Bytes

Versions: 7

Compression:

Stored size: 345 Bytes

Contents

<source>
  type dynamodb_streams
  tag stream
  aws_region ddblocal
  stream_arn "#{ENV['STREAM_ARN']}"
</source>

# Only pass MODIFY event
<filter stream>
  type grep
  regexp1 event_name MODIFY
</filter>

# Only keep new_image
<filter stream>
  type jq
  jq '.dynamodb|{new_image:.new_image}'
</filter>

<match stream> 
  type stdout
</match>

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fluent-plugin-dynamodb-streams-alt-0.0.4 example/fluentd.conf
fluent-plugin-dynamodb-streams-alt-0.0.3 example/fluentd.conf
fluent-plugin-dynamodb-streams-alt-0.0.2 example/fluentd.conf
fluent-plugin-dynamodb-streams-alt-0.0.1 example/fluentd.conf
fluent-plugin-dynamodb-streams-0.0.3 example/fluentd.conf
fluent-plugin-dynamodb-streams-0.0.2 example/fluentd.conf
fluent-plugin-dynamodb-streams-0.0.1 example/fluentd.conf