Howard Hoffman
Howard Hoffman

Reputation: 917

Azure WebJobs and Snapshot Debugger for Azure

Is there a way to use the Snapshot Debugger against Azure AppService WebJobs?

I know it works with AppService HTTP applications but I would also like to use it with .NET executables running as Azure App Service WebJobs.

Upvotes: 1

Views: 237

Answers (1)

Jack Zhai
Jack Zhai

Reputation: 6436

It really has the default supported scope:

https://learn.microsoft.com/en-us/azure/application-insights/app-insights-snapshot-debugger

Snapshot collection is available for:

.NET Framework and ASP.NET applications running .NET Framework 4.5 or later.

.NET Core 2.0 and ASP.NET Core 2.0 applications running on Windows.

The following environments are supported:

Azure App Service.

Azure Cloud Service running OS family 4 or later.

Azure Service Fabric services running on Windows Server 2012 R2 or later.

Azure Virtual Machines running Windows Server 2012 R2 or later.

On-premise virtual or physical machines running Windows Server 2012 R2 or later.

So it was not in above list, I suggest you submit a feature request to the product team:

http://visualstudio.uservoice.com/forums/121579-visual-studio

Upvotes: 2

Related Questions