Slack Action Query

Hi,
Is the slack action able to work behind a proxy? We have elasticsearch started with options for proxyHost and proxyPort yet the slack action times out. If we use a webhook that works but throws an exception because the slack api returns an empty body.

Regards,
David

Hey,

if you configure a global proxy in your elasticsearch.yml setting proxy port/host like this, this should work for webhook/slack/pagerduty/hipcaht actions as well as the http input.

watcher.http.proxy:
  host: localhost
  port: 8080

--Alex