In order to provide situational awareness, I've created dummy nodes for each of our operating locations where I use scripts to update status if there are weather problems in the area, power outages that forced a switch to generator power, scheduled facility maintenance, etc. I use SQL to update the 'dbo.Nodes.Status' to one of the following values based on criticality of the situation:
| Value | Icon Color | ShortDescription from dbo.StatusInfo |
|---|
| 1 | Green | Up |
| 3 | Yellow | Warning |
| 2 | Red | Down |
| 14 | Dark Red | Critical |
I then update the 'dbo.Nodes.StatusDescription' with custom data provided based on the alert. These fields maintain the appropriate info, but when users hover over the node, it still shows the default 'Node is [XXX]' where [XXX] is the dbo.StatusInfo.ShortDescription field.
Does anyone know of an easy way to get the status description in the default node listings and hover over boxes to use the 'dbo.Nodes.StatusDescription' field instead of the 'dbo.statusInfo.ShortDescription' field?