and I what I am trying is to replace if the request_path is distinct to good1 or good2 to change to /dummy path.
Here is my relabeling rule:
- source_labels: [__name__,request_path]
regex: istio_requests_total;^.(/good1|/good2)
action: replace
replacement: /dummy
target_label: request_path
This rule doesn’t seems to work and I don’t know if it is a way to say for example if not equal too good1 or good2 change the path /dummy.
Thank you all for your help.