Hello,
I have global proxy_url setting which was required to send multiple pager & slack channel receivers (10 +)
global:
smtp_from: 'alertmanager@xxxorg'
http_config:
I also want to setup a generic web hook, this webhook need to by pass (ignore) global proxy_url setting, it means no proxy should be there for webhook.
is there any way to override a global setting?
receivers:
- name: 'webhook'
webhook_configs:
- send_resolved: true
I have tried to add below setting to webhook receivers, but it seems to doesn't work.
http_config:
proxy_url: ""
Thanks for the help~