Proxy_url on Logstash with x-pack

My Logstash is running behind a proxy server with all the logs successfully delivered to Elasticsearch Cloud. Now I'm trying to enable x-pack on logstash and looks like xpack is not following my proxy. Besides that I can't found any doc related to enable proxy on logstash with x-pack.

My es output
...
output {
elasticsearch {
hosts => "https://xxx.europe-west1.gcp.cloud.es.io:9243/"
password => "xxxx"
user => "logstash_internal"
proxy => "http://proxy.my.url:8080"
}
}
...

I tried to set all possible variables to setup the proxy but it didn't work .

JRUBY_OPTS="-J-Dhttp.proxyHost=proxy.myhost.local -J-Dhttp.proxyPort=8080 -J-Dhttps.proxyHost=proxy.myhost.local -J-Dhttps.proxyPort=8080"
http_proxy="http://proxy.myhost.local:8080"
https_proxy="http://proxy.myhost.local:8080"
HTTP_PROXY="http://proxy.myhost.local:8080"
HTTPS_PROXY="http://proxy.myhost.local:8080"
LS_JAVA_OPTS=" -Dhttp.proxyHost=proxy.myhost.local -Dhttp.proxyPort=8080 -Dhttps.proxyHost=proxy.myhost.local -Dhttps.proxyPort=8080"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.