# Azure tricks This document should help the user with a few commands, how to handle the azure app. ## Get logs of the container ```bash az webapp log tail --resource-group VBV ``` ## Query for logs ``` AppServiceConsoleLogs | extend logLevel = parse_json(ResultDescription).level | where logLevel == "error" | take 10 ``` ![azure_logs01.png](azure_logs01.png)