#set( $pmemfree = $math.mul($math.div($freeMem,$totalMem),100) ) #set( $pmemused = $math.sub(100,$pmemfree) )

The application server is active on node $!nodeName.

Server Health

Up since$!date.format($initTime) (up $!upTime)
First / last hit$!date.format($firstHit) / $!date.format($lastHit)
Requests Handled$!number.format('#,##0',$!totalRequests) total, $!number.format('#,##0',$!activeSessions.size()) active, $!number.format('#,##0',$!maxActive) max, $!number.format('#,##0',$!errorCount) error
Total Processing Time$!totalProcTime
Min/Average/Max Processing Time$!minProcTime/$!averageProcTime/$!maxProcTime (std. dev: $!stdDevProcTime)
Max Heap Size$!number.format('#,##0',$math.div($maxMem,1024)) KB
Memory Usage$!number.format('#,##0',$math.div($freeMem,1024)) / $!number.format('#,##0',$math.div($totalMem,1024)) ($number.format('0.00',$pmemfree)%) KB free

Active Sessions

#foreach( $msess in $activeSessions ) #end
timeidapplication
$!date.format($msess.getLastHitTime()) $msess.getSessionId() #if($msess.getApplication())$msess.getApplication().getDescription()#end:$msess.getUrlBase()

Application Summary

#foreach( $app in $applications ) #set( $appstats = $app.getStats() ) #if( $appstats.getTotalOperationCount() > 0 ) #end #end
descriptiontotactmaxerrminavgmaxstdmode
$app.getDescription() $appstats.getTotalOperationCount() $appstats.getActiveOperationCount() $appstats.getMaximumActiveCount() $appstats.getErrorCount() $!number.format('0.000',$math.div($appstats.getMinimumElapsedTime(),1000)) $!number.format('0.000',$math.div($appstats.getAverageElapsedTime(),1000)) $!number.format('0.000',$math.div($appstats.getMaximumElapsedTime(),1000)) $!number.format('0.000',$math.div($appstats.getStandardDeviationOfElapsedTime(),1000)) #if($app.isInMaintenanceMode())maintenance#elseactive#end