23 lines
371 B
Markdown
23 lines
371 B
Markdown
# 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
|
|
```
|
|
|
|

|
|
|