nerdexam
Microsoft

AZ-400 · Question #89

Drag and Drop Question You have a web app named App1 that is hosted on multiple servers. App1 uses Application Insights in Azure Monitor. You need to compare the daily CPU usage from the last week for

The correct answer is bin(timestamp,1d); render timechart. The query requires 'bin(timestamp,1d)' to group/aggregate CPU usage data into daily buckets (1-day intervals) over the past week, which directly satisfies the 'daily' comparison requirement. 'render timechart' is then used to visualize the results as a time-based chart, and when

Submitted by parkjh· Mar 6, 2026Monitor and maintain Azure resources - specifically configuring and querying Application Insights telemetry using KQL in Azure Monitor (AZ-104 / AZ-305 Monitoring domain)

Question

Drag and Drop Question You have a web app named App1 that is hosted on multiple servers. App1 uses Application Insights in Azure Monitor. You need to compare the daily CPU usage from the last week for all servers. How should you complete the query? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Answer:

Exhibit

AZ-400 question #89 exhibit

Answer Area

Drag items

bin(timestamp,1d)bin(timestamp,1h)project timechartrender chartrender timechart

Correct arrangement

  • bin(timestamp,1d)
  • render timechart

Explanation

The query requires 'bin(timestamp,1d)' to group/aggregate CPU usage data into daily buckets (1-day intervals) over the past week, which directly satisfies the 'daily' comparison requirement. 'render timechart' is then used to visualize the results as a time-based chart, and when combined with a 'by Cloud_RoleInstance' or similar split clause, it automatically renders separate series for each server, enabling side-by-side comparison. Together, these two components produce a daily time-series visualization split by server.

Topics

#Azure Monitor#Application Insights#Kusto Query Language (KQL)#Log Analytics

Community Discussion

No community discussion yet for this question.

Full AZ-400 Practice