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.

Temperature alert on a node

Hello,

I'm trying to get an alert for temperature notifications to work. I have the thresholds set in Orion, as well as configured the alert to send an email when it is greater than or equal to 80 degrees.

I've set the trigger conditions to be similar to 

https://thwack.solarwinds.com/product-forums/the-orion-platform/f/alert-lab/6368/create-temperature-alert-for-switch-stack

However, it does not trigger the alert and send the email. I'm not sure what I need to add to this to get it to work. The end goal is to have it send an SMS to multiple users.

Parents
  • The raw data in the table is probably stored in Celsius, but is displayed as Fahrenheit.  You may need to do you own math here.  If you click on the little down arrow here:

    And select show SWQL, what do you get?

  • Thank you for the quick response. the SWQL is below:

    SELECT E0.[Uri], E0.[DisplayName]
    FROM Orion.HardwareHealth.HardwareItem AS E0
    WHERE ( ( ( ( E0.[HardwareCategoryStatus].[Node].[Uri] = 'swis://STROHS./Orion/Orion.Nodes/NodeID=2670' ) ) ) AND ( ( E0.[Value] >= '80' ) AND ( E0.[HardwareCategoryID] = '4' ) ) )

Reply
  • Thank you for the quick response. the SWQL is below:

    SELECT E0.[Uri], E0.[DisplayName]
    FROM Orion.HardwareHealth.HardwareItem AS E0
    WHERE ( ( ( ( E0.[HardwareCategoryStatus].[Node].[Uri] = 'swis://STROHS./Orion/Orion.Nodes/NodeID=2670' ) ) ) AND ( ( E0.[Value] >= '80' ) AND ( E0.[HardwareCategoryID] = '4' ) ) )

Children