Friday, 10 April 2020

Creating an Azure Function to Listen to Blob Created Events

Scenario

You need to process images uploaded to a blob container. You decide to create an Azure Function that is triggered by an Event Grid wired to blob-created events in the storage account. To test the concept, you create the function, configure the Event Grid subscription, and write the event data to the functions log.

Prerequisites

  • Existing Resource Group
  • Existing App Service plan
  • Existing App Service
  • Existing Storage Account

Log In to the Azure Portal

Log in to the Azure Portal using your credentials

Create the Event Grid-Triggered Function

Open the menu in the top-left corner and select All resources.

image

Click on the app service.

image

In the left-hand pane, select the Functions row.

image

Click + New function.

image

Select the Azure Event Grid trigger box from the list.

image

Enter "MyEventGridTrigger" without quotes in the Name box.

image

Click Create.

You should see the sample C# script (.csx).

#r "Microsoft.Azure.EventGrid"
using Microsoft.Azure.EventGrid.Models;

public static void Run(EventGridEvent eventGridEvent, ILogger log)
{
    log.LogInformation(eventGridEvent.Data.ToString());
}

Create the Event Grid Subscription

Click Add Event Grid subscription.

image

In the Name box, enter "blobevent" without quotes.

Use the Topic Types combo box to select Storage Accounts.

Click the Subscription combo box and select the only available option.

Click the Resource Group combo box and select the only available option.

Click the Resource combo box and select the only available option.

Click Create.

image

Create a Blob in the Storage Account

At the top of the window, right-click on All resources and open it in a new tab.

image

Navigate to the new tab.

Click on the storage account.

image

In the main pane, click Containers.

image

Click + Container.

Enter a Name of "images" without quotes in the box provided.

image

Click OK.

Click the images row.

Click Upload.

image

Click the folder button to open the file browser.

Select a local file and then click Open. It is recommended to use a small file.

Click Upload.

image

Examine the Function Logs to verify it ran

Return to the Event Grid trigger tab and verify the logs.

image

No comments:

Post a Comment

A Fun Problem - Math

# Problem Statement JATC's math teacher always gives the class some interesting math problems so that they don't get bored. Today t...