[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: |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
||||
Issue Links: |
|
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: Kind regards,
|