You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/alerts/monitors/create-monitor.md
+24-13Lines changed: 24 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,13 +166,18 @@ You can set a logs monitor trigger to alert based on the following:
166
166
167
167
Triggers are evaluated by balancing the requirement of timely alert notifications while ensuring that monitor data is indeed available to evaluate trigger conditions.
168
168
169
-
* For [static logs monitors](#static-detection-method), triggers are similar to "Alert when the result is greater than _ within Y Minutes". The triggers are evaluated periodically as below.
170
-
| When detection window (Y) is | Evaluate trigger every |
* For [static logs monitors](#static-detection-method), you can control trigger monitor evaluation frequency using the options below. If `Alert when result is <greater/less> than <_> within <X>. Evaluate trigger every <Y>.`:
170
+
| When detection window (X) is | Evaluate trigger every (Y) |
171
+
|:-----|:----------------------|
172
+
| 5m | 1m, 2m |
173
+
| 10m | 1m, 2m, 5m |
174
+
| 15m | 1m, 2m, 5m, 10m |
175
+
| 30m | 2m, 5m, 10m, 20m |
176
+
| 1h | 2m, 5m, 10m, 20m |
177
+
| 3h | 10m, 20m, 40m, 1h |
178
+
| 6h | 10m, 20m, 40m, 1h |
179
+
| 12h | 20m, 40m, 1h |
180
+
| 24h | 20m, 40m, 1h |
176
181
* For [anomaly logs monitors](#anomaly-detection-method), triggers are evaluated every `timeslice` as specified in the monitor query. For example, the below query is evaluated every 2 minutes.
177
182
```
178
183
_sourceCategory=Labs/Apache/Access
@@ -187,21 +192,26 @@ Triggers are evaluated by balancing the requirement of timely alert notification
187
192
188
193
When configuring monitor trigger conditions, you can set a resolution window to resolve alerts quickly once the underlying issue is fixed. The resolution window specifies how long a monitor will wait before resolving an alert after the issue is corrected.
189
194
190
-
For example, if your monitor evaluates the last 1 hour, you can set a resolution window of 15 minutes. Once the resolution window is continuously satisfied for 15 minutes, the alert will resolve automatically.<br/><img src={useBaseUrl('img/alerts/monitors/config-resolution-window-2.png')} alt="config-resolution-window" style={{border: '1px solid gray'}} width="700"/>
195
+
For example, if your monitor evaluates the last 1 hour, you can set a resolution window of 15 minutes. Once the resolution window is continuously satisfied for 15 minutes, the alert will resolve automatically.<br/><img src={useBaseUrl('img/alerts/monitors/config-resolution-window-logs.png')} alt="config-resolution-window" style={{border: '1px solid gray'}} width="700"/>
`Alert when result is <threshold type> <threshold> within <time range>`
203
+
`Alert when result is <threshold type> <threshold> within <time range - trigger>. Evaluate every <trigger - frequency>.`
199
204
200
205
| Parameter | Description |
201
206
|:--|:--|
202
207
|`<threshold type>`| How you want the value compared. Select **greater than**, **greater than or equal**, **less than or equal**, or **less than**. |
203
208
|`<threshold>`| The value against which the trigger will be evaluated. You can specify any valid numeric value up to **1,000**. |
204
-
|`<time range>`| The duration of time to evaluate (values range from 5 minutes to 24 hours). |
209
+
|`<time range - trigger>`| The duration of time to evaluate. Values range from 2 Minutes to 24 Hours (or 7 Days, by request only). |
210
+
|`<trigger - frequency>`| The frequency that the trigger is evaluated. |
211
+
212
+
After setting the frequency evaluation, you can preview your [estimated scan data](/docs/manage/partitions/flex/estimate-scan-data) by clicking the **Show Estimated Scan** icon, as seen below.
The recovery condition is set by default to the opposite of the alert condition. If you need to change these settings, switch on the **Edit recovery settings** toggle and then adjust values for the recovery settings accordingly.
207
217
@@ -211,11 +221,12 @@ For example, if an alert is set to `greater than 10`, the recovery would be se
`Alert when missing data within <time range - trigger>. Evaluate every <trigger - frequency>.`
215
225
216
226
| Parameter | Description |
217
227
|:--|:--|
218
-
|`<time range>`| The duration of time to evaluate (values range from 5 minutes to 24 hours). |
228
+
|`<time range - trigger>`| The duration of time to evaluate (values range from 5 minutes to 24 hours). |
229
+
|`<trigger - frequency>`| The frequency that the trigger is evaluated. |
219
230
220
231
For recovery, Sumo Logic will automatically resolve the incident when the resolution condition is satisfied.
221
232
@@ -270,7 +281,7 @@ For Metrics monitors, you can choose to recover based on a single data point bel
270
281
271
282
When configuring monitor trigger conditions, you can set a resolution window to resolve alerts quickly once the underlying issue is fixed. The resolution window specifies how long a monitor will wait before resolving an alert after the issue is corrected.
272
283
273
-
For example, if your monitor evaluates the last 1 hour, you can set a resolution window of 15 minutes. Once the resolution window is continuously satisfied for 15 minutes, the alert will resolve automatically.<br/><img src={useBaseUrl('img/alerts/monitors/config-resolution-window-2.png')} alt="config-resolution-window" style={{border: '1px solid gray'}} width="700"/>
284
+
For example, if your monitor evaluates the last 1 hour, you can set a resolution window of 15 minutes. Once the resolution window is continuously satisfied for 15 minutes, the alert will resolve automatically.<br/><img src={useBaseUrl('img/alerts/monitors/config-resolution-window-metrics.png')} alt="config-resolution-window" style={{border: '1px solid gray'}} width="700"/>
Copy file name to clipboardExpand all lines: docs/alerts/monitors/overview.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,9 @@ To manage and/or view monitors, you'll need the **Manage** and **View Monitor
23
23
24
24
The frequency at which a monitor executes depends on various factors, such as the underlying query, the operators used, and the detection window. This frequency can range from a few seconds to several minutes.
25
25
26
-
For example, if the detection window of your alert is one day, it will be evaluated every few minutes. Conversely, if the detection window of the monitor is 15 minutes, it will be evaluated every few seconds.
26
+
For example, if the detection window of your alert is 24 hours, it will be evaluated every few minutes. Conversely, if the detection window of the monitor is 15 minutes, it will be evaluated every few seconds.
27
+
28
+
See [Trigger Type (Logs)](/docs/alerts/monitors/create-monitor/#trigger-type-logs) and [Trigger Type (Metrics)](/docs/alerts/monitors/create-monitor/#trigger-type-metrics) for more information.
0 commit comments