fluent-plugin-firehose 0.0.4 → 0.0.5
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/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/fluent-plugin-firehose.gemspec +1 -1
- data/lib/fluent/plugin/out_firehose.rb +3 -3
- data/lib/fluent/plugin/version.rb +2 -2
- data/test/helper.rb +1 -0
- data/test/plugin/test_out_kinesis.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2524a1b0ccffd35b9757f527a8f114df2a29e4b6
|
|
4
|
+
data.tar.gz: f2bfc58a14c833058a9e079adff3013579589f3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b023e4aad6b471f915475eba4f128fda7540cccd1d855734605aea18df931a508db8871150247f8b6cb93c003f45af2559a2eef9e52954af6946d8835049635a
|
|
7
|
+
data.tar.gz: 7580b1cf96ddcecffcf7bf0342ea69a96de73e87d96c9af0ab933e9611080083f08f2057e60986c6f8c4e600ab9d64c5841db4a7e2265aa9ec30c763700eb946
|
data/Gemfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|
data/Gemfile.lock
CHANGED
data/LICENSE.txt
CHANGED
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
identification within third-party archives.
|
|
189
189
|
|
|
190
190
|
Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
191
|
-
Copyright 2015 Ji Oh Yoo
|
|
191
|
+
Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
192
192
|
|
|
193
193
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
194
194
|
you may not use this file except in compliance with the License.
|
data/Rakefile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -34,8 +34,8 @@ module FluentPluginFirehose
|
|
|
34
34
|
|
|
35
35
|
Fluent::Plugin.register_output('firehose', self)
|
|
36
36
|
|
|
37
|
-
config_set_default :include_time_key,
|
|
38
|
-
config_set_default :include_tag_key,
|
|
37
|
+
config_set_default :include_time_key, false
|
|
38
|
+
config_set_default :include_tag_key, false
|
|
39
39
|
|
|
40
40
|
config_param :aws_key_id, :string, default: nil, :secret => true
|
|
41
41
|
config_param :aws_sec_key, :string, default: nil, :secret => true
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
# language governing permissions and limitations under the License.
|
|
14
14
|
|
|
15
15
|
module FluentPluginFirehose
|
|
16
|
-
VERSION = '0.0.
|
|
16
|
+
VERSION = '0.0.5'
|
|
17
17
|
end
|
data/test/helper.rb
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
2
3
|
#
|
|
3
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
4
5
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo
|
|
2
|
+
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
5
|
# may not use this file except in compliance with the License. A copy of
|