This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Alert based on individual CPU Core

Hello,

Is it possible to create alerts based on the utilization of individual CPU cores?  For example, on a server that has 4 cores I would like to alert someone if any one of the cores goes about 80% utilization.  The following conditions would satisfy the alert trigger:

CPU1

Core1 %util: 5%

Core2 %util: 10%

Core3 %util: 11%

Core4 %util: 85%

Thanks in advance

Parents
  • I don't know, I'm getting hundreds of hits. Here's the full query:

    select nodes.NodeID, nodes.Caption, CPUMultiLoad.TimeStampUTC, CPUMultiLoad.AvgLoad

    from Nodes

    join CPUMultiLoad on Nodes.NodeID = CPUMultiLoad.NodeID

    where DATEDIFF(mi, CPUMultiLoad.TimeStampUTC, SYSUTCDATETIME()) < 5

    and CPUMultiLoad.AvgLoad > 85

    And here are some results

    pastedImage_0.png

Reply
  • I don't know, I'm getting hundreds of hits. Here's the full query:

    select nodes.NodeID, nodes.Caption, CPUMultiLoad.TimeStampUTC, CPUMultiLoad.AvgLoad

    from Nodes

    join CPUMultiLoad on Nodes.NodeID = CPUMultiLoad.NodeID

    where DATEDIFF(mi, CPUMultiLoad.TimeStampUTC, SYSUTCDATETIME()) < 5

    and CPUMultiLoad.AvgLoad > 85

    And here are some results

    pastedImage_0.png

Children