Skip to content

Commit 0bf3adf

Browse files
committed
Updating links and making edits
1 parent 2d3e7b8 commit 0bf3adf

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/azure-monitor/app/deprecated-java-2x.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ ms.reviewer: mmcc
1717
1818
In this article, you'll learn how to use Java 2.x with Application Insights. This article shows you how to:
1919

20-
- Get started, including using the Application Insights SDK to instrument request, track dependencies, collect performance counters, diagnose performance issues and exceptions, and write code to track what users do with your app
21-
- Send trace logs sent automatically to Application Insights
20+
- Get started, including instrumenting request, tracking dependencies, collecting performance counters, diagnosing performance issues and exceptions, and writing code to track what users do with your app
21+
- Send trace logs to Application Insights and explore them using the Application Insights portal.
2222
- Monitor dependencies, caught exceptions, and method execution times in Java web apps
2323
- Filter telemetry in your Java web app
24-
- Explore Linux system performance metrics in Application Insights by installing collectd
25-
- Use Micrometer with Azure Application Insights Java SDK
24+
- Explore Linux system performance metrics in Application Insights by using collectd
25+
- Measure metrics for JVM-based application code and export the data to your favorite monitoring systems by using Micrometer application monitoring
2626

2727
## Get started with Application Insights in a Java web project
2828

@@ -42,7 +42,7 @@ Application Insights is an extensible analytics service for web developers that
4242

4343
3. Find the instrumentation key of the new resource. You'll need to paste this key into your code project shortly.
4444

45-
![In the new resource overview, click Properties and copy the Instrumentation Key](./media/deprecated-java-2x/instrumentation-key-001.png)
45+
:::image type="content" source="./media/deprecated-java-2x/instrumentation-key-001.png" alt-text="In the new resource overview, click Properties and copy the Instrumentation Key." lightbox="./media/deprecated-java-2x/instrumentation-key-001.png":::
4646

4747
[!INCLUDE [azure-monitor-log-analytics-rebrand](../../../includes/azure-monitor-instrumentation-key-deprecation.md)]
4848

@@ -164,23 +164,23 @@ Return to your Application Insights resource in [Microsoft Azure portal](https:/
164164

165165
HTTP requests data appears on the overview pane. (If it isn't there, wait a few seconds and then click Refresh.)
166166

167-
![Screenshot of overview sample data](./media/deprecated-java-2x/overview-graphs.png)
167+
:::image type="content" source="./media/deprecated-java-2x/overview-graphs.png" alt-text="Screenshot of overview sample data." lightbox="./media/deprecated-java-2x/overview-graphs.png":::
168168

169169
[Learn more about metrics.][metrics]
170170

171171
Click through any chart to see more detailed aggregated metrics.
172172

173-
![Application Insights failures pane with charts](./media/deprecated-java-2x/006-barcharts.png)
173+
:::image type="content" source="./media/deprecated-java-2x/006-barcharts.png" alt-text="Application Insights failures pane with charts." lightbox="./media/deprecated-java-2x/006-barcharts.png":::
174174

175175
#### Instance data
176176
Click through a specific request type to see individual instances.
177177

178-
![Drill into a specific sample view](./media/deprecated-java-2x/007-instance.png)
178+
:::image type="content" source="./media/deprecated-java-2x/007-instance.png" alt-text="Drill into a specific sample view" lightbox="./media/deprecated-java-2x/007-instance.png":::
179179

180180
#### Analytics: Powerful query language
181181
As you accumulate more data, you can run queries both to aggregate data and to find individual instances. [Analytics](../logs/log-query-overview.md) is a powerful tool for both for understanding performance and usage, and for diagnostic purposes.
182182

183-
![Example of Analytics](./media/deprecated-java-2x/0025.png)
183+
:::image type="content" source="./media/deprecated-java-2x/0025.png" alt-text="Example of Analytics." lightbox="./media/deprecated-java-2x/0025.png":::
184184

185185
### Install your app on the server
186186
Now publish your app to the server, let people use it, and watch the telemetry show up on the portal.
@@ -225,7 +225,7 @@ Outgoing SDK configuration is defined in the [AI-Agent.xml](#monitor-dependencie
225225
### Performance counters
226226
Open **Investigate**, **Metrics**, to see a range of performance counters.
227227

228-
![Screenshot of metrics pane with process private bytes selected](./media/deprecated-java-2x/011-perf-counters.png)
228+
:::image type="content" source="./media/deprecated-java-2x/011-perf-counters.png" alt-text="Screenshot of metrics pane with process private bytes selected." lightbox="./media/deprecated-java-2x/011-perf-counters.png":::
229229

230230
#### Customize performance counter collection
231231
To disable collection of the standard set of performance counters, add the following code under the root node of the *ApplicationInsights.xml* file:
@@ -481,7 +481,7 @@ Now that you've configured your project to send traces to Application Insights,
481481

482482
Exceptions submitted via loggers will be displayed on the portal as Exception Telemetry.
483483

484-
![In the Application Insights portal, open Search](./media/deprecated-java-2x/01-diagnostics.png)
484+
:::image type="content" source="./media/deprecated-java-2x/01-diagnostics.png" alt-text="In the Application Insights portal, open Search" lightbox="./media/deprecated-java-2x/01-diagnostics.png":::
485485

486486
<!-- START ARTICLE: Dependencies -->
487487

@@ -863,7 +863,7 @@ In the [Microsoft Azure portal](https://portal.azure.com), open the [Application
863863

864864
Take a copy of the instrumentation key, which identifies the resource.
865865

866-
![Browse all, open your resource, and then in the Essentials drop-down, select, and copy the Instrumentation Key](./media/deprecated-java-2x/instrumentation-key-001.png)
866+
:::image type="content" source="./media/deprecated-java-2x/instrumentation-key-001.png" alt-text="Browse all, open your resource, and then in the Essentials drop-down, select, and copy the Instrumentation Key" lightbox="./media/deprecated-java-2x/instrumentation-key-001.png":::
867867

868868
[!INCLUDE [azure-monitor-log-analytics-rebrand](../../../includes/azure-monitor-instrumentation-key-deprecation.md)]
869869

@@ -1229,7 +1229,7 @@ Add the following binding code to the configuration file:
12291229
* Use [Analytics](../logs/log-query-overview.md) for powerful queries over telemetry from your app
12301230
* For more information, visit [Azure for Java developers](/java/azure).
12311231
* [Diagnostic search][diagnostic]
1232-
* [Sampling](./sampling.md) - Consider sampling as an alternative that does not skew your metrics.
1232+
* [Sampling](./sampling.md) - Consider sampling as an alternative to filtering that does not skew your metrics.
12331233
* To learn more about Micrometer, see the official [Micrometer documentation](https://micrometer.io/docs).
12341234
* To learn about Spring on Azure, see the official [Spring on Azure documentation](/java/azure/spring-framework/).
12351235

0 commit comments

Comments
 (0)