fluent-plugin-elb-log 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37c8da7bdece65b571ccbed8f76efd0d9948844f
4
- data.tar.gz: bbc170103ca0179b0e922e52c39c149612ea1ea6
3
+ metadata.gz: 73d9f6af2851a92711b44c44499cc7420801d484
4
+ data.tar.gz: cba742a9997bde6f4713e5ad31abd640898f8943
5
5
  SHA512:
6
- metadata.gz: c2aed13cdda7c90e06916f339f33526ed593cd1e662ed79ed6fd30381aaa5fd674f4a76a8d7cce70fd2033278539c2608d218ef993024b93e7cb07621071f8c6
7
- data.tar.gz: cced1dc3d1810942fcaa56f6fa34da2aa5cc02adeda8d3cfbeb6b0836ef17a926e5bc9608c4b449af2aeeaccca2fc91004a12531d3de76e6f2b13ae0e57f5499
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.5"
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 :proxy_uri, :string, :default => nil
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.5
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: 2015-08-13 00:00:00.000000000 Z
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