vbv/docs/azure-tricks.md

371 B

Azure tricks

This document should help the user with a few commands, how to handle the azure app.

Get logs of the container

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