Monitor memory usage

Hi,

Is there already a feature for monitoring memory usage on the EM-server ?

It could be nice to be able to set a warning if some tresholds are passed. I know there’s an automatic warning when it is running out of memory. What’s the treshold for this warning ?

Thanks

The threshold is 10% of physical RAM. It's not configurable.

Server v4 will send out automatic email notifications on low memory. Meanwhile, you can design a project that will monitor Server logs, identify low memory warnings and send out emails if any. Schedule this project to run every 1 hour or so.

Another approach, is to make a project with a PowerShell script to get all running processes, then filter only the Server process, check its memory consumption, and send out an email notification if it's above the desired threshold. This topic can be of help: powershell - Get-Process with total memory usage - Stack Overflow