...

/

Viewing the Output of Azure Functions (AF)

Viewing the Output of Azure Functions (AF)

Let's view the output of Azure Functions (AF).

Viewing output

Let’s try to invoke “Hello” and confirm that it works. We can use the serverless invoke command for that.

Press + to interact
serverless invoke \
--function hello \
--data '{"name": "Viktor"}'

The output is as follows.

Press + to interact
Serverless: Initializing provider configuration...
Serverless: Logging into Azure
Serverless: Using subscription ID: 7f9f9b08-7d00-43c9-9d30-f10bb79e9a61
Serverless: Invocation url: http://20200628211206-eus-dev-azure-function.azurewebsites.net/api/hello?name=Viktor
Serverless: Invoking function hello with GET request
Serverless: "Hello Viktor"

The last line is the output we’re looking for. We got the “Hello Viktor” message confirming that the response is indeed coming from the newly deployed function. However, while that confirmed our function is accessible through the serverless CLI, we need to verify that it’s available to everyone through an API or a browser. So we need the address that we got when we deployed the function.

We can retrieve almost any information related to the functions in a project by outputting the info.

Press + to interact
serverless info

The output is as follows.

Press + to interact
ResourceGroupName:c1sciafd FunctionAppName:20200628211206-eus-dev-azure-function Functions:
goodbye
"name": "20200628211206-eus-dev-d6a0ee-appinsights",
"resourceType": "microsoft.insights/components",
"region": "eastus"
}, {
"name": "202eusdevd6a0ee",
"resourceType": "Microsoft.Storage/storageAccounts",
"region": "eastus"
}, {
"name": "EastUSPlan",
"resourceType": "Microsoft.Web/serverFarms",
"region": "eastus"
}, {
"name": "20200628211206-eus-dev-azure-function",
"resourceType": "Microsoft.Web/sites",
"region": "eastus"
}

As we can see, that’s the same info we got at the end of the deploy process, just in a different format. It’s a strange combination of something at the top (it looks like YAML, but it’s not), and JSON at the bottom.

What matters, for now, is the name of the function that we can use to guess what the URL of the function is. It’s available at the top next to Function App Name, as well as at the bottom under the block with the ...