fluent-plugin-aws-sqs 1.0.16 → 1.0.17
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 +4 -4
- data/lib/fluent/plugin/in_sqs.rb +2 -2
- data/lib/fluent/plugin/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe32536bc7de9d4a3a6cb1b6c6e393e192613cc6be877363575da6b185fc406b
|
4
|
+
data.tar.gz: ec50af21439ea27286b31ee788d8ff45fa32c433e114dafac63251db11586d30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31e6dd565b8827e47c293c3fbff2fd6f4c980a06146bb3ba3b1d003d312f2f4b4d1caf1c0ff1412f720a035e4bae9f8e9e9d76fdea0159598e100ddb4f267667
|
7
|
+
data.tar.gz: 21595ac9dae576dd51f715193092ac56c60f859253146ab1f92806b77c9759a947811ce73ac4d3e7bc2986a0d75369a3b678cec5663a99e733a0211a2f61a413
|
data/lib/fluent/plugin/in_sqs.rb
CHANGED
@@ -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: ["
|
65
|
-
message_attribute_names: [
|
64
|
+
attribute_names: ["All"], # Receive all available built-in message attributes.
|
65
|
+
message_attribute_names: ['Component', 'component'] # Receive any custom message attributes.
|
66
66
|
).each do |message|
|
67
67
|
record = parse_message(message)
|
68
68
|
|