Microsoft Azure Developer Associate AZ-204 Practice Question

You are troubleshooting slow response times in an Application Insights resource for an ASP.NET Core web API. You must identify the five request URLs with the highest average duration over the last 30 minutes, excluding any requests that failed. Which Kusto Query Language (KQL) statement should you run?

  • requests
    | where success == false and timestamp >= ago(30m)
    | summarize maxDuration = max(duration) by url
    | top 5 by maxDuration desc
    
  • requests
    | where success == true and timestamp >= ago(30m)
    | summarize avgDuration = avg(duration) by url
    | top 5 by avgDuration desc
    
  • requests
    | where timestamp >= ago(30m)
    | summarize avg(duration) by url
    | sort by duration desc
    | take 5
    
  • requests
    | where success == true and timestamp >= ago(30m)
    | summarize avgDuration = avg(duration) by url
    | order by avgDuration asc
    | take 5
    
Microsoft Azure Developer Associate AZ-204
Monitor and troubleshoot Azure solutions
Your Score:
Settings & Objectives
Random Mixed
Questions are selected randomly from all chosen topics, with a preference for those you haven’t seen before. You may see several questions from the same objective or domain in a row.
Rotate by Objective
Questions cycle through each objective or domain in turn, helping you avoid long streaks of questions from the same area. You may see some repeat questions, but the distribution will be more balanced across topics.

Check or uncheck an objective to set which questions you will receive.

Bash, the Crucial Exams Chat Bot
AI Bot