The template os windows have an trigger for free memory that does not seem to work.
i have tried changeing it to
expecting that if the system have under 500mb free it would give me an alarm, but nothing happens. I also tried to force an alarm by changing it to
but that did not trigger an alarm.
If i go to latest data, i can see that memory is rapported into the sysetm just fine, so how do i make a larm that works? I can see the item is made as a unsigned value with B as the unit, so that made me thing that mabey it was bytes, and i made an alarm with
as that would be 500mb in bytes, but again no alarm.. (and yes the server is under 500mb in free memory)
/EDIT
Using
made it work!
Code:
{Template OS Windows:vm.memory.size[free].last(0)}<10
Code:
{Template OS Windows:vm.memory.size[free].last(0)}<500
Code:
{Template OS Windows:vm.memory.size[free].last(0)}<5000
If i go to latest data, i can see that memory is rapported into the sysetm just fine, so how do i make a larm that works? I can see the item is made as a unsigned value with B as the unit, so that made me thing that mabey it was bytes, and i made an alarm with
Code:
{Template OS Windows:vm.memory.size:vm.memory.size[free].last(0)}<500000000
/EDIT
Using
Code:
{Template OS Windows:vm.memory.size[free].last(0)}<500M