Hi!
In that case filtering script could be very simple - you just need to filter out all events which does not contain string ALARMA in text message. Assuming that you have extracted message into event parameter number 2, you need the following filtering script:
or, using regular expressions
Best regards,
Victor
In that case filtering script could be very simple - you just need to filter out all events which does not contain string ALARMA in text message. Assuming that you have extracted message into event parameter number 2, you need the following filtering script:
Code Select
return $2 like "*ALARMA*";
or, using regular expressions
Code Select
return $2 match ".*ALARMA.*";
Best regards,
Victor
Please try to replace src/server/core/node.cpp with attached one and recompile server. If this will not help, please send me a core file generated after crash.