Custom webhook

You can set up a distribution method for your alert. One option is to define a custom web hook to which a payload is sent, when an alert threshold is triggered. You can also specify a set of optional headers, and basic auth credentials if your endpoint is protected by basic auth.

By default, the POST request has a Content-Type of application/json. The following example shows a sample payload.
{
  "timestamp": 1442848504431,
  "condition": {"value":5.0,"operator":"GTE"},
  "value": "CRASH",
  "offenders": [
    { "XXX 1.0": 5.0 },
    { "XXX 2.0": 1.0 }
  ],
  "property":"closedBy",
  "eventType":"MfpAppSession",
  "title":" Crash Count Alert for Application ABC",
  "message": "The crash count for a application ABC exceeded XYZ.
    View the Crash Summary table in the Crashes tab in the Apps 
    section of the MobileFirst Analytics Console 
    to see a detailed stacktrace of this crash instance."
}
The POST request includes the following attributes.