Alerts
The Alert tab contains important details including recipients, time, template type, flow id. Alert is an alert mechanism that allows you to quickly notice important information or issues that may arise during an integration process.
For example, if data is exchanged between two systems, integration alerts notify users or system administrators when an error occurs or an unexpected situation occurs. Thus, problems can be detected and resolved faster and continuity of integration in the system can be ensured.
Alerts are an important tool for monitoring, identifying and fixing problems in integration processes so that problems in inter-system communication can be addressed quickly.
| Field | Description |
|---|---|
| Name | Alert Name |
| Alert Recipients | Recipients of Alert. Multiple recipients can be defined. Separate multiple email addresses with comma. |
| Alert Time | Cron value can be defined. If want to send mail to recipients instantly, write "insant" instead of cron value. |
| Alert Flow IDs | Select which flows the defined alert. |
| Use Templated | If checked, alert mail processor use defined alert template. |
| Alert Template | Please look at the Using part of this page. |
| Alert Template Type | Template should be selected depending on the template content. |
Error details map can be use in template. Syntax is :
<% errors.each { key, value -> %>
$value.flowId,
$value.errorText,
$value.count
<% } %>
An example using in HTML Table;
<table style="border: none; margin-left: auto; margin-right: auto" cellpadding="0" cellspacing="0" width="600" class="content">
<tr>
<td class="general center">
<h1>General Section</h1>
<p>This is a general section with some more information inside it.</p>
<p class="small">Any supplementary information</p>
<p class="small">
<a href="#attribution">Template Attribution</a>
</p>
</td>
</tr>
<% errors.each { key, value -> %>
<tr>
<td class="failure notification">
<table>
<tr>
<td>$value.flowId</td>
<td>$value.errorText</td>
<td>$value.count</td>
</tr>
</table>
</td>
</tr>
<% } %>
</table>