This could be a temporary spike in CPU consumption. Please check the CPU usage trend from the Monitoring section. Inspect ...

  1. This could be a temporary spike in CPU consumption. Please check the CPU usage trend from the Monitoring section.
  2. Inspect the top processes consuming the highest CPU usage on the server.
    1. You may use the Task Manager or execute the following PowerShell Command: get-process|Sort-Object -Descending CPU | Select-Object -First 10
    2. If there are unexpected processes consuming high CPU usage, stop the processes using the following PowerShell command:stop-process -ProcessName [name of the process]
  3. If the processes seen in the above list are the intended processes running on the server and the CPU consumption is continuously near the threshold please consider re-evaluating the deployment requirements of this server.
  4. As a fail-safe option you may consider restarting the server.