Skip to content

Commit 8f00d80

Browse files
Merge pull request #234689 from craigshoemaker/patch-15
[Container Apps] Update Kusto query
2 parents ef6eb48 + ffc708b commit 8f00d80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/container-apps/azure-arc-create-container-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ If there's an error when running a query, try again in 10-15 minutes. There may
112112
```kusto
113113
let StartTime = ago(72h);
114114
let EndTime = now();
115-
ContainerAppsConsoleLogs_CL
115+
ContainerAppConsoleLogs_CL
116116
| where TimeGenerated between (StartTime .. EndTime)
117-
| where AppName_s =~ "my-container-app"
117+
| where ContainerAppName_s =~ "my-container-app"
118118
```
119119

120-
The application logs for all the apps hosted in your Kubernetes cluster are logged to the Log Analytics workspace in the custom log table named `ContainerAppsConsoleLogs_CL`.
120+
The application logs for all the apps hosted in your Kubernetes cluster are logged to the Log Analytics workspace in the custom log table named `ContainerAppConsoleLogs_CL`.
121121

122122
* **Log_s** contains application logs for a given Container Apps extension
123123
* **AppName_s** contains the Container App app name. In addition to logs you write via your application code, the *Log_s* column also contains logs on container startup and shutdown.

0 commit comments

Comments
 (0)