Sql Surfer
Sql Surfer

Reputation: 1422

Azure Function Log Screen in Portal Deprecated or Moved

There used to be an Azure Functions screen that looked like this ...

enter image description here

I am wanting to know how you Used To Get to it. I do not need to get to it today. I am wanting to know how you used to navigate to this screen before it was removed or deprecated. There was a time where you had to click "classic view" to see this screen. I am suspicious that when the function was first or last deployed is relevant to the navigation to this screen, when it was reachable.

If anyone remembers what keywords or where the old menu items were that used to go to this screen for Azure Function Apps - I appreciate it.

Upvotes: 0

Views: 196

Answers (1)

Jerry Liu
Jerry Liu

Reputation: 17790

The old monitor view retrieves data from the table in Storage Account specified by Application setting AzureWebJobsDashboard. After Function 2.0 went GA, the AzureWebJobsDashboard is removed i.e. classic view was gone by default when we create new Function app, it's recommended to work with Application Insights now.

For v1 functions, to get the old view back, go to Application settings,

  1. Delete APPINSIGHTS_INSTRUMENTATIONKEY(if there is).

  2. Add AzureWebJobsDashboard with a Storage Account Connection String, we could leverage the value of AzureWebJobsStorage.

  3. Click the Monitor view, Switch to classic view.

For v2 functions, logs provided by ILogger are not sent to the table anymore, so I think the old feature has been deprecated completely.

Upvotes: 1

Related Questions