Page 1 of 1

free RAM memory

Posted: 10 Jun 2013 10:35
by Cenz
I would like to read the free memory and automatically kill tasks to increase free memory
thank you

Re: free RAM memory

Posted: 13 Jun 2013 16:24
by RyanB
Me too!

Re: free RAM memory

Posted: 20 Jun 2013 04:39
by pilusona
Me too :)

Re: free RAM memory

Posted: 21 Aug 2013 02:44
by evebrea
me too!

Re: free RAM memory

Posted: 22 Aug 2013 18:14
by Martin
You could read the file /proc/meminfo to get some memory stats (action Init Variable Text File: /proc/meminfo) and use a script to extract the relevant part until a built-in action becomes available.

Regards
Martin

Re: free RAM memory

Posted: 24 Aug 2013 17:01
by bobchernow
After issuing three command Martin suggests, this code will calculate the free ram.


mem=split(stdout, "kB");
memfree=getElement(mem, 1);
memcached=getElement(mem, 3);
memfree=substring(memfree, indexOf(memfree, ":")+1, length(memfree));
memcached=substring(memcached, indexOf(memcached, ":")+1, length(memcached));
global_totalfree="{(memfree+memcached)/1024,numberformat,0}";