Is there any way I can monitor the percent of free physical memory? Would be most helpful for applying to templates. Thank you.
nxagent is not support this feature, please use external(shell) scripts
Hello!
There is one way to do this, however it's not universal (i.e. you will not be able to use this in generic templates). You can define DCI which collect free physical memory in bytes, and than convert it to percents using transformation script - however, you will need to hardcode total amount of physical memory on target machine into this script. For example, if you have 1GB of memory on your server, you can write the following transformation script for parameter System.Memory.Physical.Free:
($1 / 1073741824) * 100
where $1 represents current DCI value (which is free physical memory in bytes), 1073741824 is a total amount of physical memory in bytes.
Best regards,
Victor
Thanks. I'll use that workaround. Hope to see this added in a future release.d
is this feature available in the latest release NetXMS 0.2.19 ?
if present ?can you list the steps to configure ?
thank you .
i figured it out . i was little confused about the arguments .