Azure Functions Runtime 2.0.12408
Release Notes
- Cold start improvements.
- [Application Insights] HTTP Trigger now logs RequestTelemetry with richer request details
-
Properties
resultCode
,url
,client_City
,client_StateOrProvince
,client_CountryOrRegion
are now populated. -
Method and path are logged to
customDimensions.HttpMethod
andcustomDimensions.HttpPath
, respecively. -
Auto-tracking of these properties is enabled by default. To disable and return to previous behavior, you can set the disable this by setting
applicationInsights.httpAutoCollectionOptions.enableHttpTriggerExtendedInfoCollection
tofalse
in host.json. For example:{ "version": "2.0", "logging": { "applicationInsights": { "httpAutoCollectionOptions": { "enableHttpTriggerExtendedInfoCollection" : false } } } }
-
Visual Studio Availability
This release has been made available to Visual Studio users. When running a V2 Function App project locally, you can verify if you are running this version by checking for the following in the console output:
Azure Functions Core Tools (2.6.666 Commit hash: 2ea98ed)
Function Runtime Version: 2.0.12408.0