In previous article we saw how to create a function app in Azure portal. Now its time to add a function to the function app and execute some functionalities. Lets see how we can do that.
1. Open the function app that we created in previous article.
2. Click on "New function".
3. Choose development environment as "In-portal" and click on continue.
4. Let's select function template as Timer and click on create.
5. This will add a TimerTrigger function into our function app.
So here we have successfully added a function into our function app. This is a timer triggered function that means it will run continuously at a specified time interval. We will learn more about timer triggers in future blogs. For now if you click on Run at top the function will start running and you will be able to see logs at bottom in logs section.
There are various templates available for functions for different scenario like Time triggered, blob triggered, service bus triggered, queue triggered. We will explore more about them in future blobs.
Congratulations on your first function creation !!!!!!!ππ
1. Open the function app that we created in previous article.
2. Click on "New function".
3. Choose development environment as "In-portal" and click on continue.
4. Let's select function template as Timer and click on create.
5. This will add a TimerTrigger function into our function app.
So here we have successfully added a function into our function app. This is a timer triggered function that means it will run continuously at a specified time interval. We will learn more about timer triggers in future blogs. For now if you click on Run at top the function will start running and you will be able to see logs at bottom in logs section.
There are various templates available for functions for different scenario like Time triggered, blob triggered, service bus triggered, queue triggered. We will explore more about them in future blobs.
Congratulations on your first function creation !!!!!!!ππ
Comments
Post a Comment