Hello, We are using Prefect cloud and we are tryi...
# prefect-cloud
j
Hello, We are using Prefect cloud and we are trying to integrate PagerDuty with our flow. We are trying to run the following code block to send notification to Pagerduty but it is not working properly.
Copy code
@flow(name="Pager Alert Test")
def pager_test():
    pagerduty_webhook_block = PagerDutyWebHook.load("pagerduty-webhook")
    pagerduty_webhook_block.logger.setLevel("DEBUG")
    pagerduty_webhook_block.notify("Hello from Prefect!")
There are no error in the flow and I can see from the event feed that
Block pager duty webhook notify called
is triggered. Has anyone able to setup Pagerduty properly?