Bienvenido a la comunidad de Pandora FMS › Forums › Community support › Advanced troubleshooting › “Max and min” filter of Alert templates does not function properly
-
“Max and min” filter of Alert templates does not function properly
Posted by bmcclure on octubre 20, 2009 at 03:00This is regarding the latest 3.0 release on the FTP server in .tar.gz format. I had this same issue with the previous version, and it still exists after upgrading today.
I’m using, for instance, the memfree module to report the free memory on my servers being monitored. It is correctly returning an integer in KB.
I have two alert templates defined for this–Low Memory when the available memory is between 64 and 128 MB, and Very Low Memory when the available memory is below 64 MB.
The Very Low Memory alert presumably works, as it has correctly never fired yet. The Low Memory alert gets tripped every time it is checked, however.
Free memory: 1785488.00 KB
The alert template has these values set for the ‘Max and min’ type:
Min: 65536.00
Max: 131072.00The available memory is not within those limits, but the alert is still tripped.
If using only “Min” it works fine… I can set 65536.00 and it does not trip until it actually reaches that low.
Any idea why this is happening? Is it just a bug?
Sancho replied 15 years, 1 month ago 2 Members · 5 Replies -
5 Replies
-
::
Code for this piece of logic is pretty simple and seems to be ok, except for the “matches_value” logic that could be inverted (the checkbox to match the value).
if ($alert->{‘type’} eq “max_min”) {
            if ($alert->{‘matches_value’} == 1) {
                return $status if ($data {‘min_value’} &&
                         $data >= $alert->{‘max_value’});
            } else {
                return $status if ($data >= $alert->{‘min_value’} &&
                      x         $data {‘max_value’});
            }
        }Can you send us a screenshot of alert template definition ?, this could help us to identify the problem with the inverted logic of the match checkbox.
Thx for reporting.
-
-
-
-