In previous blog posts shown below demos Azure Functions creation and deployment.
Creating the Azure Functions, here
Deploying the Azure Functions, here
This blog post demos testing of deployed Azure Functions.Here 2 types of functions are deployed, one is Queue Trigger and another one is Blob Trigger.
Testing Queue Trigger Funtion:
Navigate to the queue in storage account that is defined in the function and create a new message.
You can notice the message dequeuing from the queue with in seconds and this message is processed by the function.
Navigate to 'Advanced tools' in the Azure Functions resource to check the logs.
Select 'CMD' option on 'Debug Console' and navigate to path 'LogFile/Application/Functions/function/QueueTrigger' for logs.
Testing Blob Trigger Funtion:
Navigate to the 'Blob Service'-->'Containers' in storage account and select the container that is defined in the function and upload a blob.
Similar to above mentioned queue trigger, navigate to logs using 'Advanced tools' to check the logs.
This is how you can check if azure functions are getting triggered or not in Azure.
Thank you.