This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Alerting on Virual Memory

Hello we have a nalert setup for the virtual memory usage on our server. In the conditions it says:

VolumeType is equal to Virtual Memory
Volume Percent Used is equal to 80

Anyway that works ok but what we can't seam to work out is the variables needed to have a email sent that says:

Node X is using X% of Virtual Memory

Anyone any ideas?

Also do most people monitor the virtual or the physical memory usage?

 

Thanks


  • Here what I use:

     

    Alert: ${FullName} is ${SQL:Select Round ('${VolumePercentUsed}',0) from Volumes WHERE VolumeID='${VolumeID}'} Percent Utilized

    Volume Size        ${SQL:Select round((VolumeSize / 1024 / 1024 / 1024),1) from Volumes WHERE VolumeID='${VolumeID}'} GB
    Currently Used     ${SQL:Select round((VolumeSpaceUsed / 1024 / 1024 / 1024),1) from Volumes WHERE VolumeID='${VolumeID}'} GB

    The IP address of this Node is ${Node.IP_Address}

    To view details of this volume, goto:

    http://Your_Server/NetPerfMon/View.asp?View=VolumeDetails&NetObject=V:${VolumeID}

    This alert was triggered on ${DateTime}

    This has been sent by an automated system, DO NOT REPLY.
    Generated By: ${AlertName}

    JB

    PS - This works for disk space percentages too.