Home > Blockchain >  az command to view Azure App Service Log Stream?
az command to view Azure App Service Log Stream?

Time:01-03

Is there a command to view Azure App Service Log Stream entries from the command line? I would like to tail the logs on my local console.

Azure Portal menu with log stream selected

CodePudding user response:

Yes, you can stream the Web App logs using:

az webapp log tail [--ids]
                   [--name]
                   [--provider]
                   [--resource-group]
                   [--slot]
                   [--subscription]

Documentation

  • Related