[ZBX-19856] Regular expressions (preprocessing) escape sequence Created: 2021 Aug 25  Updated: 2021 Dec 22  Resolved: 2021 Sep 17

Status: Closed
Project: ZABBIX BUGS AND ISSUES
Component/s: Appliance (L), Server (S)
Affects Version/s: 5.4.3
Fix Version/s: None

Type: Incident report Priority: Trivial
Reporter: Igor Litvinov Assignee: Antons Sincovs
Resolution: Workaround proposed Votes: 0
Labels: regexps
Remaining Estimate: Not Specified
Time Spent: Not Specified
Original Estimate: Not Specified

Attachments: PNG File image-2021-08-25-11-02-41-829.png     PNG File image-2021-08-25-11-04-40-645.png     PNG File image-2021-08-25-11-06-33-451.png     PNG File image-2021-08-25-11-08-48-014.png     PNG File image-2021-09-08-11-25-00-611.png     PNG File image-2021-09-08-11-27-20-498.png     PNG File image-2021-09-08-11-52-32-186.png     PNG File image-2021-09-08-11-54-38-971.png    
Issue Links:
Duplicate

 Description   

Hello, everyone)

When I tried to use regular expressions in preprocessing form, I found that Zabbix could not find the second occurrence (second escape sequence) of the regular expression.

Example (file monitoring):

{
    "outcome" => "success",
    "result" => {
        "heap-memory-usage" => {
            "init" => 2147483648L,
            "used" => 50779204512L,
            "committed" => 75376689152L,
            "max" => 75376689152L
        },
        "non-heap-memory-usage" => {
            "init" => 2555904L,
            "used" => 390467544L,
            "committed" => 405086208L,
            "max" => -1L
        },
        "object-name" => "java.lang:type=Memory",
        "object-pending-finalization-count" => 0,
        "verbose" => true
    }
}

My regular expr is like:

committed.*\s(\S+)L

 

Previously, I checked the functionality of the regular expression on the site regex 101.com

https://regex101.com/delete/hd9sQqB2FfUmM2WpKtd1KXAW 

 

After that I made this one:

 

and it's OK (nice), but when I'm trying to make something like this (using \2 for finding second occurrence) :

 

Zabbix app tells me that it fails on it step...

 

On Zabbix off  website page: https://www.zabbix.com/documentation/current/manual/config/items/preprocessing 

 

Where am I wrong? I ask for your help.



 Comments   
Comment by Igor Litvinov [ 2021 Aug 26 ]

@Antons Sincovs, do You have any idea?

Comment by Antons Sincovs [ 2021 Sep 08 ]

Hello Igor!

Zabbix regular expression engine does not use "global" or "multiline", so when testing regular expressions in online tools like "regex101.com" please, do make sure to disable those options in order to match the same result as in Zabbix:

As to the "\n" parameter - it stands for the capture group number and not the occurrence number. Here is an example of how this corresponds:

Thus with using regex preprocessing in one step - it is not possible to get other than the first matching occurrence. You need to either extract the necessary fragment by using additional preprocessing steps (prior to matching the needed value with regex) or consider using JavaScript as a preprocessing step. It could be something like:

var str = value;
const regex = /committed.*\s(\S+)L/ig;
return(str.match(regex)[1]);

You can use "Code Generator" tool on the "regex101.com" resource to assist you in generating JavaScript code:

The javascript code example I mentioned above is incomplete, but can provide you a hint for further actions. You can adjust the "regex" in the code or simply add an additional preprocessing step and extract the value in necessary form out of the javascript output.

Kind regards,
Antons Sincovs

 

Generated at Fri Apr 04 14:58:10 EEST 2025 using Jira 9.12.4#9120004-sha1:625303b708afdb767e17cb2838290c41888e9ff0.