I need help with preprocessing an ITEM in zabbix.
The ITEM returns the following line:
QMNAME(rsdcapjboss01) STATUS(Running)
and in Preprocessing I want to use a regular expression to extract only the word that is inside the second parenthesis "Running"
I tried different ways but it only accepts the following regex "(STATUS\([^\)]*\))" which should get what I need but extracts "STATUS(Running)" instead of "Running".
I try several ways but it shows me the error "I am receiving this invalid parameter ""/1/params/1": invalid regular expression."


Using "STATUS\(([^)]+)\)" shows the error

The ITEM returns the following line:
QMNAME(rsdcapjboss01) STATUS(Running)
and in Preprocessing I want to use a regular expression to extract only the word that is inside the second parenthesis "Running"
I tried different ways but it only accepts the following regex "(STATUS\([^\)]*\))" which should get what I need but extracts "STATUS(Running)" instead of "Running".
I try several ways but it shows me the error "I am receiving this invalid parameter ""/1/params/1": invalid regular expression."
Using "STATUS\(([^)]+)\)" shows the error
Comment