fluent-plugin-aws-sqs 1.0.17 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe32536bc7de9d4a3a6cb1b6c6e393e192613cc6be877363575da6b185fc406b
4
- data.tar.gz: ec50af21439ea27286b31ee788d8ff45fa32c433e114dafac63251db11586d30
3
+ metadata.gz: 3c00044fd65f8dabf2aad93574b77fd6a03e0f32922859ba9c0bc078980cf220
4
+ data.tar.gz: '09f77b172971892a9d924ebc56366151c47c7431ba60bee8a0e39b38d3f76124'
5
5
  SHA512:
6
- metadata.gz: 31e6dd565b8827e47c293c3fbff2fd6f4c980a06146bb3ba3b1d003d312f2f4b4d1caf1c0ff1412f720a035e4bae9f8e9e9d76fdea0159598e100ddb4f267667
7
- data.tar.gz: 21595ac9dae576dd51f715193092ac56c60f859253146ab1f92806b77c9759a947811ce73ac4d3e7bc2986a0d75369a3b678cec5663a99e733a0211a2f61a413
6
+ metadata.gz: 9a5625444357a4586c845ad318e9b72061f6e1eb997ad99c214b468eccba5a94128c03238ec0ebf236a6e690e4e973ebd15a4a1a00a6377d80303980422b51e7
7
+ data.tar.gz: c26962ad5b49b1a391430ba58dff4ca576614e7a5f42aaa9ece6d5d560088ec25ff29d079fd65ae6c8463c2943c53c244f9b971bbe413f39fe82f68491006535
@@ -61,8 +61,8 @@ module Fluent::Plugin
61
61
  max_number_of_messages: @max_number_of_messages,
62
62
  wait_time_seconds: @wait_time_seconds,
63
63
  visibility_timeout: @visibility_timeout,
64
- attribute_names: ["All"], # Receive all available built-in message attributes.
65
- message_attribute_names: ['Component', 'component'] # Receive any custom message attributes.
64
+ attribute_names: ['All'], # Receive all available built-in message attributes.
65
+ message_attribute_names: ['All'] # Receive any custom message attributes.
66
66
  ).each do |message|
67
67
  record = parse_message(message)
68
68
 
@@ -82,7 +82,9 @@ module Fluent::Plugin
82
82
  'message_id' => message.message_id.to_s,
83
83
  'md5_of_body' => message.md5_of_body.to_s,
84
84
  'queue_url' => message.queue_url.to_s,
85
- 'all_obj' => message.attributes.to_s
85
+ 'all_obj' => message.attributes.to_s,
86
+ 'all_obj2' => message.message_attributes.to_s,
87
+ 'all_obj3' => message.message_attributes["String"].to_s
86
88
  }
87
89
 
88
90
  if @attribute_name_to_extract.to_s.strip.length > 0
@@ -1,3 +1,3 @@
1
1
  module SQS
2
- VERSION = "1.0.17"
2
+ VERSION = "1.0.18"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-aws-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.17
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shai Moria