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-telemetry-processors.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -236,7 +236,9 @@ To configure this option, under `include` or `exclude` (or both), specify at lea
236
236
The include-exclude configuration allows more than one specified condition.
237
237
All specified conditions must evaluate to true to result in a match.
238
238
239
-
***Required field**: `matchType` controls how items in `spanNames` arrays and `attributes` arrays are interpreted. Possible values are `regexp` and `strict`.
239
+
***Required field**: `matchType` controls how items in `spanNames` arrays and `attributes` arrays are interpreted.
240
+
Possible values are `regexp` and `strict`. Regular expression matches are performed against the entire attribute value,
241
+
so if you want to match a value that contains `abc` anywhere in it, then you need to use `.*abc.*`.
240
242
241
243
***Optional fields**:
242
244
*`spanNames` must match at least one of the items.
@@ -383,7 +385,9 @@ To configure this option, under `include` or `exclude` (or both), specify at lea
383
385
The include-exclude configuration allows more than one specified condition.
384
386
All specified conditions must evaluate to true to result in a match.
385
387
386
-
***Required field**: `matchType` controls how items in `spanNames` arrays and `attributes` arrays are interpreted. Possible values are `regexp` and `strict`.
388
+
***Required field**: `matchType` controls how items in `spanNames` arrays and `attributes` arrays are interpreted.
389
+
Possible values are `regexp` and `strict`. Regular expression matches are performed against the entire attribute value,
390
+
so if you want to match a value that contains `abc` anywhere in it, then you need to use `.*abc.*`.
387
391
388
392
***Optional fields**:
389
393
*`spanNames` must match at least one of the items.
@@ -506,7 +510,9 @@ The include-exclude configuration allows more than one specified condition.
506
510
All specified conditions must evaluate to true to result in a match.
507
511
508
512
***Required field**:
509
-
*`matchType` controls how items in `attributes` arrays are interpreted. Possible values are `regexp` and `strict`.
513
+
*`matchType` controls how items in `attributes` arrays are interpreted. Possible values are `regexp` and `strict`.
514
+
Regular expression matches are performed against the entire attribute value,
515
+
so if you want to match a value that contains `abc` anywhere in it, then you need to use `.*abc.*`.
510
516
*`attributes` specifies the list of attributes to match. All of these attributes must match exactly to result in a match.
511
517
512
518
> [!NOTE]
@@ -566,7 +572,9 @@ To configure this option, under `exclude`, specify the `matchType` one or more `
566
572
567
573
***Required field**:
568
574
*`matchType` controls how items in `metricNames` are matched. Possible values are `regexp` and `strict`.
569
-
*`metricNames` must match at least one of the items.
575
+
Regular expression matches are performed against the entire attribute value,
576
+
so if you want to match a value that contains `abc` anywhere in it, then you need to use `.*abc.*`.
577
+
*`metricNames` must match at least one of the items.
0 commit comments