I'm trying to install the output-couchbase gem into logstash but the proxy is refusing to download the gem.
I've googled possible solutions to this problem and it seems that the best way to download and install a gem when behind a proxy is like this:
gem install --http-proxy http://user:password@proxy:port $gem_name
I assume this works when installing a gem for ruby.
is there a way to insert proxy settings when trying to download a gem into logstash?
ive attempted the following in the bin folder of my logstash installation:
logstash-plugin install --http-proxy http://user:password@proxy:port $gem_name
but it doesn't work.