Hello,
I installed zabbix slack webhook (https://www.zabbix.com/integrations/slack) media in an Alarm mode, so messages about problem should be updated when they'are resovled.
When problem happens, issue is posted into the channel.
But when the issue is resolved (by trigger itself) , nothing happens
I put a debug line into the beginning of the webhook script:
and it turned out that hook script is just not called when a problem is resolved.
What could be wrong? How to make it working?
Zabbix Server 5.0.21
I installed zabbix slack webhook (https://www.zabbix.com/integrations/slack) media in an Alarm mode, so messages about problem should be updated when they'are resovled.
When problem happens, issue is posted into the channel.
But when the issue is resolved (by trigger itself) , nothing happens
I put a debug line into the beginning of the webhook script:
Code:
try {
Zabbix.Log(3, '[ Slack Webhook ] webhook received');
var params = JSON.parse(value);
validateParams(params);
var req = new CurlHttpRequest(),
...
What could be wrong? How to make it working?
Zabbix Server 5.0.21
Comment