Windows 2008 R2 CPU Scheduling

I have a Windows 2008 R2 Vmware VM running one application published by Citrix. I noticed the CPU usage spiked to 100% while doing an EDI export to MS Excel 2010. I increased the CPU cores by one totaling 1 Socket 6 cores. Now core 0 is higher than the other
5 consistently. After contacting vmware I was told to ask Microsoft about CPU  scheduling. Not sure where to go from here to balance out the processes amongst all the cores.The only difference between this server and the rest is in Performance Options
this server is set to Let Windows choose what's best for my computer instead of Adjust for best performance.

You can also tune the priority of CPU shares through Windows System Resource Manager (WSRM), an optional server feature used for managing processor and  memory usage. WSRM's new built-in policy Weighted_Remote_Sessions can be used to assign users and
groups into three priorities: Premium, Standard, and     Basic. As should be obvious, users in higher priorities will be given greater CPU shares than those in lower priorities.
Regards
Milos
Reference: Windows IT Pro, Q&A

Similar Messages

  • Windows 2008 R2 server Scheduled Task not working

    I have a batch file that writes to a file, when I click it manually it works. However when I have it set in a scheduled task it will create the file but it will not write to the file.
    How can I fix this?

    Hi,
    1.   
    Please try to make sure the
    Task Scheduler: Service is running.
    For details: run 'services.msc', Scroll down to the 'Task Scheduler' service, Check the 'Startup Type' column, The 'Startup Type' should be set to "Automatic",
    Check the 'Status' column.
    If the service is started, it will list 'Started' in the 'Status' column.
    2.   
    Please try to make sure Group Policy preventing the user to run the task.
    3.   
    Please try to make sure UAC has been disabled.
    4.   
    Please try to enabled the
    policy Inclusion list for moderate risk file types, and fill ‘.bat’ in the blank.
    For details:
    User Configuration -> Administrator Templates -> Windows Components -> Attachment Manager
    In addition, please try to refer
    this to troubleshoot.
    If the issue persist, please try to collect more information for further analyze:
    Event log
    ==============
    1. Click "Start", click “Run”, input "eventvwr" and press Enter.
    2. Expand the "Windows Logs" node on the left pane, right-click on "System" and click "Save All Events As"; in the pop-up window, click to choose the Desktop icon
    on the left frame, input "sys" in the "File name" blank, and then click save.
    3. Expand the “Applications and Services Logs”. Click the arrow next to Microsoft, and then Windows, and then TaskScheduler. Click Operational. Click
    "Save All Events As"; in the pop-up window, click to choose the Desktop icon on the left frame, input "policy" in the "File name" blank, and then click save.
    4. Locate the two saved log files on the Desktop and send them to us.
    GPMC.log
    ==================
    a.   
    On domain controller, click Start -> Run, type GPMC.MSC, it will load the GPMC console.
    b.   
    Right click on "Group Policy Result" and choose wizard to generate a report for the problematic computer and user account (please place appropriately). (Choose computer and select the proper user in the wizard)
    c.   
    Right click  the resulting group policy result and click the "Save Report…" => save report to save the report to a HTML file and send it to me.
    please contact me with my account:
    [email protected] to get a workspace to upload the information.
    Hope this helps!

  • Windows 2008 Server SFTP Scheduled Tasks fails to execute sftp commands

    I have a scheduled task that pulls in Human Resources data using sftp public / private key combination.  It was associated with user who has recently left the company and their account has been disabled. Everything I've read
    so far leads me to believe that I need to establish the sftp connection and create a registry entry for another user...   I don't want this application to be dependent on any particular user.   I've stored the key set on a share that is
    open to any system administrator on the server and created a batch job similar to:
    Del oldFile.txt
    "psftp.exe <user>@<server> -i <PrivateKeyLocation> -b <FtpComands>". 
    The old file gets deleted fine via scheduled task or manual, but the new file only gets pulled when running it directly from my account. 
    Any suggestions would be greatly appreciated.

    The list of ftp commands that you are passing in to psftp.exe may need user specific resources (for example, a mapped drive). But it's difficult to say though without looking at what the psftp commands do. If the available commands for psftp.exe
    are not flexible enough, you might want to look at other solutions like Sysax FTP Automation.

  • Schedule Task - Windows 2008 R2 - User Session

    I am migratiing the schedule task from windows 2003 to windows 2008 and find some of behaviour change on handling user session by Task Scheduler.
    I have a simple batch to call "net use" command to map a network drive for copying file to remote server. And I have scheduled 3 similar tasks and run as same user (e.g. testuser)
    In windows 2003 enviornment, the mapped network drive resource will not be accessed by another schedule task. In windows 2008 R2, howerver, the network drive mapped in one of schedule task can be reached by another task. Does anyone have
    idea on this behaviour change?
    Here are the testing script
    Test Script 1
    NET USE >> D:\TEST1.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST1.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Test Script 2
    NET USE >> D:\TEST2.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST1.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Test Script 3
    NET USE >> D:\TEST3.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST3.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Output in Windows 2003
    Test1.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test2.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test3.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Output in Windows 2008
    Test1.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test2.LOG
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:       
    \\127.0.0.1\Share          Microsoft Windows Network
    The command completed successfully.
    System error 85 has occurred.
    The local device name is already in use.
    The network connection could not be found.
    More help is available by typing NET HELPMSG 2250.
    Test3.LOG
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:       
    \\127.0.0.1\Share          Microsoft Windows Network
    The command completed successfully.
    System error 85 has occurred.
    The local device name is already in use.
    The network connection could not be found.
    More help is available by typing NET HELPMSG 2250.

    Sorry for confusing, I have udpated the script for this testing
    =====================================================
    Script for Schedule Task 1 - to map a network drive and issue a ping command to "sleep"
    Echo %date% %time% list drive on schedule task 1
    NET USE 
    Echo %date% %time% map drive on schedule task 1
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO
    ping 127.0.0.1 -n 100 > NUL
    Echo %date% %time% remove drive on schedule task 1
    NET USE Z: /DELETE
    Script for Schedule Task 2 - to list out any network drive are mapped.
    Echo %date% %time% list drive on schedule task 2
    NET USE 
    ========================================================================
    The schedule task 2 are triggered while the schedule task 1 are running, In the windows 2003, the schedule task 2 could not list out any mapped drive. In the windows 2008, however, the schedule task 2
    can list the network drive mapped by schedule task 1. The question is if there are any changes between windows 2003 and 2008, hope it can clarify.
    Ouput on windows 2003
    Schedule task1
    D:\>Echo Wed 02/06/2013 18:31:52.93 list drive on schedule task 1
    Wed 02/06/2013 18:31:52.93 list drive on schedule task 1
    D:\>NET USE
    New connections will not be remembered.
    There are no entries in the list.
    D:\>Echo Wed 02/06/2013 18:31:52.98 map drive on schedule task 1
    Wed 02/06/2013 18:31:52.98 map drive on schedule task 1
    D:\>NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO
    The command completed successfully.
    D:\>ping 127.0.0.1 -n 100 1>NUL
    D:\>Echo Wed 02/06/2013 18:33:32.07 remove drive on schedule task 1
    Wed 02/06/2013 18:33:32.07 remove drive on schedule task 1
    D:\>NET USE Z: /DELETE
    Z: was deleted successfully.
    Schedule Task 2
    d:\>Echo Wed 02/06/2013 18:32:22.54 list drive on schedule task 2
    Wed 02/06/2013 18:32:22.54 list drive on schedule task 2
    d:\>NET USE
    New connections will not be remembered.
    There are no entries in the list.
    Output on windows 2008
     Schedule task1
    C:\Windows\system32>Echo Wed 02/06/2013 18:17:52.13 list drive on schedule task 1
    Wed 02/06/2013 18:17:52.13 list drive on schedule task 1
    C:\Windows\system32>NET USE  
    New connections will not be remembered.
    There are no entries in the list.
    C:\Windows\system32>Echo Wed 02/06/2013 18:17:52.16 map drive on schedule task 1
    Wed 02/06/2013 18:17:52.16 map drive on schedule task 1
    C:\Windows\system32>NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO 
    The command completed successfully.
    C:\Windows\system32>ping 127.0.0.1 -n 100 
    1>NUL
    C:\Windows\system32>Echo Wed 02/06/2013 18:19:32.59 remove drive on schedule task 1
    Wed 02/06/2013 18:19:32.59 remove drive on schedule task 1
    C:\Windows\system32>NET USE Z: /DELETE
    Z: was deleted successfully.
    Schedule task2
    C:\Windows\system32>Echo Wed 02/06/2013 18:18:07.69 list drive on schedule task 2
    Wed 02/06/2013 18:18:07.69 list drive on schedule task 2
    C:\Windows\system32>NET USE  
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:        \\127.0.0.1\Share        
    Microsoft Windows Network
    The command completed successfully.

  • Oracle Database 11.2.0.1.0 CPU hit 100% on Windows 2008 R2 64 bit Hyper-V

    Oracle Environment Detail:
    Oracle Database Enterprise Edition :11.2.0.1.0 (NON RAC, No failsafe)
    O/S:     Windows 2008 R2 64 bit (6.1)
    Specifics: Virtual Server using Hyper-V
    Memory: 9 GB RAM
    Processor: E5540
    Specific about the issue:
    I have two database instance created on this server with ‘memory_target=3600M’ each.
    I am getting into an issue where I find NO activity on database except regular schedule job running using DBMS_SCHEDULER –
    •     Database FULL export DAILY schedule time 7 & 7:30 PM accordingly for both instance (takes about 15-20 mins each)
    •     Database FULL RMAN DAILY schedule time 9 & 10 PM accordingly for both instance (takes about 35-40 mins each)
    This was set up on Feb 25th 2011. Since then we have encounter CPU hit 100% TWICE in this system at around 8:30 PM (SAME TIME). Both database instance exports keep running and never finish. While RMAN schedule job has NO problem. Mostly everything runs every smoothly without any issue.
    Replicate the issue:
    I am unable to replicate this issue and do not know the cause of the issue.
    Work Around:
    Oracle services shutdown/Server reboot.
    Would anyone know about this issue? Have any information could help? This system will become production soon and want to make sure we have solution for this.
    Thanks in advance!

    I am finding that CPU hit 100% is very specific to Oracle 11.2.0.1.0 Export Utility (exp) used to take FULL database export. I understand Original Export is desupported from general use as of 11g but available for specific need.
    Have anyone faced this issue with 11.2.0.1.0 Export Utility (exp)? Please help.
    I have a need to use export utility which gives us migration options.
    Thanks!

  • Record the CPU Load in a log for Windows 2008 R2

    Use performance monitor and log it to a file.

    Hi,
    I am an Oracle DBA. I need to record the load of the CPU for windows 2008 R2. Load in the sense Total Memory, Available Memory, Cached and Free. All together into a log.
     Kindly suggest me on the same.
    Thank you.
    This topic first appeared in the Spiceworks Community

  • Task scheduler in windows 2008 R2 cluster.

    We have clustered server and there's two nodes - Active(A1)/Active(A2).
    Ordinary client can connect A1, but A1 is failed then connect A2 by windows 2008 R2 cluster.
    We have a task scheduler exe module created by .net framework in each node.
    When A1 server is operated, we wanna just A1 job scheduler active.
    And A2 server is operated, just only A2 job scheduler acitve.
    Can We contoller  this situation in exe module or Failover Cluster Manager?
    parky

    If you upgrade to Win2012 or higher you can.  Here's a blog on it:
    http://blogs.msdn.com/b/clustering/archive/2012/05/31/10312527.aspx
    Thanks!
    Elden

  • Total cpu utilization percentage diagnostic removed from Windows 2008 MP?

    SCOM 2012 SP1 environment running the Windows Server 2008 Operating System Management Pack, version 6.0.7026.0
    http://www.microsoft.com/en-us/download/details.aspx?id=9296
    We had a server that had high CPU utilization.  We were able to figure out what process was causing the high CPU using some remote commands, but I am used to seeing this in the health explorer state change events view.
    I looked into health explorer but there is no data.
    http://i.imgur.com/eArmCM2.jpg
    I then notice that in this MP, there are 2 CPU monitors
    http://i.imgur.com/I9eBN4G.jpg
    The first monitor shown is disabled by default, but it is this monitor that contains the diagnostic to list the top CPU consuming processes
    http://i.imgur.com/tLgq9at.jpg
    The CPU monitor that is enabled by default has no diagnostic tasks associated to it
    http://i.imgur.com/AKAKOP9.jpg
    While I have the ability to create my own diagnostic task, I would rather not, as it requires me to enter my own command or script.
    I liked the fact that the CPU monitor would list the top consuming processes, as this was useful troubleshooting information.
    Does anyone know why this diagnostic is not included in the new version of this monitor?  I cannot find any information in the release notes.
    Is there any reason I should think twice about disabling the default monitor, and setting an override to enable to “legacy” monitor that has the diagnostic task built in?

    I can confirm that the other OS versions have the single CPU monitor with diagnostics set to run by default. For Windows Server 2008 R2 I have created a sample management pack which enables this functionality which is available at:
    http://www.systemcentercentral.com/download/re-enable-processor-diagnostic-windows-2008-management-pack/.
    Cameron

  • Can we convert Scheduled tasks in Windows 2003 to Windows 2008 Automatically

    Can we convert Scheduled tasks in Windows 2003 to Windows 2008 Automatically. what is the simpler way to convert it

    ... so migration of scheduled tasks from windows 2003 to windows 2008 is not possible.
    sainath anal
    If that is true, then what is the following TechNet article discussing?
    http://technet.microsoft.com/en-us/library/dd363704(v=ws.10).aspx
    Excerpt:
    Task Scheduler Backward Compatible Module Status
    Applies To: Windows Server 2008 R2
    The backward compatibility module is used by Task Scheduler to register and run tasks that were created to run on Windows Server 2003, Windows XP, and Windows 2000.

  • Create script\schedules task to clear local app temp files every 1 hour (PS last modified 2 hrs) ? WINDOWS 2008 R2

    create script\schedules task to clear local app temp files every 1 hour (PS last modified > 2 hrs) ? WINDOWS 2008 R2
     can i have the steps to this...how to do?

    This forum is for scripting questions, not script requests.
    You can search the
    Repository for pre-written scripts, and you can also request scripts at the
    script request page.
    -- Bill Stewart [Bill_Stewart]

  • High Page Reads/Sec on Windows 2008 R2 64-bit running on VMware but very low Real Memory & Page file Usage.

    Hello All,
    Below is the server configuration,
    OS: Windows 2008 R2 Enterprise 64 Bit
    Version: 6.1.7601 Service Pack 1 Build 7601
    CPU: 4 (@ 2.93 GHz, 1 core)
    Memory: 12 GB
    Page file: 12 GB
    1. The actual utilization, be it a 15 minute sample, hourly, weekly etc, the utilization of real memory has never crossed 20% and the page file usage is at 0.1%. For some reason, the Pages/Sec>Limit% counter reports 100% continuously regardless of the
    sampling intervals. Upon further observation, the Page Reads/Sec value is somewhere between 150~450 and Page Input/Sec is somewhere between 800~8000. Does this indicate a performance bottleneck? (I've in the interim asked the Users, App. Owners to see if they
    notice any performance degradation and awaiting response). If this indicates a performance issue, please could someone help list down how to track this down further to which process/memory mapped file is causing it? and what I should go about performing to
    fix this problem please?
    p.s., initially the Security logs were full on this server and since page file is tied to Application, Security and System logs, this was freed up to see if this is causing the high page reads but this doesn't.
    2. If the above does not necessarily indicate a performance problem, please can someone reference few KB articles that confirms this? Also, in this case, will there be any adverse effects if attempting to fine tune a server which is already running fine?
    assuming App. Owners confirm there isn't any performance degradation.
    Thanks in advance.

    Hi,
    Based on the description, we can try to download Server Performance Advisor (SPA) to help further analyze the performance of the server. SPA can generate comprehensive diagnostic reports and charts and provides recommendations to help you quickly analyze
    issues and develop corrective actions.
    Regarding this tool, the following articles can be referred to for more information.
    Microsoft Server Performance Advisor
    https://msdn.microsoft.com/en-us/library/windows/hardware/dn481522.aspx
    Server Performance Advisor (SPA) 3.0
    http://blogs.technet.com/b/windowsserver/archive/2013/03/11/server-performance-advisor-spa-3-0.aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • ADConnector v9.1.1 and Windows 2008 R2 - Supported? (OIM 9.1.0.2)

    Below is my question around the OIM AD connector version 9.1.1 and its support with Windows Server 2008 R2.
    From the AD Connector Documentation I can see that Active Directory 2008 is a supported target system by the OIM connector v9.1.1. There is no mention of Windows 2008 R2 at all in this document: http://download.oracle.com/docs/cd/E11223_01/doc.910/e11197.pdf
    My question is: Is Active Directory on Windows Server 2008 R2 supported as a target system by v9.1.1 of the AD User Management Connector. If not what version of the AD User Management connector do we need to upgrade to (9.1.1.4 or 9.1.1.5)?
    I am crossing my fingers for the answer to be that v9.1.1 does support Windows Server 2008 R2 to save us the pain of an upgrade.
    Thanks..

    It depends on if you mean "officially supported" or "will work".
    On the officially supported line AD 2008 R2 is sometimes considered different enough to need a separate certification. Check your connector release notes and if that doesn't include AD 2008 R2 open a support case with Oracle to get the official ceritification schedule.
    With 99% likelyhood it will work fine but you may end up in a non supported state which may or may not be acceptable in your organization.
    Best regards
    /martin

  • 11gR2 RAC install on Windows 2008 R2

    I am installing three node rac on windows 2008 and I am successfully able to install Grid Infrastructure with ASM as soon I complete this install server1 disconnect me from remote console and I got blue screen error when I log in back and same error appears on server 3 after few minutes. I bounce all there machines and continue database creation part same problem appears again Need help to understand the problem.
    Do we need to set some kind of registery settings, or any parameter etc.
    Server Configurations.
    All three servers have same configurations.
    Server 1 ,2 ,3
    OS : windows 2008 R2 64 bit
    Processor: Intel(R) xeon(R) CPU E5540 @2.53GHZ (2 processors)
    Memory: 32G
    SAN storage :netapp san
    Error Message:
    Problem signature:
    Problem Event Name:     BlueScreen
    OS Version:     6.1.7600.2.0.0.274.10
    Locale ID:     18441
    Additional information about the problem:
    BCCode:     fffe
    BCP1:     0000000000000000
    BCP2:     0000000000000000
    BCP3:     0000000000000000
    BCP4:     0000000000000000
    OS Version:     6_1_7600
    Service Pack:     0_0
    Product:     274_3
    Files that help describe the problem:
    C:\Windows\Minidump\063010-13868-01.dmp
    C:\Users\svc-btmoraadmin\AppData\Local\Temp\WER-773546-0.sysdata.xml
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt

    In the first place a 'blue screen' has to be analyzed on the OS side, Oracle COULD be the reason, but who knows? More likely a hardware problem (RAM,disk storage). So you have to ask your system administrator and/or call Microsoft support. Or you try to find an answer in one of the many articles in the web, for example this:
    http://www.maximumpc.com/article/features/blue_screen_survival_guide
    Werner

  • OBIEE 11.1.1.6.0 installation on windows 2008 R2 64 bit failing

    I installed OBIEE 11.1.1.6.0 version on windows 2008 R2 64bit;installation has no issues all went well and sample app displayed fine.But, i see scheduler is not starting and also we deployed our code but reports failing with following oracle oci error
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: The specified module could not be found. [nQSError: 46029] Failed to load the DLL D:\OBI11G\Oracle_BI1\bifoundation\server\bin\nqsdbgatewayoci10g64.dll. Check if 'Oracle OCI 10G' database client is installed. (HY000)
    i also installed and verified by installing 11g client;PATH variable setting etc. no exact solution.i would like to see if any other also facing same issue with OBIEE 11.1.1.6 on windows 2008 R2 64 bit OS.
    Thanks

    Deva
    i didnt get what you mean by rpd client.,if you mean Admin tool, installation is OBIEE 'simple installation' type which includes Admin tool.
    coming to connectivity, no from physical layer you cannot view data as the packaged dll file (nqsdbgatewayoci10g64.dll ) is not registering in Windows 2008 64 bit,which i even tried manually.
    since above step is failing, i also installed a 11g db client(to divert oci connections) which is working fine for oracle connectivity and updated PATH environment variables but this issue is still in place.. as reports still pointing to Oracle_BI1/bifoundation/server/bin/ dll files
    please share your thoughts

  • CF 10 continues to crash on Windows 2008 R2 64 bit

    I have had CF 10 running on my VM for about a week now. The VM is Windows 2008 Enterprise, 64 bit. CF 10 is 64 bit.  The error that I keep getting is:
    Service Temporary Unavailable!
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Jakarta/ISAPI/isapi_redirector/1.2.32 ()
    To recover, I need to stop and restart all the CF services.
    Anyone else having this problem or has anyone else had to fix it?

    Of interest here are some CF10 metrics logging I took as a sample to compare.
    05/06/2012
    8:49 AM
    Information
    scheduler-1
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 378536 Request count: 201 Error count: 4 Bytes received: 780 Bytes sent: 6993022 Free memory: 45875240 Total memory: 175702016 Active Sessions: 0
    05/06/2012
    8:48 AM
    Information
    scheduler-2
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 378536 Request count: 201 Error count: 4 Bytes received: 780 Bytes sent: 6993022 Free memory: 47207152 Total memory: 175702016 Active Sessions: 0
    05/06/2012
    8:47 AM
    Information
    scheduler-0
    Max threads: 150 Current thread count: 4 Current thread busy: 1 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 52128072 Total memory: 175898624 Active Sessions: 0
    05/06/2012
    8:46 AM
    Information
    scheduler-1
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 59819016 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:45 AM
    Information
    scheduler-1
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 61154744 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:44 AM
    Information
    scheduler-1
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 62484720 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:43 AM
    Information
    scheduler-2
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 63821448 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:42 AM
    Information
    scheduler-2
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 65154032 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:41 AM
    Information
    scheduler-1
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 66487544 Total memory: 167116800 Active Sessions: 0
    05/06/2012
    8:40 AM
    Information
    scheduler-0
    Max threads: 150 Current thread count: 4 Current thread busy: 0 Max processing time: 333509 Request count: 200 Error count: 4 Bytes received: 780 Bytes sent: 5695004 Free memory: 67824496 Total memory: 167116800 Active Sessions: 0
    The online CF10 documentation omits CF10 metrics logging details so I am not sure what to make of the log detail differing. Reference:
    http://help.adobe.com/en_US/ColdFusion/10.0/Admin/WSc3ff6d0ea77859461172e0811cbf3638e6-7fe 0.html#WSc3ff6d0ea77859461172e0811cbf3638e6-7fda
    I don't think the logs have been any use so far. Still interested to know why CF10 is crashing for you. Something else comes to mind. Is it possible for you to run CF10 from CMD prompt for a time, ColdFusion10\cfusion\bin\cfstart.bat ? Perhaps there is an error and having the details displayed in CMD prompt will lead to solution.
    HTH again, Carl.

Maybe you are looking for