This custom function helps to get the available heap statistics during too many user uploads/downloads or during trigger execution. The real use of the function comes when the server responds slow. In order to get the available heap details need to use below two custom functions; Using these functions the availableheap will be compared against a threshold defined heap.
a.GetUsedHeapInMbb.GetMaximumHeapInMb
SeeHow to Create Custom Trigger Functionsfor details on installation.
Downloads
Source code and build instructions
How to alert via email on used heap threshold
Let me now show you how to implement that.
Before creating a custom trigger you need to havebuildinstalled in theserver where JSCAPE MFT Server is running where the custom functionsGetUsedHeapInMbandGetMaximumHeapInMbare available.
1. Create a trigger to get the statistics of available heap
Login into admin console of JSCAPE MFT Server > Triggers and ClickAddto create a Trigger
Give the trigger aNameand then select the Current Timeevent type from the drop-down list.

ClickNextto Step 2 where a condition can be set to execute the trigger.
Consider an example that the server is too slow in responding, one of the reason for the slowness is much heap usage. In order to identify on what time the server is slow and when the heap usage is too high, the below mentioned expression can be used where the server checks for the available heap against a threshold defined for ever 30 minutes in a day.
(Minute=0 OR Minute=30) AND (Subtract(GetMaximumHeapInMb(),GetUsedHeapInMb()) < 300)
The above expression indicates to send an email when the availableheap is less than 300 MB

Once the condition is set ClickNextto proceed
On Step 3 an action has to be added, in order to add an action clickAddbutton and select the action “Send Email” from drop down list and Click OK

On OK to add and input the required parameters.

Enter all necessary parameters for sending that email notification, including the hostname of your SMTP server, the port number, connection type, etc.In theBodytext box, enter the message you want to relay.
ClickOkto save the settings.
That’s it. Now you know how to use to send email on more heap usage.





