feat: Update alert creation descriptions
Taylor committed
Sep 4, 2024 at 09:11 UTC
3d2979fc53218f13809cdfd92fd977d97ba1c02a
1 file changed
+4
-4
backend/app/integrations/monitoring_alert/schema/provision.py
+4
-4
@@ -17,21 +17,21 @@ class AvailableMonitoringAlerts(str, Enum):
17
18
WAZUH_SYSLOG_LEVEL_ALERT = (
19
"This alert monitors the SYSLOG_LEVEL field in the Wazuh logs. When the level is ALERT, "
20
- "it triggers an alert that is created within DFIR-IRIS. Ensure that you have a pipeline "
20
+ "it triggers an alert that is created within CoPilot. Ensure that you have a pipeline "
21
"rule that sets the SYSLOG_LEVEL field to ALERT when the Wazuh rule level is greater than 11."
22
)
23
SURICATA_ALERT_SEVERITY_1 = (
24
"This alert monitors the Suricata logs. When an the alert_severity field is 1, it triggers "
25
- "an alert that is created within DFIR-IRIS. Ensure that you have a pipeline rule that sets "
25
+ "an alert that is created within CoPilot. Ensure that you have a pipeline rule that sets "
26
)
27
OFFICE365_EXCHANGE_ONLINE = (
28
"This alert monitors the Office365 Exchange events. When an alert is detected, it triggers an "
29
- "alert that is created within DFIR-IRIS. Ensure that you have a pipeline rule that sets the "
29
+ "alert that is created within CoPilot. Ensure that you have a pipeline rule that sets the "
30
"alert_severity field to 1 when the Office365 alert is detected."
31
)
32
OFFICE365_THREAT_INTEL = (
33
"This alert monitors the Office365 Threat Intelligence events. When an alert is detected, it triggers an "
34
- "alert that is created within DFIR-IRIS. Ensure that you have a pipeline rule that sets the "
34
+ "alert that is created within CoPilot. Ensure that you have a pipeline rule that sets the "
35
"alert_severity field to 1 when the Office365 alert is detected."
36
)
37