Question 1,063 of 1,170
Monitor and Maintain Azure ResourceseasyMultiple ChoiceObjective-mapped

AZ-104 Monitor and Maintain Azure Resources Practice Question

This AZ-104 practice question tests your understanding of monitor and maintain azure resources. Examine the command output carefully: the correct answer depends on what the output actually shows, not on general recall alone. 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

KQL draft:
Heartbeat
| __________
| summarize LastSeen = max(TimeGenerated) by Computer

Requirement: show only records from the last 30 minutes before summarizing.

Based on the exhibit, which KQL clause should replace the blank to show only heartbeat records from the last 30 minutes?

Exhibit

KQL draft:
Heartbeat
| __________
| summarize LastSeen = max(TimeGenerated) by Computer

Requirement: show only records from the last 30 minutes before summarizing.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

where TimeGenerated >= ago(30m)

The KQL clause `where TimeGenerated >= ago(30m)` filters the results to include only records where the `TimeGenerated` timestamp is within the last 30 minutes. The `ago()` function calculates a datetime value relative to the current time, and the `>=` operator ensures only records from that point forward are returned. This directly satisfies the requirement to show heartbeat records from the last 30 minutes.

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.

  • project Computer, TimeGenerated

    Why it's wrong here

    Project changes the columns returned, but it does not limit the records by time.

    When this WOULD be correct

    This option would be correct in a question that asks: 'Which KQL clause should be used to display only the Computer and TimeGenerated columns from heartbeat records?' where the goal is column selection, not time filtering.

  • where TimeGenerated >= ago(30m)

    Why this is correct

    The where clause filters rows before summarizing, and ago(30m) is the KQL function that represents the last 30 minutes from the current time. This is the correct way to restrict the Heartbeat table to recent records before calculating the most recent check-in for each computer. It is a standard operational troubleshooting pattern in Log Analytics.

    Related concept

    Read the scenario before looking for a memorised answer.

  • extend TimeWindow = 30m

    Why it's wrong here

    Extend creates a new calculated column, but it does not filter the table to recent records.

    When this WOULD be correct

    A question asking to add a column showing a 30-minute time window for each record, such as 'Add a column named TimeWindow that contains the value 30m for all records.'

  • sort by TimeGenerated desc

    Why it's wrong here

    Sorting changes the order of results, but it does not exclude older heartbeat records from the query.

    When this WOULD be correct

    If the question asked 'Which clause should replace the blank to display heartbeat records in descending order of time?' then `sort by TimeGenerated desc` would be correct.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-104 exam frequently reuses these exact scenarios with slightly different constraints.

where TimeGenerated >= ago(30m)Correct answer

Why this is correct

The where clause filters rows before summarizing, and ago(30m) is the KQL function that represents the last 30 minutes from the current time. This is the correct way to restrict the Heartbeat table to recent records before calculating the most recent check-in for each computer. It is a standard operational troubleshooting pattern in Log Analytics.

project Computer, TimeGeneratedWrong answer — click to see why

Why this is wrong here

The 'project' operator only selects columns to display, it does not filter records by time. The question requires filtering heartbeat records to those from the last 30 minutes, which requires a 'where' clause with a time condition.

★ When this WOULD be the correct answer

This option would be correct in a question that asks: 'Which KQL clause should be used to display only the Computer and TimeGenerated columns from heartbeat records?' where the goal is column selection, not time filtering.

Why candidates choose this

Candidates may confuse the 'project' operator with filtering, thinking that selecting specific columns implicitly limits the data, or they may misread the question as asking about which columns to show rather than which records to keep.

extend TimeWindow = 30mWrong answer — click to see why

Why this is wrong here

The `extend` operator adds a calculated column but does not filter records; it would not limit results to the last 30 minutes.

★ When this WOULD be the correct answer

A question asking to add a column showing a 30-minute time window for each record, such as 'Add a column named TimeWindow that contains the value 30m for all records.'

Why candidates choose this

Candidates may confuse adding a time-related column with filtering by time, or think `extend` can implicitly filter data.

sort by TimeGenerated descWrong answer — click to see why

Why this is wrong here

The `sort by` clause only orders results but does not filter them; it cannot limit records to the last 30 minutes.

★ When this WOULD be the correct answer

If the question asked 'Which clause should replace the blank to display heartbeat records in descending order of time?' then `sort by TimeGenerated desc` would be correct.

Why candidates choose this

Candidates may confuse sorting with filtering, thinking that sorting by time and then taking the top results implicitly filters to recent data.

Analysis generated from the official AZ-104blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse filtering (`where`) with projection (`project`), sorting (`sort`), or extending (`extend`), and may choose a clause that manipulates the output format or order instead of actually restricting the rows based on a time condition.

Detailed technical explanation

How to think about this question

The `ago()` function in Kusto Query Language (KQL) returns a datetime value representing the current UTC time minus the specified timespan (e.g., `ago(30m)` returns the timestamp 30 minutes before the query execution). This is evaluated at query runtime, making it dynamic and ideal for real-time monitoring scenarios. In Azure Monitor, heartbeat records from Azure Arc or Log Analytics agents include a `TimeGenerated` column that is set to the UTC time when the record was generated, so filtering with `ago()` ensures you only see recent agent connectivity data.

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

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related AZ-104 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free AZ-104 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this AZ-104 question test?

Monitor and Maintain Azure Resources — This question tests Monitor and Maintain Azure Resources — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: where TimeGenerated >= ago(30m) — The KQL clause `where TimeGenerated >= ago(30m)` filters the results to include only records where the `TimeGenerated` timestamp is within the last 30 minutes. The `ago()` function calculates a datetime value relative to the current time, and the `>=` operator ensures only records from that point forward are returned. This directly satisfies the requirement to show heartbeat records from the last 30 minutes.

What should I do if I get this AZ-104 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 →

How Courseiva writes practice questions · Editorial policy

Keep practising

More AZ-104 practice questions

Last reviewed: Jun 11, 2026

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.

Loading comments…

Sign in to join the discussion.

This AZ-104 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 AZ-104 exam.