Exam AZ-400 All QuestionsBrowse all questions from this exam
Question 50

HOTSPOT -

You have an Azure web app named Webapp1.

You need to use an Azure Monitor query to create a report that details the top 10 pages of Webapp1 that failed.

How should you complete the query? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

    Correct Answer:

    Box 1: requests -

    Failed requests (requests/failed):

    The count of tracked server requests that were marked as failed.

    Kusto code:

    requests

    | where success == 'False'

    Box 2: success == false -

    Reference:

    https://docs.microsoft.com/en-us/azure/azure-monitor/platform/app-insights-metrics

Discussion
ScreamingHand

Answer looks good to me https://docs.microsoft.com/en-us/azure/azure-monitor/platform/app-insights-metrics

rdemontis

you are right!

budha

It was on my exam on December 7, 2022.

GokhanSenyuz

Answer is Correct requests | where success == 'False' | summarize sum(itemCount) by bin(timestamp, 5m) | render barchart https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/app-insights-metrics

MrKingpin

Answer is Correct https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/app-insights-metrics#failed-requests-requestsfailed

AZ5cert

Correct Answer: requests and success == 'False' requests | where success == 'False' | summarize sum(itemCount) by bin(timestamp, 5m) | render barchart https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/app-insights-metrics

husam421

requests | where success == 'False' | summarize sum(itemCount) by bin(timestamp, 5m) | render barchart

yana_b

Provided answer is correct -> for evidence refer to Title: Failed requests (requests/failed) on this page -> https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/app-insights-metrics

syu31svc

Given answer is correct and link provided supports it

UnknowMan

Correct (pageviews dont have success or resultcode to query)

Cheehp

Selected during exam. requests and success==false.

Axz

Got this question today March 2022

RajatSahani

given answer is correct

celciuz

This question came out, August 2021

Govcomm

request --> success == false

rajvelm

Came in today 5th Nov 2021

sheva370

Tested in my lab. The given answer is correct.

goatlord

Seems correct to me after doing Microsoft Learn