Hi,
I'm using the elasticsearch filter plugin to query an Elasticsearch instance installed in the same server:
elasticsearch {
query_template => "..."
hosts => ["localhost:9200"]
index => "..."
}
The proxy is configured with no-proxy settings for local addresses:
no_proxy=localhost, 127.0.0.1
However the elasticsearch filter plugin ignores this configuration and uses the proxy to connect to ES. How can I solve this issue?