Skip to content

Commit c36f1ff

Browse files
authored
Fix regex values in configuration example (#19453)
The values istio_* and envoy_* make less sense in regex because it will match this (https://regex101.com/r/ehe8T9/1). The best regex values would be istio_.* and envoy_.*
1 parent 1369f96 commit c36f1ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

istio/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ instances:
248248
metrics:
249249
- '.*'
250250
exclude_metrics:
251-
- istio_*
252-
- envoy_*
251+
- istio_.*
252+
- envoy_.*
253253
254254
```
255255

0 commit comments

Comments
 (0)