Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 685 Bytes

containerappconsolelogs.md

File metadata and controls

28 lines (19 loc) · 685 Bytes
title description ms.topic ms.service ms.author author ms.date
Example log table queries for ContainerAppConsoleLogs
Example queries for ContainerAppConsoleLogs log table
reference
azure-monitor
edbaynash
EdB-MSFT
04/08/2024

Queries for the ContainerAppConsoleLogs table

Latest Container App user errors

Get the latest errors generated by user deployed Container Apps.

ContainerAppConsoleLogs
| where Stream == "stderr"
| order by TimeGenerated desc
| top 100 by TimeGenerated