Event Rule filters using "less than", "greater than", "less than or is", or "greater than or is" make an incorrect comparison when the value is numericDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms Event Rule filters using "less than", "greater than", "less than or is", or "greater than or is" make an incorrect comparison when the value is numeric. Steps to Reproduce: ================= 1. Create a new event rule 2. Check the "Ignore events that match this filter" checkbox 3. Set the filter to: some_value is greater than or is 2000 4. Set the event rule to active and save 5. Create a number of events to test. Set the Additional information to {"some_value":"100"} (this value will need to be updated in each additional event 150, 200, 201, 300, 1000, 2000, 2001, 50) 6. Wait for event management to process the events. The rule ignored the events with the following values: 201, 300, 2000, 2001, 50, but only two of those events should have been ignored. Release All Cause The the event filters for Additional Info performs a comparison using a string value only. It does not work with numeric value. If you're using numeric value it will not perform the correct comparison. Work Around 1.The work around is to use the Event Management, Advanced Scripts 2.The "EvtMgmtCustom_PostTransformHandler" script include could be modified to perform the evaluation. 3. Below is an example script to ignore events with the "num_value" < 200 ---start (function postTransformHandler(event, origEventSysId){ gs.log('PostTransformHandler custom script is active'); // Make any changes to the alert which will be created out of this Event // Note that the Event itself is immutable, and will not be changed in the database // event.setValue('source', 'New Source'); var additonal_info = event.getValue("additional_info"); var jsonInfo = JSON.parse(additional_info); var number = jsonInfo.num_vaule; var my_field = jsonInfo.my_field; gs.log("Test " + jsonInfo.num_value + " " + jsonInfo +" " + my_field); if (my_field === 'test' && number <200) return false; else return true; ----end Results