Skip to content

Commit e4eaf72

Browse files
committed
edit pass: app-articles-batch-14
1 parent 09f154a commit e4eaf72

File tree

4 files changed

+73
-69
lines changed

4 files changed

+73
-69
lines changed

articles/azure-monitor/app/automate-with-logic-apps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can also add other actions. The Logic Apps feature of Azure App Service make
2121

2222
## Create a logic app for Application Insights
2323

24-
In this tutorial, you learn how to create a logic app that uses the Analytics autocluster algorithm to group attributes in the data for a web application. The flow automatically sends the results by email. This example shows how you can use Application Insights Analytics and Logic Apps together.
24+
In this tutorial, you learn how to create a logic app that uses the Log Analytics autocluster algorithm to group attributes in the data for a web application. The flow automatically sends the results by email. This example shows how you can use Application Insights analytics and Logic Apps together.
2525

2626
### Create a logic app
2727
1. Sign in to the [Azure portal](https://portal.azure.com).
@@ -62,10 +62,10 @@ For this step, you need an application ID and an API key for your resource.
6262

6363
![Screenshot that shows the Logic App Designer flow connection window.](./media/automate-with-logic-apps/7connection.png)
6464

65-
### Specify the Analytics query and chart type
66-
In the following example, the query selects the failed requests within the last day and correlates them with exceptions that occurred as part of the operation. Analytics correlates the failed requests based on the `operation_Id` identifier. The query then segments the results by using the autocluster algorithm.
65+
### Specify the Log Analytics query and chart type
66+
In the following example, the query selects the failed requests within the last day and correlates them with exceptions that occurred as part of the operation. Log Analytics correlates the failed requests based on the `operation_Id` identifier. The query then segments the results by using the autocluster algorithm.
6767

68-
When you create your own queries, verify that they're working properly in Analytics before you add them to your flow.
68+
When you create your own queries, verify that they're working properly in Log Analytics before you add them to your flow.
6969

7070
1. In the **Query** box, add the following Log Analytics query:
7171

@@ -82,7 +82,7 @@ When you create your own queries, verify that they're working properly in Analyt
8282
8383
1. In the **Chart Type** box, select **Html Table**.
8484
85-
![Screenshot that shows the Analytics query configuration window.](./media/automate-with-logic-apps/8query.png)
85+
![Screenshot that shows the Log Analytics query configuration window.](./media/automate-with-logic-apps/8query.png)
8686
8787
### Configure the logic app to send email
8888
@@ -130,5 +130,5 @@ When you create your own queries, verify that they're working properly in Analyt
130130
131131
## Next steps
132132
133-
- Learn more about creating [Analytics queries](../logs/get-started-queries.md).
133+
- Learn more about creating [Log Analytics queries](../logs/get-started-queries.md).
134134
- Learn more about [Logic Apps](../../logic-apps/logic-apps-overview.md).

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

Lines changed: 54 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Now publish your app to the server, let people use it, and watch the telemetry s
191191

192192
* [Microsoft Visual C++ Redistributable](https://www.microsoft.com/download/details.aspx?id=40784)
193193

194-
(This component enables performance counters.)
194+
This component enables performance counters.
195195

196196
### Azure App Service, Azure Kubernetes Service, VMs config
197197

@@ -576,7 +576,9 @@ To search for individual instances of dependency, exception, and method reports,
576576

577577
Learn more about how to [diagnose dependency issues](./asp-net-dependencies.md#diagnosis).
578578

579-
### Questions? Problems?
579+
### Questions or problems?
580+
581+
Use the following resources:
580582

581583
* No data? [Set firewall exceptions](./ip-addresses.md).
582584
* [Troubleshoot Java](java-2x-troubleshoot.md).
@@ -850,49 +852,49 @@ On your Linux server machines:
850852
1. Edit `/etc/collectd/collectd.conf`:
851853
* Ensure that [the Java plug-in](https://collectd.org/wiki/index.php/Plugin:Java) is enabled.
852854
* Update the JVMArg for the `java.class.path` to include the following jar. Update the version number to match the one you downloaded:
853-
* `/usr/share/collectd/java/applicationinsights-collectd-1.0.5.jar`
855+
* `/usr/share/collectd/java/applicationinsights-collectd-1.0.5.jar`
854856
* Add this snippet by using the instrumentation key from your resource:
855857

856-
```xml
857-
858-
LoadPlugin "com.microsoft.applicationinsights.collectd.ApplicationInsightsWriter"
859-
<Plugin ApplicationInsightsWriter>
860-
InstrumentationKey "Your key"
861-
</Plugin>
862-
```
863-
864-
Here's part of a sample configuration file:
865-
866-
```xml
867-
868-
...
869-
# collectd plugins
870-
LoadPlugin cpu
871-
LoadPlugin disk
872-
LoadPlugin load
873-
...
874-
875-
# Enable Java Plugin
876-
LoadPlugin "java"
877-
878-
# Configure Java Plugin
879-
<Plugin "java">
880-
JVMArg "-verbose:jni"
881-
JVMArg "-Djava.class.path=/usr/share/collectd/java/applicationinsights-collectd-1.0.5.jar:/usr/share/collectd/java/collectd-api.jar"
882-
883-
# Enabling Application Insights plugin
884-
LoadPlugin "com.microsoft.applicationinsights.collectd.ApplicationInsightsWriter"
885-
886-
# Configuring Application Insights plugin
887-
<Plugin ApplicationInsightsWriter>
888-
InstrumentationKey "12345678-1234-1234-1234-123456781234"
889-
</Plugin>
890-
891-
# Other plugin configurations ...
892-
...
893-
</Plugin>
894-
...
895-
```
858+
```xml
859+
860+
LoadPlugin "com.microsoft.applicationinsights.collectd.ApplicationInsightsWriter"
861+
<Plugin ApplicationInsightsWriter>
862+
InstrumentationKey "Your key"
863+
</Plugin>
864+
```
865+
866+
Here's part of a sample configuration file:
867+
868+
```xml
869+
870+
...
871+
# collectd plugins
872+
LoadPlugin cpu
873+
LoadPlugin disk
874+
LoadPlugin load
875+
...
876+
877+
# Enable Java Plugin
878+
LoadPlugin "java"
879+
880+
# Configure Java Plugin
881+
<Plugin "java">
882+
JVMArg "-verbose:jni"
883+
JVMArg "-Djava.class.path=/usr/share/collectd/java/applicationinsights-collectd-1.0.5.jar:/usr/share/collectd/java/collectd-api.jar"
884+
885+
# Enabling Application Insights plugin
886+
LoadPlugin "com.microsoft.applicationinsights.collectd.ApplicationInsightsWriter"
887+
888+
# Configuring Application Insights plugin
889+
<Plugin ApplicationInsightsWriter>
890+
InstrumentationKey "12345678-1234-1234-1234-123456781234"
891+
</Plugin>
892+
893+
# Other plugin configurations ...
894+
...
895+
</Plugin>
896+
...
897+
```
896898

897899
Configure other [collectd plug-ins](https://collectd.org/wiki/index.php/Table_of_Plugins), which can collect various data from different sources.
898900

@@ -909,12 +911,12 @@ By default, the Application Insights plug-in sends all the data collected by all
909911
To exclude data from specific plug-ins or data sources:
910912

911913
* Edit the configuration file.
912-
* In `<Plugin ApplicationInsightsWriter>`, add directive lines like the ones in the following table.
914+
* In `<Plugin ApplicationInsightsWriter>`, add directive lines like the ones in the following table:
913915

914-
| Directive | Effect |
915-
| --- | --- |
916-
| `Exclude disk` |Exclude all data collected by the `disk` plug-in. |
917-
| `Exclude disk:read,write` |Exclude the sources named `read` and `write` from the `disk` plug-in. |
916+
| Directive | Effect |
917+
| --- | --- |
918+
| `Exclude disk` |Exclude all data collected by the `disk` plug-in. |
919+
| `Exclude disk:read,write` |Exclude the sources named `read` and `write` from the `disk` plug-in. |
918920

919921
Separate directives with a newline.
920922

@@ -980,7 +982,8 @@ Follow these steps:
980982

981983
`azure.application-insights.instrumentation-key=<your-instrumentation-key-here>`
982984
1. Build your application and run it.
983-
1. The preceding steps should get you up and running with pre-aggregated metrics autocollected to Azure Monitor.
985+
986+
The preceding steps should get you up and running with pre-aggregated metrics autocollected to Azure Monitor.
984987

985988
### Use Spring 2.x
986989

@@ -1006,7 +1009,8 @@ Follow these steps:
10061009

10071010
`azure.application-insights.instrumentation-key=<your-instrumentation-key-here>`
10081011
1. Build your application and run it.
1009-
1. The preceding steps should get you running with pre-aggregated metrics autocollected to Azure Monitor. For more information on how to fine-tune Application Insights Spring Boot starter, see the [readme on GitHub](https://github.com/Microsoft/azure-spring-boot/releases/latest).
1012+
1013+
The preceding steps should get you running with pre-aggregated metrics autocollected to Azure Monitor. For more information on how to fine-tune Application Insights Spring Boot starter, see the [readme on GitHub](https://github.com/Microsoft/azure-spring-boot/releases/latest).
10101014

10111015
Default metrics:
10121016

articles/azure-monitor/app/java-standalone-arguments.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Add the JVM arg - Azure Monitor Application Insights for Java
3-
description: Learn how to add the JVM arg that enables Azure Monitor Application Insights for Java.
2+
title: Add the JVM arg - Application Insights for Java
3+
description: Learn how to add the JVM arg that enables Application Insights for Java.
44
ms.topic: conceptual
55
ms.date: 12/14/2022
66
ms.devlang: java
77
ms.custom: devx-track-java
88
ms.reviewer: mmcc
99
---
1010

11-
# Tips for updating your JVM args: Azure Monitor Application Insights for Java
11+
# Update your JVM args: Application Insights for Java
1212

13-
## Azure App Services
13+
## Azure App Service
1414

1515
For more information, see [Application monitoring for Azure App Service and Java](./azure-web-apps-java.md).
1616

articles/azure-monitor/app/usage-impact.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ To use the Impact analysis workbook, in your Application Insights resources go t
2828

2929
:::image type="content" source="./media/usage-impact/selected-event.png" alt-text="Screenshot that shows where to choose an initial page view, custom event, or request." lightbox="./media/usage-impact/selected-event.png":::
3030

31-
1. Select an event from the **Selected event** dropdown list.
32-
1. Select a metric from the **analyze how its** dropdown list.
33-
1. Select an event from the **Impacting event** dropdown list.
31+
1. From the **Selected event** dropdown list, select an event.
32+
1. From the **analyze how its** dropdown list, select a metric.
33+
1. From the **Impacting event** dropdown list, select an event.
3434
1. To add a filter, use the **Add selected event filters** tab or the **Add impacting event filters** tab.
3535

3636
## Is page load time affecting how many people convert on my page?
3737

3838
To begin answering questions with the Impact workbook, choose an initial page view, custom event, or request.
3939

40-
1. Select an event from the **Selected event** dropdown list.
40+
1. From the **Selected event** dropdown list, select an event.
4141
1. Leave the **analyze how its** dropdown list on the default selection of **Duration**. (In this context, **Duration** is an alias for **Page Load Time**.)
42-
1. For the **Impacting event** dropdown list, select a custom event. This event should correspond to a UI element on the page view you selected in step 1.
42+
1. From the **Impacting event** dropdown list, select a custom event. This event should correspond to a UI element on the page view you selected in step 1.
4343

4444
:::image type="content" source="./media/usage-impact/impact.png" alt-text="Screenshot that shows an example with the selected event as Home Page analyzed by duration." lightbox="./media/usage-impact/impact.png":::
4545

@@ -49,11 +49,11 @@ Impact supports both standard and custom properties and measurements. Use whatev
4949

5050
## Do users from different countries or regions convert at different rates?
5151

52-
1. Select an event from the **Selected event** dropdown list.
53-
1. Choose **Country or region** from the **analyze how its** dropdown list.
54-
1. For the **Impacting event** dropdown list, select a custom event that corresponds to a UI element on the page view you chose in step 1.
52+
1. From the **Selected event** dropdown list, select an event.
53+
1. From the **analyze how its** dropdown list, select **Country or region**.
54+
1. From the **Impacting event** dropdown list, select a custom event that corresponds to a UI element on the page view you chose in step 1.
5555

56-
:::image type="content" source="./media/usage-impact/regions.png" alt-text="Screenshot that shows an example with the selected event as GET analyzed by country and region." lightbox="./media/usage-impact/regions.png":::
56+
:::image type="content" source="./media/usage-impact/regions.png" alt-text="Screenshot that shows an example with the selected event as GET analyzed by country and region." lightbox="./media/usage-impact/regions.png":::
5757

5858
## How does the Impact analysis workbook calculate these conversion rates?
5959

0 commit comments

Comments
 (0)