Skip to content

Commit 073fde8

Browse files
committed
fixing broken bookmark
1 parent 6c0de67 commit 073fde8

File tree

4 files changed

+26
-24
lines changed

4 files changed

+26
-24
lines changed

articles/azure-monitor/profiler/profiler-settings.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ After you enable Application Insights Profiler, you can:
1414
- Configure Profiler triggers.
1515
- View recent profiling sessions.
1616

17-
To open the Application Insights Profiler settings pane, select **Performance** in the left pane on your Application Insights page.
17+
To open the Application Insights Profiler settings pane, select **Performance** on the left pane on your Application Insights page.
1818

1919
:::image type="content" source="./media/profiler-settings/performance-blade-inline.png" alt-text="Screenshot that shows the link to open the Performance pane." lightbox="media/profiler-settings/performance-blade.png":::
2020

2121
You can view Profiler traces across your Azure resources via two methods:
2222

23-
- By **Profiler** button:
23+
- By the **Profiler** button:
2424

25-
Select the **Profiler** button.
25+
Select **Profiler**.
2626

2727
:::image type="content" source="./media/profiler-overview/profiler-button-inline.png" alt-text="Screenshot that shows the Profiler button on the Performance pane." lightbox="media/profiler-settings/profiler-button.png":::
2828

2929
- By operation:
3030

3131
1. Select an operation from the **Operation name** list. **Overall** is highlighted by default.
32-
1. Select the **Profiler traces** button.
32+
1. Select **Profiler traces**.
3333

3434
:::image type="content" source="./media/profiler-settings/operation-entry-inline.png" alt-text="Screenshot that shows selecting operation and Profiler traces to view all Profiler traces." lightbox="media/profiler-settings/operation-entry.png":::
3535

@@ -55,7 +55,7 @@ To manually trigger a Profiler session, you need, at minimum, *write* access on
5555

5656
## Trigger settings
5757

58-
Select the **Triggers** button to open the **Trigger Settings** pane that has the **CPU**, **Memory**, and **Sampling** trigger tabs.
58+
Select **Triggers** to open the **Trigger Settings** pane that has the **CPU**, **Memory**, and **Sampling** trigger tabs.
5959

6060
### CPU or Memory triggers
6161

articles/azure-monitor/profiler/profiler-troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ It will display a status page similar to:
128128
129129
#### Manual installation
130130

131-
When you configure Profiler, updates are made to the web app's settings. If necessary, you can [apply the updates manually](./profiler.md#verify-always-on-setting-is-enabled).
131+
When you configure Profiler, updates are made to the web app's settings. If necessary, you can [apply the updates manually](./profiler.md#verify-the-always-on-setting-is-enabled).
132132

133133
#### Too many active profiling sessions
134134

articles/azure-monitor/profiler/profiler-vm.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -181,26 +181,26 @@ Because the Azure portal doesn't provide a way to set the Application Insights P
181181
182182
:::image type="content" source="./media/profiler-vm/azure-resource-explorer.png" alt-text="Screenshot that shows going to WAD config in Azure Resource Explorer.":::
183183
184-
1. Add the Application Insights Profiler sink to the `SinksConfig` node under WadCfg. If you don't already have a `SinksConfig` section, you might need to add one. To add the sink:
184+
1. Add the Application Insights Profiler sink to the `SinksConfig` node under `WadCfg`. If you don't already have a `SinksConfig` section, you might need to add one. To add the sink:
185185
186186
- Specify the proper Application Insights iKey in your settings.
187187
- Switch the Explorer mode to **Read/Write** in the upper-right corner.
188188
- Select **Edit**.
189189
190190
:::image type="content" source="./media/profiler-vm/resource-explorer-sinks-config.png" alt-text="Screenshot that shows adding the Application Insights Profiler sink.":::
191191
192-
```json
193-
"WadCfg": {
194-
"SinksConfig": {
195-
"Sink": [
196-
{
197-
"name": "MyApplicationInsightsProfilerSink",
198-
"ApplicationInsightsProfiler": "YOUR_APPLICATION_INSIGHTS_INSTRUMENTATION_KEY"
192+
```json
193+
"WadCfg": {
194+
"SinksConfig": {
195+
"Sink": [
196+
{
197+
"name": "MyApplicationInsightsProfilerSink",
198+
"ApplicationInsightsProfiler": "YOUR_APPLICATION_INSIGHTS_INSTRUMENTATION_KEY"
199+
}
200+
]
199201
}
200-
]
201-
}
202-
}
203-
```
202+
}
203+
```
204204
205205
1. After you've finished editing the config, select **PUT**.
206206

articles/azure-monitor/profiler/profiler.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,17 @@ To enable Profiler on Linux, walk through the [ASP.NET Core Azure Linux web apps
1818
1919
## Prerequisites
2020

21+
You need:
22+
2123
- An [Azure App Service ASP.NET/ASP.NET Core app](../../app-service/quickstart-dotnetcore.md).
2224
- An [Application Insights resource](/previous-versions/azure/azure-monitor/app/create-new-resource) connected to your App Service app.
2325

2426
## Verify the Always on setting is enabled
2527

2628
1. In the Azure portal, go to your App Service instance.
27-
1. Under **Settings** on the left side menu, select **Configuration**.
29+
1. Under **Settings** on the left pane, select **Configuration**.
2830

29-
:::image type="content" source="./media/profiler/configuration-menu.png" alt-text="Screenshot that shows selecting Configuration from the left side menu.":::
31+
:::image type="content" source="./media/profiler/configuration-menu.png" alt-text="Screenshot that shows selecting Configuration on the left pane.":::
3032

3133
1. Select the **General settings** tab.
3234
1. Verify that **Always on** > **On** is selected.
@@ -43,9 +45,9 @@ The following sections show you how to enable Application Insights for the same
4345

4446
If your Application Insights resource is in the same subscription as your instance of App Service:
4547

46-
1. Under **Settings** on the left side menu, select **Application Insights**.
48+
1. Under **Settings** on the left pane, select **Application Insights**.
4749

48-
:::image type="content" source="./media/profiler/app-insights-menu.png" alt-text="Screenshot that shows selecting Application Insights from the left side menu.":::
50+
:::image type="content" source="./media/profiler/app-insights-menu.png" alt-text="Screenshot that shows selecting Application Insights on the left pane.":::
4951

5052
1. Under **Application Insights**, select **Enable**.
5153
1. Verify that you connected an Application Insights resource to your app.
@@ -118,9 +120,9 @@ To enable Azure AD for profile ingestion:
118120

119121
To stop or restart Profiler for an individual app's instance:
120122

121-
1. Under **Settings** on the left side menu, select **WebJobs**.
123+
1. Under **Settings** on the left pane, select **WebJobs**.
122124

123-
:::image type="content" source="./media/profiler/web-jobs-menu.png" alt-text="Screenshot that shows selecting web jobs from the left side menu.":::
125+
:::image type="content" source="./media/profiler/web-jobs-menu.png" alt-text="Screenshot that shows selecting web jobs on the left pane.":::
124126

125127
1. Select the webjob named `ApplicationInsightsProfiler3`.
126128

0 commit comments

Comments
 (0)