You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi, I created a lambda function with a post request to auto-create an incident, a SNS topic triggers function. An incident is being created by a function, but the component is not showing any association with the incident.
"No incidents or maintenance related to this downtime."
code:
PARAMS = {
"incident": {
"name": "Test Incident",
"status": "investigating",
"impact_override": "critical",
"body": "Currently investigating",
"Components_affected": "incident_test",
"components": {"xxxxxxxx": "major_outage"},
"component_ids": ["xxxxxxx"]
}
}
Please guide me, how I can associate incident with component, I mentioned component and component ID both in the code, still, something is missing. Thank you.
I solved the above issue, to associate a component with an incident, I was missing
"deliver_notifications": "true", in PARAMS.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.