Log Memory Usage Details

Cobra provides an option to enable logging of memory usage details in the ServerDebugLog.xml log file.

To configure the logging of memory details, complete the following steps:

  1. Navigate to the Server subfolder of the Cobra installation folder.
  2. Locate the ServerService.exe.config file and open it using a text editor (such as Notepad).
  3. To enable memory usage logging, add the LogMemoryUsage option to the file. If the option is already present, make sure to set the value to 1.
    Before

    <appSettings>

    <add key="ConcurrentProcesses" value="8" />

    <add key="PerformDomainAuthentication" value="

    <add key="Roles" value="" />

    </appSettings>

    After

    <appSettings>

    <add key="ConcurrentProcesses" value="8" />

    <add key="PerformDomainAuthentication" value="

    <add key="Roles" value="" />

    <add key ="LogMemoryUsage" value="1"/>

    </appSettings>

  4. To disable memory usage logging, set the LogMemoryUsage option to 0, or remove the changes above.
    Before

    <add key ="LogMemoryUsage" value="1"/>

    After

    <add key ="LogMemoryUsage" value="0"/>