Understanding suppressionDuration in Microsoft Sentinel Analytics Rules — Alert Suppression
This SC-200 practice question tests your understanding of respond to security incidents. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```
{
"displayName": "Malicious URL detect",
"description": "Detects access to known malicious URLs.",
"tactics": ["InitialAccess"],
"query": "UrlClickEvents | where ActionType == 'ClickAllowed' | where ThreatTypes contains 'Malicious' | project Timestamp, AccountUpn, Url",
"queryFrequency": "PT1H",
"queryPeriod": "PT1H",
"triggerOperator": "GreaterThan",
"triggerThreshold": 0,
"suppressionDuration": "PT1H",
"suppressionEnabled": false,
"incidentConfiguration": {
"createIncident": true,
"groupingConfiguration": null
}
}
```
You are reviewing a scheduled analytics rule in Microsoft Sentinel. What does the suppressionDuration setting affect?
Exhibit
Refer to the exhibit.
```
{
"displayName": "Malicious URL detect",
"description": "Detects access to known malicious URLs.",
"tactics": ["InitialAccess"],
"query": "UrlClickEvents | where ActionType == 'ClickAllowed' | where ThreatTypes contains 'Malicious' | project Timestamp, AccountUpn, Url",
"queryFrequency": "PT1H",
"queryPeriod": "PT1H",
"triggerOperator": "GreaterThan",
"triggerThreshold": 0,
"suppressionDuration": "PT1H",
"suppressionEnabled": false,
"incidentConfiguration": {
"createIncident": true,
"groupingConfiguration": null
}
}
```
A
It groups alerts into a single incident within that time window.
Why wrong: Incident grouping is controlled by groupingConfiguration, not suppressionDuration.
B
It delays the execution of the query by that amount of time.
Why wrong: Query period defines the lookback, not a delay.
C
It determines how often the query runs.
Why wrong: Query frequency controls how often the query runs, not suppression.
D
It stops the rule from creating new alerts for that duration after an alert is generated.
Suppression duration prevents duplicate alerts within the specified time.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
It stops the rule from creating new alerts for that duration after an alert is generated.
The suppressionDuration setting in a Microsoft Sentinel scheduled analytics rule stops the rule from creating new alerts for a specified period after an alert is generated. This prevents alert fatigue by suppressing duplicate alerts from the same rule when the same conditions persist, allowing analysts to focus on unique incidents.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
It groups alerts into a single incident within that time window.
Why it's wrong here
Incident grouping is controlled by groupingConfiguration, not suppressionDuration.
✗
It delays the execution of the query by that amount of time.
Why it's wrong here
Query period defines the lookback, not a delay.
✗
It determines how often the query runs.
Why it's wrong here
Query frequency controls how often the query runs, not suppression.
✓
It stops the rule from creating new alerts for that duration after an alert is generated.
Why this is correct
Suppression duration prevents duplicate alerts within the specified time.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is confusing suppressionDuration with incident grouping or query frequency settings, as candidates often think it controls how alerts are merged or how often the rule runs, rather than its actual purpose of temporarily halting alert creation after an alert fires.
Detailed technical explanation
How to think about this question
Under the hood, suppressionDuration works by maintaining a suppression window per rule instance; once an alert fires, Sentinel records the time and suppresses any subsequent query results that would trigger another alert until the duration expires. This is critical in high-frequency rules (e.g., checking every 5 minutes for brute-force attempts) where the same attack might persist across multiple query runs, preventing inbox flooding while still capturing the initial event.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this SC-200 question in full detail.
Respond to security incidents — This question tests Respond to security incidents — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: It stops the rule from creating new alerts for that duration after an alert is generated. — The suppressionDuration setting in a Microsoft Sentinel scheduled analytics rule stops the rule from creating new alerts for a specified period after an alert is generated. This prevents alert fatigue by suppressing duplicate alerts from the same rule when the same conditions persist, allowing analysts to focus on unique incidents.
What should I do if I get this SC-200 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SC-200 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SC-200 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.