Has anybody gotten the s3 input plugin working behind a HTTP proxy?
All I get is the below?
{:timestamp=>"2015-10-15T15:06:03.343000+0200", :message=>"A plugin had an unrecoverable error. Will restart this plugin.\n Plugin: <LogStash::Inputs::S3 access_key_id=>\"XXX\", secret_access_key=>\"XXX\", aws_credentials_file=>\"/etc/logstash/aws\", bucket=>\"xxx\", region=>\"eu-west-1\", type=>\"s3\", proxy_uri=>\"http://updater:xxx@192.168.0.200:3128\", debug=>true, codec=><LogStash::Codecs::Plain charset=>\"UTF-8\">, use_ssl=>true, delete=>false, interval=>60, temporary_directory=>\"/var/lib/logstash/logstash\">\n Error: Connection refused - Connection refused", :level=>:error}
My conf looks like this:
input {
s3 {
access_key_id => "XXX"
secret_access_key => "XXX"
aws_credentials_file => "/etc/logstash/aws"
bucket => "xxx"
region => "eu-west-1"
type => "s3"
proxy_uri => "http://updater:xxx@192.168.0.200:3128"
}
}
There are no entries in my proxy-servers logfile, indicating, that logstash is not even trying to hit it...