You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/tutorial-sidecar.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,9 +173,9 @@ You configure environment variables for the containers like any App Service app,
173
173
174
174
:::image type="content" source="media/tutorial-sidecar/configure-app-settings.png" alt-text="Screenshot showing a web app's Configuration page with two app settings added.":::
175
175
176
-
## 5. Configure autoinstrumentation at startup
176
+
## 5. Configure instrumentation at startup
177
177
178
-
In this step, you create the autoinstrumentation for your app according to the steps outlined in the [OpenTelemetry .NET zero-code instrumentation](https://opentelemetry.io/docs/zero-code/net/getting-started/#instrumentation).
178
+
In this step, you create the instrumentation for your app according to the steps outlined in the [OpenTelemetry .NET zero-code instrumentation](https://opentelemetry.io/docs/zero-code/net/getting-started/#instrumentation).
179
179
180
180
1. Back in the Cloud Shell, create *startup.sh* with the following lines.
181
181
@@ -206,7 +206,7 @@ In this step, you create the autoinstrumentation for your app according to the s
206
206
EOF
207
207
```
208
208
209
-
1. Deploy this file to your app with the following Azure CLI command. If you're still in the `~/MyFirstAzureWebApp`, then no other parameters are necessary because the resource group and web app were saved as defaults by `az webapp up`.
209
+
1. Deploy this file to your app with the following Azure CLI command. If you're still in the *~/MyFirstAzureWebApp* directory, then no other parameters are necessary because `az webapp up` already set defaults for the resource group and the app name.
210
210
211
211
```azurecli-interactive
212
212
az webapp deploy --src-path startup.sh --target-path /home/site/startup.sh --type static
@@ -237,7 +237,7 @@ The otel-collector sidecar should export data to Application Insights now.
237
237
238
238
## 6. Clean up resources
239
239
240
-
When you no longer need the environment, you can delete the resource group, App service, and all related resources. Just run this command in the Cloud Shell:
240
+
When you no longer need the environment, you can delete the resource groups and all related resources. Just run these commands in the Cloud Shell:
0 commit comments