Edit

Share via


Tutorial: Monitor virtual machine changes by using Azure Event Grid and Azure Logic Apps

Applies to: Azure Logic Apps (Consumption)

To monitor and respond to specific events that happen in Azure resources or external resources, you can use Azure Event Grid and Azure Logic Apps. You can create an automated Consumption logic app workflow with minimal code using Azure Logic Apps. You can have these resources publish events to Azure Event Grid. In turn, Azure Event Grid pushes those events to subscribers that have queues, webhooks, or event hubs as endpoints. As a subscriber, your workflow waits for these events to arrive in Azure Event Grid before running the steps to process the events.

Here are some events that publishers can send to subscribers through Azure Event Grid:

  • Create, read, update, or delete a resource. For example, you can monitor changes that might incur charges on your Azure subscription and affect your bill.
  • Add or remove a person from an Azure subscription.
  • Your app performs a particular action.
  • A new message appears in a queue.

In this tutorial, you create a Consumption logic app resource that runs in multitenant Azure Logic Apps. The app is based on the Consumption pricing model. Using this logic app resource, you create a workflow that monitors changes to a virtual machine, and sends emails about those changes. When you create a workflow that has an event subscription to an Azure resource, events flow from that resource through Azure Event Grid to the workflow.

Screenshot shows the workflow designer with a workflow that monitors a virtual machine using Azure Event Grid.

In this tutorial, you learn how to:

  • Create a logic app resource and workflow that monitors events from Azure Event Grid.
  • Add a condition that specifically checks for virtual machine changes.
  • Send email when your virtual machine changes.

Prerequisites

Create logic app resource

  1. Sign in to the Azure portal with your Azure account.

  2. From the Azure home page, select Create a resource > Integration > Logic App.

    Screenshot shows the Azure portal with options to create a logic app resource.

  3. Select Consumption > Multi-tenant.

  4. Under Create Logic App, provide information about your logic app resource:

    Screenshot shows the logic apps creation menu, showing details like name, subscription, resource group, and location.

    Parameter Required Value Description
    Subscription Yes <Azure-subscription-name> Select the same Azure subscription for all the services in this tutorial.
    Resource Group Yes <Azure-resource-group> The Azure resource group name for your logic app, which you can select for all the services in this tutorial.
    Logic App name Yes <logic-app-name> Provide a unique name for your logic app.
    Region Yes <Azure-region> Select the same region for all services in this tutorial.

    Note

    This tutorial applies only to Consumption logic apps, which follow a different user experience. For more information, see Differences between Standard single-tenant logic apps versus Consumption multitenant logic apps.

  5. When you're done, select Review + create. On the next page, confirm the provided information, and select Create.

Add an Azure Event Grid trigger

To add the Azure Event Grid trigger so you can monitor the resource group for your virtual machine, follow these steps:

  1. In the Azure portal, open your Consumption logic app resource.

  2. From the resource sidebar, under Development Tools, select the designer to open your workflow.

  3. On the designer, follow these general steps to add the Azure Event Grid trigger named When a resource event occursto your workflow.

  4. On the Create connection pane, provide the following information:

    Parameter Required Description
    Authentication Yes Select the authentication type to require for the connection. Your selection determines other parameter values that this connection requires.

    For example, with OAuth authentication, the Tenant ID list appears and shows the Microsoft Entra tenant for your Azure subscription. Confirm that the correct tenant appears:

    Screenshot shows the workflow designer with the sign-in prompt for Azure Event Grid.

    Note

    If you're signed in with a personal Microsoft account, such as @outlook.com or @hotmail.com, the Azure Event Grid trigger might not appear correctly. As a workaround, select Connect with Service Principal or authenticate as a member of the Microsoft Entra for your Azure subscription. For example, user-name@emailoutlook.onmicrosoft.com.

  5. When you're done, select Sign in.

  6. Now, set up your workflow with a subscription to events from the publisher.

    In the trigger pane, provide the following information about your event subscription:

    Screenshot shows the workflow designer with the trigger details editor open.

    Parameter Required Value Description
    Resource Type Yes <event-publisher-Azure-resource-type> Select the Azure resource type for the event publisher. For more information, see Azure resource providers and types. For this tutorial, select the Microsoft.Resources.ResourceGroups to monitor Azure resource groups.
    Subscription Yes <event-publisher-Azure-subscription-name> Select the name for the Azure subscription for the event publisher. For this tutorial, select the Azure subscription name for your virtual machine.
    Resource Name Yes <event-publisher-Azure-resource-name> Select the Azure resource name for the event publisher. This list varies based on the resource type that you selected. For this tutorial, select the name for the Azure resource group that includes your virtual machine.
    Event Type Item No <event-types> Select one or more specific event types to filter and send to Azure Event Grid. For example, you can optionally add these event types to detect when resources are changed or deleted:

    - Microsoft.Resources.ResourceActionSuccess
    - Microsoft.Resources.ResourceDeleteSuccess
    - Microsoft.Resources.ResourceWriteSuccess

    For more information, see:

    - Azure resource group as an Event Grid source
    - Understand event filtering
    - Filter events for Event Grid
    To add optional parameters, open the Advanced parameters list, and then select the parameters that you want. No {see descriptions} - Prefix Filter: For this tutorial, leave this value empty. The default behavior matches all values. However, you can specify a prefix string as a filter, for example, a path and a parameter for a specific resource.

    - Suffix Filter: For this tutorial, leave this value empty. The default behavior matches all values. However, you can specify a suffix string as a filter, for example, a file name extension, when you want only specific file types.

    - Subscription Name: For this tutorial, you can provide a unique name for your event subscription.
  7. Save your workflow. On the designer toolbar, select Save.

    When you save your workflow with an Azure Event Grid trigger, Azure creates an event subscription for your workflow to your selected resource. When the resource publishes an event to the Azure Event Grid service, the service pushes the event to your workflow. This event triggers and runs the workflow that you define in the next section.

When you save your workflow, your logic app resource becomes live in the Azure portal and starts listening for events from Azure Event Grid. However, your workflow doesn't do anything else until you add actions to perform tasks.

Add a condition

To run the actions in your workflow only when a specific event or operation happens, add a condition that checks for that event or operation. This tutorial checks for the Microsoft.Compute/virtualMachines/write operation. When this condition is true, another action in your workflow sends you an email that includes information about the updated virtual machine.

  1. On the designer, follow these general steps to add the built-in action named Condition to your workflow.

    The designer adds an empty condition to your workflow, including action paths to follow based whether the condition is true or false.

    Screenshot shows the workflow designer with an empty condition added to the workflow.

  2. To rename the condition, on the action pane, in the action title, select Condition. Rename the title to If a virtual machine in your resource group has changed.

    Screenshot shows the workflow designer and the action title box with the new name.

  3. Create a condition that checks the event body for a data object where the operationName parameter is equal to the Microsoft.Compute/virtualMachines/write operation. For more information, see Azure Event Grid event schema.

    1. On the first row under And, select inside the left box to show the input options, which are the dynamic content list (lightning icon) and expression editor (function icon). Select the expression editor.

      Screenshot shows the workflow designer with the renamed Condition action and expression editor open.

    2. In the editor, make sure Function is selected. In the editor box, enter the following expression, which returns the operation name from the trigger, and then select Add:

      triggerBody()?['data']['operationName']

      For example:

      Screenshot shows workflow designer and condition editor with expression to extract the operation name.

    3. In the middle box, keep the "is equal to" (=) operator.

    4. In the right box, enter the operation that you want to monitor, which is the following value for this example:

      Microsoft.Compute/virtualMachines/write

    Your finished condition now looks like this example:

    Screenshot shows the workflow designer with a condition that compares the operation.

    If you save your changes, and switch from designer view to code view, and then return to designer view, the expression in the condition resolves to the data.operationName token:

    Screenshot shows the workflow designer with a condition that resolved tokens.

  4. Save your workflow.

Send email notifications

Now add an action so that you can receive an email when the specified condition is true.

  1. In the condition's True box, select + > Add an action.

    Screenshot shows the workflow designer with the condition's True pane open and selected option for Add an action.

  2. In the Add an action pane search box, enter send an email. Based on your email provider, find the corresponding connector type. Select the "send email" action for your connector. For example:

    • For an Azure work or school account, select the Office 365 Outlook connector action named Send an email (V2).
    • For personal Microsoft accounts, select the Outlook.com connector action named Send an email (V2).
    • For Gmail accounts, select the Gmail connector action named Send email (V2).

    This tutorial continues with the Office 365 Outlook connector action. If you use a different provider, the steps remain the same, but the UI might appear slightly different.

  3. If you don't already have a connection for your email provider, sign in to your email account when you're asked to authenticate your identity.

  4. Rename the send email action to the following title: Send email when virtual machine updated.

  5. In the action pane, provide the following information about the email to send:

    Tip

    To select output from preceding operations (trigger and actions) in your workflow, follow these steps:

    1. Select inside an edit box to show the input options, which are the dynamic content list (lightning icon) and the expression editor (function icon). Select the dynamic content list.
    2. Find and select the outputs that you want to include. For more results, select See more for each section in the list.
    Parameter Required Value Description
    To Yes <recipient@domain> Enter the recipient's email address. For testing purposes, you can use your own email address.
    Subject Yes Resource updated: [Subject] Enter the content for the email's subject. For this tutorial, enter the specified text, and select the event's Subject field. Here, your email subject includes the name for the updated resource (virtual machine).
    Body Yes Resource: [Topic]

    Event type: [Event Type]

    Event ID: [ID]

    Time: [Event Time]
    Enter the content for the email's body. For this tutorial, enter the specified text and select the event's Topic, Event Type, ID, and Event Time outputs so that your email includes the resource that fired the event, event type, event timestamp, and event ID for the update. For this tutorial, the resource is the Azure resource group selected in the trigger.

    To add blank lines in your content, press Shift + Enter.

    Note

    If you select a field that represents an array, the designer automatically adds a For each loop around the action that references the array. That way, your workflow performs that action on each array item.

    Your email action might look like this example:

    Screenshot shows the workflow designer with selected outputs to send in email when the virtual machine is updated.

    Your finished workflow now looks like the following example:

    Screenshot shows designer with complete workflow and details for trigger and actions.

  6. Save your workflow.

    Your workflow updates are now live. The workflow trigger waits for changes to your virtual machine before doing anything. To test your workflow now, continue to the next section.

Test your workflow

  1. To check that your workflow is getting the specified events, update your virtual machine.

    For example, you can resize your virtual machine.

    After a few moments, you should get an email. For example:

  2. To review the run history or trigger history for your workflow, on your resource sidebar, select Overview.

  3. On the Overview page, select Run history. To view more details about a workflow run, select that run.

    Screenshot shows the logic app overview page with a successful run selected.

  4. To view the inputs and outputs for each operation, select that operation.

    This information can help you diagnose and debug problems in your workflow.

    Screenshot shows the workflow run history with details about each run.

Congratulations! You created and ran a workflow that monitors resource events in Azure Event Grid and emails you when those events happen. You also learned how easily you can create workflows that automate processes and integrate systems and cloud services.

You can monitor other configuration changes with event grids and workflows, for example:

  • A virtual machine gets Azure role-based access control (Azure RBAC) permissions.
  • Changes are made to a network security group (NSG) on a network interface (NIC).
  • Disks for a virtual machine are added or removed.
  • A public IP address is assigned to a virtual machine NIC.

Clean up resources

This tutorial uses resources and performs actions that incur charges on your Azure subscription. When you're done with the tutorial and testing, disable or delete any resources where you don't want to incur charges.

  • To stop running your workflow without deleting your work, disable your app. On the logic app sidebar, select Overview. On the toolbar, select Disable.

    Screenshot shows logic app Overview page with Disable button selected.

    Tip

    If you don't see the logic app sidebar, try returning to the Azure portal home, and reopen your logic app resource.

  • To permanently delete your logic app, on the sidebar menu, select Overview. On the toolbar, select Delete. Confirm that you want to delete your logic app and select Delete.

For examples about publishing events and consuming events with Azure Event Grid by using different programming languages, see the following samples: