Hi, I have the below trigger expression which works great. However, if i want to add one more condition which is when {#POVALUE} contains the word "chrome" (#POVALUE could be chrome, chrome.1, chrome.2...etc,) how can I do that?
min(/TemplateA/op.depend.item[{#POVALUE},ws],60s)> 15
min(/TemplateA/op.depend.item[{#POVALUE},ws],60s)> 15 and {#POVALUE} = "chrome" ( this works but it has to match the exact word "chrome" )
i tried
1. {#POVALUE} like "chrome"
2. {#POVALUE} ~ '.*chrome.*'
..........etc
all gave me the error similar to the below
Invalid parameter "/1/expression": incorrect expression starting from "~ '.*chrome.*'
Please help!
min(/TemplateA/op.depend.item[{#POVALUE},ws],60s)> 15
min(/TemplateA/op.depend.item[{#POVALUE},ws],60s)> 15 and {#POVALUE} = "chrome" ( this works but it has to match the exact word "chrome" )
i tried
1. {#POVALUE} like "chrome"
2. {#POVALUE} ~ '.*chrome.*'
..........etc
all gave me the error similar to the below
Invalid parameter "/1/expression": incorrect expression starting from "~ '.*chrome.*'
Please help!
Comment