Skip to content

Commit

Permalink
feat(DMVP-2705): Create Jira ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Aghamyan committed Oct 24, 2023
1 parent 14c0728 commit 84222fa
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,7 @@ def payload(alert_type,subject,aws_account,aws_alarmdescription,dimension_string

if os.environ['CREATE_JIRA_TICKET']:
all_data = items[0]["facts"]
description = "Alarm Description: "
description += f"\n{aws_alarmdescription}"
description = f"\n{aws_alarmdescription}"
description += f"\n h2. Details\n"
description += f"\n".join([f"{item['title']}: {item['value']}" for item in all_data])
description += f"\nURL: {url}"
Expand Down Expand Up @@ -289,7 +288,7 @@ def handler(event, context):
print("Context",context)
teams_webhook_url = os.environ['WEBHOOK_URL']
url = "https://" + os.environ['REGION'] + ".console.aws.amazon.com/cloudwatch/home?region=" + \
os.environ['REGION'] + "#alarmsV2:?~(alarmStateFilter~'ALARM)"
os.environ['REGION'] + "#alarmsV2:?~(alarmStateFilter~%27ALARM)"
# url = "https://eu-central-1.console.aws.amazon.com/cloudwatch/home?region=eu-central-1#alarmsV2:?~(alarmStateFilter~%27ALARM)"

logger.debug("Event: {}".format(event))
Expand Down

0 comments on commit 84222fa

Please sign in to comment.