IBM Cloud Docs
Why is the notification absent from the destinations?

Why is the notification absent from the destinations?

Notification is not received at the destinations.

Notification is not received at the destinations, for example: SMTP_IBM, SMS_IBM.

The most common cause would be that conditions (rules) written for the topic does not match with the incoming payload.

If you are using static events (event type, event subtype and severity)

  • When both event type and event subtype are provided, then type attribute of incoming payload must be a combination of the type and subtype filter. For example, if event type is bluemix.certificate_manager and event subtype is expiring_in_90_days then type attribute in the incoming payload would be bluemix.certificate_manager:expiring_in_90_days.

    "type":"bluemix.certificate_manager:expiring_in_90_days"
    
  • When only event type is provided in the stated example, then type attribute would be bluemix.certificate_manager.

    "type":"bluemix.certificate_manager"
    
  • When event type, event subtype and severity are provided, where event type is bluemix.certificate_manager, event subtype is expiring_in_90_days and severity is LOW then type would be bluemix.certificate_manager:expiring_in_90_days and severity would be LOW.

    "type":"bluemix.certificate_manager:expiring_in_90_days",
    "severity": "LOW"
    
  • Event type, event subtype, and severity are termed as event conditions. Additionally, user can provide advanced conditions.

If both event conditions and advanced conditions are provided, then both condition types must be satisfied for a notification to be routed to a topic.