No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Amazon SQS input/output plugin for Fluent event collector
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 Amazon SQS.

Configuration¶ ↑

SQSOutput¶ ↑

<match sqs.**>

  type sqs

  # url as https://sqs.us-west-2.amazonaws.com/123456789012/myqueue
  sqs_url {queue_url}

  # following attribute is required if you don't declare a sqs_url
  queue_name {queue_instance_key}

  # following attributes 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 optional

  create_queue {boolean}
  region {your_region}

  # following attributes are required if you use FIFO queue

  message_group_id {string}

  ### 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 attribute is required

  sqs_url {queue_url}

  # following attributes 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 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