exam questions

Exam AZ-400 All Questions

View all questions & answers for the AZ-400 exam

Exam AZ-400 topic 2 question 19 discussion

Actual exam question from Microsoft's AZ-400
Question #: 19
Topic #: 2
[All AZ-400 Questions]

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:

Show Suggested Answer Hide Answer
Suggested 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

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
ScreamingHand
Highly Voted 3 years, 10 months ago
Answer looks good to me https://docs.microsoft.com/en-us/azure/azure-monitor/platform/app-insights-metrics
upvoted 23 times
rdemontis
3 years, 2 months ago
you are right!
upvoted 2 times
...
...
budha
Highly Voted 2 years, 5 months ago
It was on my exam on December 7, 2022.
upvoted 11 times
...
husam421
Most Recent 10 months, 3 weeks ago
requests | where success == 'False' | summarize sum(itemCount) by bin(timestamp, 5m) | render barchart
upvoted 2 times
...
yana_b
1 year, 9 months ago
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
upvoted 2 times
...
MrKingpin
2 years, 2 months ago
Answer is Correct https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/app-insights-metrics#failed-requests-requestsfailed
upvoted 3 times
...
GokhanSenyuz
2 years, 7 months ago
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
upvoted 4 times
...
syu31svc
2 years, 9 months ago
Given answer is correct and link provided supports it
upvoted 2 times
...
Govcomm
2 years, 10 months ago
request --> success == false
upvoted 1 times
...
UnknowMan
3 years ago
Correct (pageviews dont have success or resultcode to query)
upvoted 2 times
...
Cheehp
3 years, 1 month ago
Selected during exam. requests and success==false.
upvoted 2 times
...
Axz
3 years, 2 months ago
Got this question today March 2022
upvoted 2 times
...
RajatSahani
3 years, 6 months ago
given answer is correct
upvoted 2 times
...
rajvelm
3 years, 6 months ago
Came in today 5th Nov 2021
upvoted 1 times
...
AZ5cert
3 years, 8 months ago
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
upvoted 3 times
...
celciuz
3 years, 9 months ago
This question came out, August 2021
upvoted 2 times
...
sheva370
3 years, 10 months ago
Tested in my lab. The given answer is correct.
upvoted 1 times
...
goatlord
3 years, 10 months ago
Seems correct to me after doing Microsoft Learn
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...