Skip to content

Commit b8a8b53

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into lb-basic-overview
2 parents 7567325 + 418b631 commit b8a8b53

File tree

7 files changed

+48
-48
lines changed

7 files changed

+48
-48
lines changed

articles/azure-monitor/app/java-in-process-agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This section shows you how to download the auto-instrumentation jar file.
2929

3030
#### Download the jar file
3131

32-
Download the [applicationinsights-agent-3.2.10.jar](https://github.com/microsoft/ApplicationInsights-Java/releases/download/3.2.10/applicationinsights-agent-3.2.10.jar) file.
32+
Download the [applicationinsights-agent-3.2.11.jar](https://github.com/microsoft/ApplicationInsights-Java/releases/download/3.2.11/applicationinsights-agent-3.2.11.jar) file.
3333

3434
> [!WARNING]
3535
>
@@ -51,7 +51,7 @@ Download the [applicationinsights-agent-3.2.10.jar](https://github.com/microsoft
5151
5252
#### Point the JVM to the jar file
5353

54-
Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to your application's JVM args.
54+
Add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to your application's JVM args.
5555

5656
> [!TIP]
5757
> For help with configuring your application's JVM args, see [Tips for updating your JVM args](./java-standalone-arguments.md).
@@ -66,7 +66,7 @@ Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to your applicatio
6666
APPLICATIONINSIGHTS_CONNECTION_STRING = <Copy connection string from Application Insights Resource Overview>
6767
```
6868

69-
- Or you can create a configuration file named `applicationinsights.json`. Place it in the same directory as `applicationinsights-agent-3.2.10.jar` with the following content:
69+
- Or you can create a configuration file named `applicationinsights.json`. Place it in the same directory as `applicationinsights-agent-3.2.11.jar` with the following content:
7070

7171
```json
7272
{
@@ -367,7 +367,7 @@ If you want to attach custom dimensions to your logs, use [Log4j 1.2 MDC](https:
367367

368368
### Send custom telemetry by using the 2.x SDK
369369

370-
1. Add `applicationinsights-core-2.6.4.jar` to your application. All 2.x versions are supported by Application Insights Java 3.x. If you have a choice. it's worth using the latest version:
370+
1. Add `applicationinsights-core-2.6.4.jar` to your application. All 2.x versions are supported by Application Insights Java 3.x. If you have a choice, it's worth using the latest version:
371371

372372
```xml
373373
<dependency>

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

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ Configure [App Services](../../app-service/configure-language-java.md#set-java-r
1515

1616
## Spring Boot
1717

18-
Add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` somewhere before `-jar`, for example:
18+
Add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` somewhere before `-jar`, for example:
1919

2020
```
21-
java -javaagent:path/to/applicationinsights-agent-3.2.10.jar -jar <myapp.jar>
21+
java -javaagent:path/to/applicationinsights-agent-3.2.11.jar -jar <myapp.jar>
2222
```
2323

2424
## Spring Boot via Docker entry point
2525

26-
If you're using the *exec* form, add the parameter `"-javaagent:path/to/applicationinsights-agent-3.2.10.jar"` to the parameter list somewhere before the `"-jar"` parameter, for example:
26+
If you're using the *exec* form, add the parameter `"-javaagent:path/to/applicationinsights-agent-3.2.11.jar"` to the parameter list somewhere before the `"-jar"` parameter, for example:
2727

2828
```
29-
ENTRYPOINT ["java", "-javaagent:path/to/applicationinsights-agent-3.2.10.jar", "-jar", "<myapp.jar>"]
29+
ENTRYPOINT ["java", "-javaagent:path/to/applicationinsights-agent-3.2.11.jar", "-jar", "<myapp.jar>"]
3030
```
3131

32-
If you're using the *shell* form, add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` somewhere before `-jar`, for example:
32+
If you're using the *shell* form, add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` somewhere before `-jar`, for example:
3333

3434
```
35-
ENTRYPOINT java -javaagent:path/to/applicationinsights-agent-3.2.10.jar -jar <myapp.jar>
35+
ENTRYPOINT java -javaagent:path/to/applicationinsights-agent-3.2.11.jar -jar <myapp.jar>
3636
```
3737

3838
## Tomcat 8 (Linux)
@@ -42,18 +42,18 @@ ENTRYPOINT java -javaagent:path/to/applicationinsights-agent-3.2.10.jar -jar <my
4242
If you installed Tomcat via `apt-get` or `yum`, then you should have a file `/etc/tomcat8/tomcat8.conf`. Add this line to the end of that file:
4343

4444
```
45-
JAVA_OPTS="$JAVA_OPTS -javaagent:path/to/applicationinsights-agent-3.2.10.jar"
45+
JAVA_OPTS="$JAVA_OPTS -javaagent:path/to/applicationinsights-agent-3.2.11.jar"
4646
```
4747

4848
### Tomcat installed via download and unzip
4949

5050
If you installed Tomcat via download and unzip from [https://tomcat.apache.org](https://tomcat.apache.org), then you should have a file `<tomcat>/bin/catalina.sh`. Create a new file in the same directory named `<tomcat>/bin/setenv.sh` with the following content:
5151

5252
```
53-
CATALINA_OPTS="$CATALINA_OPTS -javaagent:path/to/applicationinsights-agent-3.2.10.jar"
53+
CATALINA_OPTS="$CATALINA_OPTS -javaagent:path/to/applicationinsights-agent-3.2.11.jar"
5454
```
5555

56-
If the file `<tomcat>/bin/setenv.sh` already exists, then modify that file and add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to `CATALINA_OPTS`.
56+
If the file `<tomcat>/bin/setenv.sh` already exists, then modify that file and add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to `CATALINA_OPTS`.
5757

5858

5959
## Tomcat 8 (Windows)
@@ -63,36 +63,36 @@ If the file `<tomcat>/bin/setenv.sh` already exists, then modify that file and a
6363
Locate the file `<tomcat>/bin/catalina.bat`. Create a new file in the same directory named `<tomcat>/bin/setenv.bat` with the following content:
6464

6565
```
66-
set CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.10.jar
66+
set CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.11.jar
6767
```
6868

6969
Quotes aren't necessary, but if you want to include them, the proper placement is:
7070

7171
```
72-
set "CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.10.jar"
72+
set "CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.11.jar"
7373
```
7474

75-
If the file `<tomcat>/bin/setenv.bat` already exists, just modify that file and add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to `CATALINA_OPTS`.
75+
If the file `<tomcat>/bin/setenv.bat` already exists, just modify that file and add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to `CATALINA_OPTS`.
7676

7777
### Running Tomcat as a Windows service
7878

79-
Locate the file `<tomcat>/bin/tomcat8w.exe`. Run that executable and add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the `Java Options` under the `Java` tab.
79+
Locate the file `<tomcat>/bin/tomcat8w.exe`. Run that executable and add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to the `Java Options` under the `Java` tab.
8080

8181

8282
## JBoss EAP 7
8383

8484
### Standalone server
8585

86-
Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the existing `JAVA_OPTS` environment variable in the file `JBOSS_HOME/bin/standalone.conf` (Linux) or `JBOSS_HOME/bin/standalone.conf.bat` (Windows):
86+
Add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to the existing `JAVA_OPTS` environment variable in the file `JBOSS_HOME/bin/standalone.conf` (Linux) or `JBOSS_HOME/bin/standalone.conf.bat` (Windows):
8787

8888
```java ...
89-
JAVA_OPTS="-javaagent:path/to/applicationinsights-agent-3.2.10.jar -Xms1303m -Xmx1303m ..."
89+
JAVA_OPTS="-javaagent:path/to/applicationinsights-agent-3.2.11.jar -Xms1303m -Xmx1303m ..."
9090
...
9191
```
9292

9393
### Domain server
9494

95-
Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the existing `jvm-options` in `JBOSS_HOME/domain/configuration/host.xml`:
95+
Add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to the existing `jvm-options` in `JBOSS_HOME/domain/configuration/host.xml`:
9696

9797
```xml
9898
...
@@ -102,7 +102,7 @@ Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the existing `j
102102
<jvm-options>
103103
<option value="-server"/>
104104
<!--Add Java agent jar file here-->
105-
<option value="-javaagent:path/to/applicationinsights-agent-3.2.10.jar"/>
105+
<option value="-javaagent:path/to/applicationinsights-agent-3.2.11.jar"/>
106106
<option value="-XX:MetaspaceSize=96m"/>
107107
<option value="-XX:MaxMetaspaceSize=256m"/>
108108
</jvm-options>
@@ -142,20 +142,20 @@ Add these lines to `start.ini`
142142

143143
```
144144
--exec
145-
-javaagent:path/to/applicationinsights-agent-3.2.10.jar
145+
-javaagent:path/to/applicationinsights-agent-3.2.11.jar
146146
```
147147

148148

149149
## Payara 5
150150

151-
Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the existing `jvm-options` in `glassfish/domains/domain1/config/domain.xml`:
151+
Add `-javaagent:path/to/applicationinsights-agent-3.2.11.jar` to the existing `jvm-options` in `glassfish/domains/domain1/config/domain.xml`:
152152

153153
```xml
154154
...
155155
<java-config ...>
156156
<!--Edit the JVM options here-->
157157
<jvm-options>
158-
-javaagent:path/to/applicationinsights-agent-3.2.10.jar>
158+
-javaagent:path/to/applicationinsights-agent-3.2.11.jar>
159159
</jvm-options>
160160
...
161161
</java-config>
@@ -165,14 +165,14 @@ Add `-javaagent:path/to/applicationinsights-agent-3.2.10.jar` to the existing `j
165165
## WebSphere 8
166166

167167
Open Management Console
168-
go to **servers > WebSphere application servers > Application servers**, choose the appropriate application servers and select:
168+
Go to **servers > WebSphere application servers > Application servers**, choose the appropriate application servers and select:
169169

170170
```
171171
Java and Process Management > Process definition > Java Virtual Machine
172172
```
173173
In "Generic JVM arguments" add the following:
174174
```
175-
-javaagent:path/to/applicationinsights-agent-3.2.10.jar
175+
-javaagent:path/to/applicationinsights-agent-3.2.11.jar
176176
```
177177
After that, save and restart the application server.
178178

@@ -181,7 +181,7 @@ After that, save and restart the application server.
181181

182182
Create a new file `jvm.options` in the server directory (for example `<openliberty>/usr/servers/defaultServer`), and add this line:
183183
```
184-
-javaagent:path/to/applicationinsights-agent-3.2.10.jar
184+
-javaagent:path/to/applicationinsights-agent-3.2.11.jar
185185
```
186186

187187
## Others

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ You will find more details and additional configuration options below.
3737

3838
## Configuration file path
3939

40-
By default, Application Insights Java 3.x expects the configuration file to be named `applicationinsights.json`, and to be located in the same directory as `applicationinsights-agent-3.2.10.jar`.
40+
By default, Application Insights Java 3.x expects the configuration file to be named `applicationinsights.json`, and to be located in the same directory as `applicationinsights-agent-3.2.11.jar`.
4141

4242
You can specify your own configuration file path using either
4343

4444
* `APPLICATIONINSIGHTS_CONFIGURATION_FILE` environment variable, or
4545
* `applicationinsights.configuration.file` Java system property
4646

47-
If you specify a relative path, it will be resolved relative to the directory where `applicationinsights-agent-3.2.10.jar` is located.
47+
If you specify a relative path, it will be resolved relative to the directory where `applicationinsights-agent-3.2.11.jar` is located.
4848

4949
Alternatively, instead of using a configuration file, you can specify the entire _content_ of the json configuration
5050
via the environment variable `APPLICATIONINSIGHTS_CONFIGURATION_CONTENT`.
@@ -67,7 +67,7 @@ You can also set the connection string using the environment variable `APPLICATI
6767

6868
You can also set the connection string by specifying a file to load the connection string from.
6969

70-
If you specify a relative path, it will be resolved relative to the directory where `applicationinsights-agent-3.2.10.jar` is located.
70+
If you specify a relative path, it will be resolved relative to the directory where `applicationinsights-agent-3.2.11.jar` is located.
7171

7272
```json
7373
{
@@ -342,7 +342,7 @@ To disable auto-collection of Micrometer metrics (including Spring Boot Actuator
342342

343343
## HTTP headers
344344

345-
Starting from 3.2.10, you can capture request and response headers on your server (request) telemetry:
345+
Starting from 3.2.11, you can capture request and response headers on your server (request) telemetry:
346346

347347
```json
348348
{
@@ -388,7 +388,7 @@ Again, the header names are case-insensitive, and the examples above will be cap
388388

389389
By default, http server requests that result in 4xx response codes are captured as errors.
390390

391-
Starting from version 3.2.10, you can change this behavior to capture them as success if you prefer:
391+
Starting from version 3.2.11, you can change this behavior to capture them as success if you prefer:
392392

393393
```json
394394
{
@@ -490,7 +490,7 @@ Starting from version 3.2.0, the following preview instrumentations can be enabl
490490
```
491491
> [!NOTE]
492492
> Akka instrumentation is available starting from version 3.2.2
493-
> Vertx HTTP Library instrumentation is available starting from version 3.2.10
493+
> Vertx HTTP Library instrumentation is available starting from version 3.2.11
494494
495495
## Metric interval
496496

@@ -585,7 +585,7 @@ and the console, corresponding to this configuration:
585585
`level` can be one of `OFF`, `ERROR`, `WARN`, `INFO`, `DEBUG`, or `TRACE`.
586586

587587
`path` can be an absolute or relative path. Relative paths are resolved against the directory where
588-
`applicationinsights-agent-3.2.10.jar` is located.
588+
`applicationinsights-agent-3.2.11.jar` is located.
589589

590590
`maxSizeMb` is the max size of the log file before it rolls over.
591591

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ In this article, we cover some of the common issues that you might face while in
1313
## Check the self-diagnostic log file
1414

1515
By default, Application Insights Java 3.x produces a log file named `applicationinsights.log` in the same directory
16-
that holds the `applicationinsights-agent-3.2.9.jar` file.
16+
that holds the `applicationinsights-agent-3.2.11.jar` file.
1717

1818
This log file is the first place to check for hints to any issues you might be experiencing.
1919

2020
If no log file is generated, check that your Java application has write permission to the directory that holds the
21-
`applicationinsights-agent-3.2.9.jar` file.
21+
`applicationinsights-agent-3.2.11.jar` file.
2222

2323
If still no log file is generated, check the stdout log from your Java application. Application Insights Java 3.x
2424
should log any errors to stdout that would prevent it from logging to its normal location.

articles/azure-monitor/toc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,14 +487,14 @@ items:
487487
items:
488488
- name: Overview
489489
displayName: Azure Monitor agent
490-
href: agents/azure-monitor-agent-overview.md
491-
- name: Install and manage
490+
- name: Installation options
492491
displayName: Azure Monitor agent
493-
href: agents/azure-monitor-agent-manage.md
494492
items:
493+
- name: Using extension
494+
href: agents/azure-monitor-agent-manage.md
495495
- name: Extension versions
496496
href: agents/azure-monitor-agent-extension-versions.md
497-
- name: Windows client setup (preview)
497+
- name: Using Windows client installer (preview)
498498
href: agents/azure-monitor-agent-windows-client.md
499499
- name: Data collection
500500
items:

articles/azure-netapp-files/azure-netapp-files-resource-limits.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: azure-netapp-files
1212
ms.workload: storage
1313
ms.tgt_pltfrm: na
1414
ms.topic: conceptual
15-
ms.date: 03/02/2022
15+
ms.date: 04/13/2022
1616
ms.author: anfdocs
1717
---
1818
# Resource limits for Azure NetApp Files
@@ -81,11 +81,11 @@ The service dynamically adjusts the `maxfiles` limit for a volume based on its p
8181

8282
| Volume size (quota) | Automatic readjustment of the `maxfiles` limit |
8383
|----------------------------|-------------------|
84-
| <= 1 TiB | 20 million |
85-
| > 1 TiB but <= 2 TiB | 40 million |
86-
| > 2 TiB but <= 3 TiB | 60 million |
87-
| > 3 TiB but <= 4 TiB | 80 million |
88-
| > 4 TiB | 100 million |
84+
| <= 1 TiB | 21,251,126 |
85+
| > 1 TiB but <= 2 TiB | 42,502,252 |
86+
| > 2 TiB but <= 3 TiB | 63,753,378 |
87+
| > 3 TiB but <= 4 TiB | 85,004,504 |
88+
| > 4 TiB | 212,511,260 |
8989

9090
If you have allocated at least 4 TiB of quota for a volume, you can initiate a [support request](#request-limit-increase) to increase the `maxfiles` (inodes) limit beyond 100 million. For every 100 million files you increase (or a fraction thereof), you need to increase the corresponding volume quota by 4 TiB. For example, if you increase the `maxfiles` limit from 100 million files to 200 million files (or any number in between), you need to increase the volume quota from 4 TiB to 8 TiB.
9191

articles/virtual-machines/linux/cli-ps-findimage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ Another way to find an image in a location is to run the [az vm image list-publi
121121
```azurecli
122122
az vm image list \
123123
--location westus \
124-
--publisher Canonical \
125-
--offer UbuntuServer \
124+
--publisher Canonical \
125+
--offer UbuntuServer \
126126
--sku 18.04-LTS \
127127
--all --output table
128128
```

0 commit comments

Comments
 (0)