Configure Azure Logic App Trigger | Microsoft Exam AZ-400 Solution

Azure Logic App Trigger

Question

You configure an Azure Application Insights availability test.

You need to notify the customer services department at your company by email when availability is degraded.

You create an Azure logic app that will handle the email and follow up actions.

Which type of trigger should you use to invoke the logic app?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A

You can use webhooks to route an Azure alert notification to other systems for post-processing or custom actions. You can use a webhook on an alert to route it to services that send SMS messages, to log bugs, to notify a team via chat or messaging services, or for various other actions.

https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-webhooks

The correct answer is B. an HTTP trigger.

Azure Logic Apps is a cloud-based service that provides a way to create workflows that integrate with various services and applications. An HTTP trigger is used to start a Logic App when an HTTP request is received. In this case, when the availability test in Application Insights detects degraded availability, it will send an HTTP request to the Logic App to trigger it to perform the email notification and follow-up actions.

An HTTPWebhook trigger is used to start a Logic App when an HTTP webhook is received. An HTTP webhook is typically used for real-time notifications and doesn't fit the scenario described in the question.

A Request trigger is used to start a Logic App when an HTTP request with a specific payload is received. It is not relevant to this scenario.

An ApiConnection trigger is used to start a Logic App when an event happens in a specific API connection. This trigger is not relevant to the scenario in the question.

Therefore, the correct answer is B. an HTTP trigger.