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.