-
Notifications
You must be signed in to change notification settings - Fork 447
How do I check the functions runtime version?
Mathew Charles edited this page Jan 11, 2018
·
1 revision
To verify the exact version of the runtime you are using:
- Retrieve the master key for your Function App (you can get the master key from the Functions Portal)
- Browse to
https://<functionappname>.azurewebsites.net/admin/host/status?code=<masterkey>
You will see a response similar to the following (depending on your browser/accept headers):
{"id":"functiondev-facaval2","state":"Running","version":"1.0.10917.0"}
<HostStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Azure.WebJobs.Script.WebHost.Models">
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true"/>
<Id>functionappid</Id>
<Load i:nil="true"/>
<State>Running</State>
<Version>1.0.10917.0</Version>
</HostStatus>
- Configuration Settings
- function.json
- host.json
- host.json (v2)
- Http Functions
- Function Runtime Versioning
- Official Functions developers guide
- Host Health Monitor
- Managing Connections
- Renaming a Function
- Retrieving information about the currently running function
- Site Extension Resolution
- Linux Consumption Regions
- Using LinuxFxVersion for Linux Function apps
- Out-of-proc Cancellation Tokens
- Assembly Resolution in Azure Functions
- ILogger
- Precompiled functions
- Official Functions C# developer reference
- Contributor Onboarding
- Development Process
- Deploying the Functions runtime as a private site extension
- Authoring & Testing Language Extensions
- Bindings in out-of-proc
- Language Extensibility
- Worker Capabilities
- Investigating and reporting issues with timer triggered functions not firing
- Sharing Your Function App name privately
- Azure Functions CLI release notes [moved here]
- Function App Zipped Deployment [deprecated]