mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-12 16:05:28 +00:00
This adds proxy support to the hipchat action. Right now neither hipchat nor slack nor pagerduty allow for this, but if you dont need a proxy for internal http connections, but you do for external, then this configuration cannot be done without setting a proxy for those actions. You can set it like this in the JSON ``` "actions" : { "notify-hipchat" : { "hipchat" : { "account" : "integration-account", "proxy" : { "host" : "localhost", "port" : 8080 }, "message" : { ... } } } } ``` Relates elastic/elasticsearch#3372 Original commit: elastic/x-pack-elasticsearch@4e8447ce37