jmacke
jmacke

Reputation: 45

A few questions about Kudu Console in App Services

App services can be deployed on several VMs. I would like to know:

Thanks,

Jonathan

Upvotes: 0

Views: 205

Answers (1)

4c74356b41
4c74356b41

Reputation: 72151

  1. To a specific instance, check this: https://blogs.msdn.microsoft.com/kaushal/2016/11/21/azure-app-service-how-to-connect-to-the-kudu-site-of-a-specific-instance/
  2. I believe the storage is shared
  3. Kudu pulls logs from the storage (https://github.com/projectkudu/kudu/wiki/Diagnostic-Log-Stream) so probably application wide

You can take a look at the project source code to answer your questions.

This is probably what you want to examine: https://github.com/projectkudu/kudu/tree/master/Kudu.Services/Diagnostics

Upvotes: 1

Related Questions