We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0551946 commit b67a79dCopy full SHA for b67a79d
pyth_observer/zenduty.py
@@ -9,7 +9,7 @@
9
10
11
async def send_zenduty_alert(alert_identifier, message, resolved=False, summary=""):
12
- url = f"https://www.zenduty.com/api/events/{os.environ['ZENDUTY_INTEGRATION_KEY']}/"
+ url = f"https://events.zenduty.com/api/events/{os.environ['ZENDUTY_INTEGRATION_KEY']}/"
13
# Use a hash of the alert_identifier as a unique id for the alert.
14
# Take the first 32 characters due to length limit of the api.
15
entity_id = hashlib.sha256(alert_identifier.encode("utf-8")).hexdigest()[:32]
0 commit comments