title | description | services | keywords | author | manager | ms.assetid | ms.service | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|---|---|---|---|
Create a function that integrates with Azure Logic Apps |
Create a function that integrates with Azure Logic Apps and Azure Cognitive Services to categorize tweet sentiment and send notifications when sentiment is poor. |
functions, logic-apps, cognitive-services |
workflow, cloud apps, cloud services, business processes, system integration, enterprise application integration, EAI |
craigshoemaker |
jeconnoc |
60495cc5-1638-4bf0-8174-52786d227734 |
azure-functions |
tutorial |
11/06/2018 |
cshoe |
mvc, cc996988-fb4f-47 |
Azure Functions integrates with Azure Logic Apps in the Logic Apps Designer. This integration lets you use the computing power of Functions in orchestrations with other Azure and third-party services.
This tutorial shows you how to use Functions with Logic Apps and Cognitive Services on Azure to run sentiment analysis from Twitter posts. An HTTP triggered function categorizes tweets as green, yellow, or red based on the sentiment score. An email is sent when poor sentiment is detected.
In this tutorial, you learn how to:
[!div class="checklist"]
- Create a Cognitive Services API Resource.
- Create a function that categorizes tweet sentiment.
- Create a logic app that connects to Twitter.
- Add sentiment detection to the logic app.
- Connect the logic app to the function.
- Send an email based on the response from the function.
- An active Twitter account.
- An Outlook.com account (for sending notifications).
- This article uses as its starting point the resources created in Create your first function from the Azure portal.
If you haven't already done so, complete these steps now to create your function app.
The Cognitive Services APIs are available in Azure as individual resources. Use the Text Analytics API to detect the sentiment of the tweets being monitored.
-
Sign in to the Azure portal.
-
Click Create a resource in the upper left-hand corner of the Azure portal.
-
Click AI + Machine Learning > Text Analytics. Then, use the settings as specified in the table to create the resource.
Setting Suggested value Description Name MyCognitiveServicesAccnt Choose a unique account name. Location West US Use the location nearest you. Pricing tier F0 Start with the lowest tier. If you run out of calls, scale to a higher tier. Resource group myResourceGroup Use the same resource group for all services in this tutorial. -
Click Create to create your resource.
-
Click on Overview and copy the value of the Endpoint to a text editor. This value is used when creating a connection to the Cognitive Services API.
-
In the left navigation column, click Keys, and then copy the value of Key 1 and set it aside in a text editor. You use the key to connect the logic app to your Cognitive Services API.
Functions provides a great way to offload processing tasks in a logic apps workflow. This tutorial uses an HTTP triggered function to process tweet sentiment scores from Cognitive Services and return a category value.
[!INCLUDE Create function app Azure portal]
-
Expand your function app and click the + button next to Functions. If this is the first function in your function app, select In-portal.
-
Next, select Webhook + API and click Create.
-
Replace the contents of the
run.csx
file with the following code, then click Save:#r "Newtonsoft.Json" using System; using System.Net; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using Newtonsoft.Json; public static async Task<IActionResult> Run(HttpRequest req, ILogger log) { string category = "GREEN"; string requestBody = await new StreamReader(req.Body).ReadToEndAsync(); log.LogInformation(string.Format("The sentiment score received is '{0}'.", requestBody)); double score = Convert.ToDouble(requestBody); if(score < .3) { category = "RED"; } else if (score < .6) { category = "YELLOW"; } return requestBody != null ? (ActionResult)new OkObjectResult(category) : new BadRequestObjectResult("Please pass a value on the query string or in the request body"); }
This function code returns a color category based on the sentiment score received in the request.
-
To test the function, click Test at the far right to expand the Test tab. Type a value of
0.2
for the Request body, and then click Run. A value of RED is returned in the body of the response.
Now you have a function that categorizes sentiment scores. Next, you create a logic app that integrates your function with your Twitter and Cognitive Services API.
-
In the Azure portal, click the New button found on the upper left-hand corner of the Azure portal.
-
Click Web > Logic App.
-
Then, type a value for Name like
TweetSentiment
, and use the settings as specified in the table.Setting Suggested value Description Name TweetSentiment Choose an appropriate name for your app. Resource group myResourceGroup Choose the same existing resource group as before. Location East US Choose a location close to you. -
Once you have entered the proper settings values, click Create to create your logic app.
-
After the app is created, click your new logic app pinned to the dashboard. Then in the Logic Apps Designer, scroll down and click the Blank Logic App template.
You can now use the Logic Apps Designer to add services and triggers to your app.
First, create a connection to your Twitter account. The logic app polls for tweets, which trigger the app to run.
-
In the designer, click the Twitter service, and click the When a new tweet is posted trigger. Sign in to your Twitter account and authorize Logic Apps to use your account.
-
Use the Twitter trigger settings as specified in the table.
Setting Suggested value Description Search text #Azure Use a hashtag that is popular enough to generate new tweets in the chosen interval. When using the Free tier and your hashtag is too popular, you can quickly use up the transaction quota in your Cognitive Services API. Interval 15 The time elapsed between Twitter requests, in frequency units. Frequency Minute The frequency unit used for polling Twitter. -
Click Save to connect to your Twitter account.
Now your app is connected to Twitter. Next, you connect to text analytics to detect the sentiment of collected tweets.
-
Click New Step, and then Add an action.
-
In Choose an action, type Text Analytics, and then click the Detect sentiment action.
-
Type a connection name such as
MyCognitiveServicesConnection
, paste the key for your Cognitive Services API and the Cognitive Services endpoint you set aside in a text editor, and click Create. -
Next, enter Tweet Text in the text box and then click on New Step.
Now that sentiment detection is configured, you can add a connection to your function that consumes the sentiment score output.
-
In the Logic Apps Designer, click New step > Add an action, filter on Azure Functions and click Choose an Azure function.
-
Select the function app you created earlier.
-
Select the function you created for this tutorial.
-
In Request Body, click Score and then Save.
Now, your function is triggered when a sentiment score is sent from the logic app. A color-coded category is returned to the logic app by the function. Next, you add an email notification that is sent when a sentiment value of RED is returned from the function.
The last part of the workflow is to trigger an email when the sentiment is scored as RED. This topic uses an Outlook.com connector. You can perform similar steps to use a Gmail or Office 365 Outlook connector.
-
In the Logic Apps Designer, click New step > Add a condition.
-
Click Choose a value, then click Body. Select is equal to, click Choose a value and type
RED
, and click Save. -
In IF TRUE, click Add an action, search for
outlook.com
, click Send an email, and sign in to your Outlook.com account.[!NOTE] If you don't have an Outlook.com account, you can choose another connector, such as Gmail or Office 365 Outlook
-
In the Send an email action, use the email settings as specified in the table.
Setting | Suggested value | Description |
---|---|---|
To | Type your email address | The email address that receives the notification. |
Subject | Negative tweet sentiment detected | The subject line of the email notification. |
Body | Tweet text, Location | Click the Tweet text and Location parameters. |
- Click Save.
Now that the workflow is complete, you can enable the logic app and see the function at work.
-
In the Logic App Designer, click Run to start the app.
-
In the left column, click Overview to see the status of the logic app.
-
(Optional) Click one of the runs to see details of the execution.
-
Go to your function, view the logs, and verify that sentiment values were received and processed.
-
When a potentially negative sentiment is detected, you receive an email. If you haven't received an email, you can change the function code to return RED every time:
return (ActionResult)new OkObjectResult("RED");
After you have verified email notifications, change back to the original code:
return requestBody != null ? (ActionResult)new OkObjectResult(category) : new BadRequestObjectResult("Please pass a value on the query string or in the request body");
[!IMPORTANT] After you have completed this tutorial, you should disable the logic app. By disabling the app, you avoid being charged for executions and using up the transactions in your Cognitive Services API.
Now you have seen how easy it is to integrate Functions into a Logic Apps workflow.
To disable the logic app, click Overview and then click Disable at the top of the screen. Disabling the app stops it from running and incurring charges without deleting the app.
In this tutorial, you learned how to:
[!div class="checklist"]
- Create a Cognitive Services API Resource.
- Create a function that categorizes tweet sentiment.
- Create a logic app that connects to Twitter.
- Add sentiment detection to the logic app.
- Connect the logic app to the function.
- Send an email based on the response from the function.
Advance to the next tutorial to learn how to create a serverless API for your function.
[!div class="nextstepaction"] Create a serverless API using Azure Functions
To learn more about Logic Apps, see Azure Logic Apps.