Hi,
I successfully deployed Supercheck and really enjoy the product!
I'm now trying to integrate it with our 24/7 notifications system PagerDuty. I believed it will be easy as Supercheck takes WebHook integration, but PagerDuty does not deliver a webhook as a simple "Incoming WebHook link" as before (deprecated), but an "Events API v2" which need a JSON payload to be pass, instead of juste a simple link:
curl --request 'POST' \
--url 'https://events.pagerduty.com/v2/enqueue' \
--header 'Content-Type: application/json' \
--data '{
"payload": {
"summary": "Test alert",
"severity": "critical",
"source": "Alert source"
},
"routing_key": "<redacted>",
"event_action": "trigger"
}'
How can we achieve the PagerDuty integration with Supercheck? As Supercheck mentions integration with PagerDuty, it will be a nice touch to add a support page of how it can be achieved.
Hi,
I successfully deployed Supercheck and really enjoy the product!
I'm now trying to integrate it with our 24/7 notifications system PagerDuty. I believed it will be easy as Supercheck takes WebHook integration, but PagerDuty does not deliver a webhook as a simple "Incoming WebHook link" as before (deprecated), but an "Events API v2" which need a JSON payload to be pass, instead of juste a simple link:
How can we achieve the PagerDuty integration with Supercheck? As Supercheck mentions integration with PagerDuty, it will be a nice touch to add a support page of how it can be achieved.