No commit activity in last 3 years
No release in over 3 years
Forked from https://github.com/ixixi/fluent-plugin-sqs (hopefully temporarily)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
>= 0
>= 3.0.0

Runtime

< 2, >= 0.12.0
~> 1.0
 Project Readme

Amazon SQS output plugin for Fluent¶ ↑

Install¶ ↑

$ gem install fluent-plugin-sqs

Component¶ ↑

SQSOutput¶ ↑

Store fluent-event as queue message to amazon SQS.

SQSInput¶ ↑

Read events from from amazon SQS.

Configuratin¶ ↑

SQSOutput¶ ↑

<match sqs.**>

  type sqs

  # following attibute is required
  queue_name {queue_name}

  # following attibutes are required if you don't use IAM Role nor export credentials to ENV

  aws_key_id {your_aws_key_id}
  aws_sec_key {your_aws_secret_key}

  # following attributes are required if you use FIFO queue

  message_group_id {string}

  # following attibutes are optional

  create_queue {boolean}

  region {your_region}

  ### region list ###
  # Asia Pacific (Tokyo) [Default] : ap-northeast-1
  # Asia Pacific (Singapore)       : ap-southeast-1
  # US-East (Virginia)             : us-east-1
  # US-West (Oregon)               : us-west-2
  # US-West (N.California)         : us-west-1
  # EU-West (Ireland)              : eu-west-1
  # South America (São Paulo)      : sa-east-1

  delay_seconds {delivery_delay_seconds}

  include_tag {boolean}

  tag_property_name {tag's property name in json}

</match>

SQSInput¶ ↑

<source>

  type sqs

  # following attibutes are required

  queue_name {queue_name}

  # following attibutes are required if you don't use IAM Role nor export credentials to ENV

  aws_key_id {your_aws_key_id}
  aws_sec_key {your_aws_secret_key}

  # following attibutes are optional
 
  region {your_region}

  ### region list ###
  # Asia Pacific (Tokyo) [Default] : ap-northeast-1
  # Asia Pacific (Singapore)       : ap-southeast-1
  # US-East (Virginia)             : us-east-1
  # US-West (Oregon)               : us-west-2
  # US-West (N.California)         : us-west-1
  # EU-West (Ireland)              : eu-west-1
  # South America (São Paulo)      : sa-east-1

  receive_interval {receive_interval_seconds}

  max_number_of_messages {max_number_of_messages}

  wait_time_seconds {receive_message_wait_time_seconds}

  delete_message {delete_message_after_receiving}

</source>

Tool¶ ↑

Copyright

Copyright © 2011- Yuri Odagiri

License

Apache License, Version 2.0