memory monitoring problem

Hi Guys!

Are using and monitoring 123 tower devices the dude(ver 3.6) , but i like monitoring the memory usage the mt device , all time down to add this service. All other service working fine. Snmp v2c version the protocol .

Memory function:

mem_size() > 0
if(mem_size() > 0, “”, “down”)
%

Using the Memory usage < 80% function ,accept the service but not graph.

if(mem_usage()>0, 1, -1)
if(mem_usage()<80, “”, “Memory usage > 79%”)
mem_usage()
%

Thank you.

Regards
Krisztian

Sometimes the available line will cause a probe to not graph. Try with just, mem_size() on the available line or try the memory oid directly in the available line.

Also just FYI the -1 in your if statement does resolve correctly. if(mem_usage()>0, 1, -1) “-1” does not return false to the above layer.
So you could try this in your available line as well. if(mem_usage()>0, 1, 0).