0

Web jobs within app service plans have logging details for the specific web jobs. Where is this data stored in Azure? Another way of asking this is how to identify the storage account for an app service plan - it doesn't appear to be under Overview or Properties.

1 Answers1

0

The WebJob logs sit in the following folder:

  • For Continuous Webjobs: D:\home\data\jobs\continuous\jobname
  • For Triggered Webjobs: D:\home\data\jobs\triggered\jobname

To answer the second part, you need to know that in Azure App Services, the D:\Home points to storage and this is not accessible to external world. So there is no way for one to identify the storage account for an app service plan.

Read more about Azure App Service architecture here: Inside the Azure App Service Architecture

Also see this

Kaushal Kumar Panday
  • 2,329
  • 13
  • 22