fluent-plugin-elb-log 0.2.5 → 0.2.6
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/fluent-plugin-elb-log.gemspec +1 -1
- data/lib/fluent/plugin/in_elb_log.rb +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73d9f6af2851a92711b44c44499cc7420801d484
|
|
4
|
+
data.tar.gz: cba742a9997bde6f4713e5ad31abd640898f8943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41f9a7bf23eda7844303b51e2148dfaafd073c82bef1b0a100d3ba1dec069b56b2e091a1f6cd25574ee48d315bb5e6b030a545eb649601c146c8a2dae5ccd596
|
|
7
|
+
data.tar.gz: dd2c41b161a8a7807e85cec29fafba4285755114d90824be770a31df97ebe2beeff801f6678c3531d3c938db688cd2a7d72be377196af19e56a05d7e5b7bc148
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "fluent-plugin-elb-log"
|
|
7
|
-
spec.version = "0.2.
|
|
7
|
+
spec.version = "0.2.6"
|
|
8
8
|
spec.authors = ["shinsaka"]
|
|
9
9
|
spec.email = ["shinx1265@gmail.com"]
|
|
10
10
|
spec.summary = "Amazon ELB log input plugin"
|
|
@@ -18,7 +18,7 @@ class Fluent::Elb_LogInput < Fluent::Input
|
|
|
18
18
|
config_param :timestamp_file, :string, :default => nil
|
|
19
19
|
config_param :refresh_interval, :integer, :default => 300
|
|
20
20
|
config_param :buf_file, :string, :default => './fluentd_elb_log_buf_file'
|
|
21
|
-
config_param :
|
|
21
|
+
config_param :http_proxy, :string, :default => nil
|
|
22
22
|
|
|
23
23
|
def configure(conf)
|
|
24
24
|
super
|
|
@@ -100,6 +100,9 @@ class Fluent::Elb_LogInput < Fluent::Input
|
|
|
100
100
|
options[:access_key_id] = @access_key_id
|
|
101
101
|
options[:secret_access_key] = @secret_access_key
|
|
102
102
|
end
|
|
103
|
+
if @http_proxy
|
|
104
|
+
options[:http_proxy] = @http_proxy
|
|
105
|
+
end
|
|
103
106
|
$log.debug "S3 client connect"
|
|
104
107
|
Aws::S3::Client.new(options)
|
|
105
108
|
rescue => e
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-elb-log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- shinsaka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
90
|
version: '0'
|
|
91
91
|
requirements: []
|
|
92
92
|
rubyforge_project:
|
|
93
|
-
rubygems_version: 2.4.5
|
|
93
|
+
rubygems_version: 2.4.5.1
|
|
94
94
|
signing_key:
|
|
95
95
|
specification_version: 4
|
|
96
96
|
summary: Amazon ELB log input plugin
|