Issues Alerts
Issues Alerts deliver notifications of impactful issues flagged by Galileo AI directly to your team via Slack and webhooks.
Issues Alerts notifies teams of new issues affecting users flagged as severe by Galileo AI. These alerts are configurable and delivered to your preferred channel, reducing the need for constant monitoring within LogRocket.


Click "Configure Alerts" -> "Alerts" to get started
Configuring Alerts
Issues Alerts can be configured with the following conditions:
- Page Definitions - Alerts can be scoped to focus just on certain Visited URL Definitions, or feature areas of a site or app. Page Definitions can also be used to filter issues on the Issues tab.
- Platform - This provides the option to limit the alerts to issues that have occurred on the chosen platform (Web/Android/iOS).
- Alert Threshold - the number of users an issue must affect before it is alerted on.

Alert Destinations
Alerts can be configured to send to Slack or webhooks. When creating an alert configuration, select the "Send to:" destination:

Issues Alerts destinations
Alerts via Slack

Issues Alert via Slack
When creating an Issues Alert, select "Slack" in the "Send to" field. Click the "Connect Slack" button to be directed to Slack's authentication and setup flow.

Completing the Slack flow completes the Slack integration.
Alerts via Webhook
When creating an Issues Alert Configuration, select "Webhook" in the "Send to" field. In the "Webhook URL" field, provide the endpoint URL from your chosen destination that provides the webhook.
Example webhook payload
{
type: 'IssuesAlert',
appID: 'apphub/logrocket',
title: 'New Severe Issues',
issue: {
issueType: 'EXCEPTION',
url: 'https://app.logrocket.com/issues/',
firstSeen: 1746809383, // epoch ms
sessionCount: 10,
sessionRate: '1.2', // occurrences per minute
label: 'Error β’ TypeError: Cannot read properties of undefined (reading "title")',
issueDescription: 'Users get an error and are logged out',
screenshotUrl: 'https://storage.googleapis.com/logrocket-assets/logrocket-logo-slack.png'
}
}
Updated 2 days ago