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/azure-monitor/app/java-standalone-config.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
@@ -209,7 +209,7 @@ If you want to collect some other Java Management Extensions (JMX) metrics:
209
209
In the preceding configuration example:
210
210
211
211
*`name` is the metric name that is assigned to this JMX metric (can be anything).
212
-
*`objectName` is the [Object Name](https://docs.oracle.com/javase/8/docs/api/javax/management/ObjectName.html) of the `JMX MBean` that you want to collect.Wildcard character asterisk (*) is supported.
212
+
*`objectName` is the [Object Name](https://docs.oracle.com/javase/8/docs/api/javax/management/ObjectName.html) of the `JMX MBean` that you want to collect.Wildcard character asterisk (*) is supported.
213
213
*`attribute` is the attribute name inside of the `JMX MBean` that you want to collect.
214
214
215
215
Numeric and Boolean JMX metric values are supported. Boolean JMX metrics are mapped to `0` for false and `1` for true.
@@ -251,7 +251,7 @@ Starting with version 3.2.0, you can set a custom dimension programmatically on
251
251
}
252
252
```
253
253
254
-
And then at the beginning of each request, call:
254
+
and then at the beginning of each request, call:
255
255
256
256
```java
257
257
Span.current().setAttribute("mycustomer", "xyz");
@@ -322,7 +322,7 @@ add this property to your json configuration:
322
322
}
323
323
```
324
324
325
-
And add `applicationinsights-core` to your application:
325
+
and add `applicationinsights-core` to your application:
326
326
327
327
```xml
328
328
<dependency>
@@ -332,7 +332,7 @@ And add `applicationinsights-core` to your application:
332
332
</dependency>
333
333
```
334
334
335
-
And use the static `configure(String)` method in the class
335
+
and use the static `configure(String)` method in the class
0 commit comments