Skip to content

Commit fe72b3c

Browse files
[Git issue 123164 : Copy code missing ending ` tick]: Made the update as suggested and reviewed for the freshness pass.
1 parent 8fc2c7f commit fe72b3c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/container-apps/jobs-get-started-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.custom: build-2023, devx-track-azurecli
88
ms.topic: quickstart
9-
ms.date: 08/17/2023
9+
ms.date: 08/09/2024
1010
ms.author: cshoe
1111
zone_pivot_groups: container-apps-job-types
1212
---
@@ -103,21 +103,21 @@ Job executions output logs to the logging provider that you configured for the C
103103
1. Save the Log Analytics workspace ID for the Container Apps environment to a variable.
104104

105105
```azurecli
106-
LOG_ANALYTICS_WORKSPACE_ID=`az containerapp env show \
106+
LOG_ANALYTICS_WORKSPACE_ID=$(az containerapp env show \
107107
--name "$ENVIRONMENT" \
108108
--resource-group "$RESOURCE_GROUP" \
109109
--query "properties.appLogsConfiguration.logAnalyticsConfiguration.customerId" \
110-
--output tsv`
110+
--output tsv)
111111
```
112112
113113
1. Save the name of the most recent job execution to a variable.
114114
115115
```azurecli
116-
JOB_EXECUTION_NAME=`az containerapp job execution list \
116+
JOB_EXECUTION_NAME=$(az containerapp job execution list \
117117
--name "$JOB_NAME" \
118118
--resource-group "$RESOURCE_GROUP" \
119119
--query "[0].name" \
120-
--output tsv`
120+
--output tsv)
121121
```
122122
123123
1. Run a query against Log Analytics for the job execution using the following command.

0 commit comments

Comments
 (0)