# Alerts and Notifications Notifications make the RI Platform much more useful for data scientists. Below, you may learn the different kinds of supported notifications and how you can easily set them up. ## Types of Notifications All the following types of notifications are configured at the Project level. You can opt into any subset. ### Monitoring Notifications * Preferred means of learning about model health over time. * Triggered when a single bin (i.e. a day's worth of data) of Continuous Testing completes and has failing Issues. * Issues are key statistics that the RI Platform tracks over time, such as Abnormality Rate, Prediction Drift, or Average Test Severity. * Issues are a proxy for model health, so you will only be alerted when your model is unhealthy. * Configurable by toggling Thresholds for each Issue. * You can fine tune the thresholds or disable it entirely via the web app or the SDK. * Default thresholds are computed from the Stress Test used to create your AI Firewall. * Will NOT be sent if there are no failing Issues. * If you find a metric is too noisy and disable it, it will no longer count as "failing" and no notifications will be triggered unless other Issues fail. Disabling thresholds is a great way to avoid alert fatigue. * Show you at a glance what the high-level problems are with your model ### Job Action Notifications * Triggered during key status changes in the life cycle of a testing job, such as completion or failure. * Useful for long-running jobs with large datasets / complex models. ### Daily Digest Notifications * Include a summary of all Stress Test runs for the day. * Will NOT be sent if there are no Stress Tests for the day. * Sent out every day at 8am in the timezone configured by the default workspace (initialized to UTC). ## Configuring Notifications ### How to Configure Email Notifications * Email addresses can be added by clicking on the alerts icon for a particular project in the web app or calling a method in the SDK. ```python project = rime_client.get_project("", "Monitoring") ``` * Currently, Gmail and Outlook are the only officially supported email clients. * Email notifications are supported for Enterprise customers and Cloud Trial customers. * Enterprise customers will need to configure SMTP with their own server. SMTP settings live under workspace settings. * Cloud Trial customers will receive emails from “dev@robustintelligence.com”. Add this email address to your safe senders list to prevent it from going to spam. * Emails can be removed from a project in the web app or the SDK. ```python project = rime_client.get_project("") ``` ### How to Configure Webhooks * Arbitrary webhook URLs may be added by clicking the alerts icon for a particular project on the web app or by calling a method in the SDK. ```python project = rime_client.get_project(" * Thresholds can also be modified in the SDK. ```python project = rime_client.get_project("