I guess this little code snippet from the Adminstrator app might give you a
hint which uses the SystemMemory() to returns total, max, free, used.

<cfset memoryInfo = SystemMemory() />

<cfoutput>

<table>

      <tr bgcolor="##dedede">

<td colspan="2"><h5>JVM Memory Information</h5></td>

      </tr>

      <tr>

<td bgcolor="##f0f0f0" style="width:220px;">Used</td>

<td bgcolor="##ffffff">#Round(memoryInfo.used / 1048576)# MB</td>

      </tr>

      <tr>

<td bgcolor="##f0f0f0">Free</td>

<td bgcolor="##ffffff">#Round(memoryInfo.free / 1048576)# MB</td>

      </tr>

      <tr>

<td bgcolor="##f0f0f0">Total</td>

<td bgcolor="##ffffff">#Round(memoryInfo.total / 1048576)# MB</td>

      </tr>

      <tr>

<td bgcolor="##f0f0f0">Max</td>

<td bgcolor="##ffffff">#Round(memoryInfo.max / 1048576)# MB</td>

      </tr>

    </table>

</cfoutput>


/Mats/


On Sat, Mar 22, 2014 at 7:22 AM, Alan Holden <[email protected]> wrote:

>  Thanks Mats, I suppose there's some settings file I need to find to
> confirm that happened...
> Al
>
>
> On 3/21/2014 10:35 PM, Mats Stromberg wrote:
>
> If I remember correctly it has changed the value for your current
> project...  It simply does not pick this changed value back to the Desktop
> console.  Is a bit annoying but your project should have the new value.
>
>  /Mats/
>
>
> On Sat, Mar 22, 2014 at 5:16 AM, Alan Holden <[email protected]> wrote:
>
>> 10    Change "JVM Memory" setting from 64M to something else, like 128M.
>> 20    See alert which says you must restart application for change to
>> take effect.
>> 30    Close and restart desktop application.
>> 40    JVM Memory setting has reverted back to 64M again.
>> 50    Goto 10
>>
>> How does one break out of this loop, to actually adjust this setting?
>> OpenBD: Version=3.0; Build=2013-03-04 04:03:30 GMT
>>
>> Thanks, Al
>>
>> --
>> --
>> online documentation: http://openbd.org/manual/
>> http://groups.google.com/group/openbd?hl=en
>>
>> --- You received this message because you are subscribed to the Google
>> Groups "Open BlueDragon" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
>  --
>  *Mats Strömberg*
> *NETWORK 23*
>  *Oracle Tablespace Report (Open Source)*
> Project Homepage: www.project-otr.org
> Source Code: Google 
> Code<http://code.google.com/p/oracle-tablespace-report/source/checkout>
> Still paying to use CFML? Keep your money and switch to 
> OpenBD<http://www.openbluedragon.org>
>   --
> --
> online documentation: http://openbd.org/manual/
> http://groups.google.com/group/openbd?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Open BlueDragon" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>
>
>  --
> --
> online documentation: http://openbd.org/manual/
> http://groups.google.com/group/openbd?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Open BlueDragon" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*Mats Strömberg*
*NETWORK 23*
*Oracle Tablespace Report (Open Source)*
Project Homepage: www.project-otr.org
Source Code: Google
Code<http://code.google.com/p/oracle-tablespace-report/source/checkout>
Still paying to use CFML? Keep your money and switch to
OpenBD<http://www.openbluedragon.org>

-- 
-- 
online documentation: http://openbd.org/manual/
 http://groups.google.com/group/openbd?hl=en

--- 
You received this message because you are subscribed to the Google Groups "Open 
BlueDragon" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to