You deploy an Azure web app named contosoApp. ContosoApp is available by using HTTP or HTTPS.
You need to ensure that a web administrator receives an email notification if the average response time for
contosoAPP exceeds 50 milliseconds.
Which two tasks should you perform? Each correct answer presents part of the solution.

A.
Create an HTTPS monitoring endpoint.
B.
Create a metric
C.
Create a rule.
D.
Create an HTTP monitoring endpoint.
E.
Modify the properties of the connection strings.
F.
Enable Application logging.
Pretty sure it’s B and C…
https://docs.microsoft.com/en-us/azure/monitoring-and-diagnostics/insights-alerts-portal
If you needed an endpoint, why wouldn’t it be both http and https? you can monitor average response time by using a metric/rule
0
0
Answer is Correct. (C) & (D)
Metrics for WebApps only run over HTTP (thus you would need to have configure a HTTP Endpoint) and then a Rule to email if response time goes above 50ms.
0
0
Why do we need an Endpoint? There is no request for a Webhook just to email an Administrator. I agree with Scott.
0
0
You shouldn’t need to “create” the metric, it is a standard one provided by Azure. Anyway nothing else fits except B+C, I would guess those.
https://docs.microsoft.com/en-gb/azure/application-insights/app-insights-alerts#set-a-metric-alert
0
0
From Qn: “Each correct answer presents part of the solution”
So B + C are the parts of the solutions, which are right ones
0
0
B and C
Metrics for an App or App Service plan can be hooked up to alerts.
Create an alert rule on a metric with the Azure portal
1. In the portal, locate the resource you are interested in monitoring and select it.
2. Select Alerts (Classic) under the MONITORING section. The text and icon may vary slightly for different resources. If you do not find Alerts (Classic), you might find them under Alerts or Alert Rules
3. Select the Add metric alert (classic) command and fill in the fields.
4. Name your alert rule, and choose a Description, which also shows in notification emails.
References:
https://docs.microsoft.com/en-us/azure/monitoring-and-diagnostics/insights-alerts-portal
1
0