Skip to content

Alert

Alerts can be configured to help users receive feedback from their data testing results. Currently, Data Caterer supports Slack for alerts.

Slack

Define a Slack token and one or more Slack channels that will receive an alert like the below.

Slack alert sample

var conf = configuration()
    .slackAlertToken("abc123")                                //use appropriate Slack token (usually bot token)
    .slackAlertChannels("#test-alerts", "#pre-prod-testing"); //define Slack channel(s) to receive alerts on

execute(conf, ...);
val conf = configuration
  .slackAlertToken("abc123")                                //use appropriate Slack token (usually bot token)
  .slackAlertChannels("#test-alerts", "#pre-prod-testing")  //define Slack channel(s) to receive alerts on

execute(conf, ...)