So I have built out tabular pollers; but for some of the 3750 stacks the 2nd and 3rd switches are reporting these Power Supply's Down.
I can not use that for an Alert due to bad values. I have even re polled to update the data, and it still shows bad. Switch says everything is good.
As it is now, I am watching my inbox fill up with these alerts, seems there may be one sent for each bad value shown. (Good thing it's just my inbox)
From Orion Website Table
Power Supply Status
PS_Status - Label | PS_Status | PS_State |
---|---|---|
1058 | Sw1, PS1 Normal, RPS NotExist | 1 |
1074 | Sw1, PS2 Normal, RPS NotExist | 1 |
2058 | Sw2, PS1 Faulty, RPS NotExist | 6 |
2073 | Sw2, PS2 Faulty, RPS NotExist | 6 |
3058 | Sw3, PS2 Faulty, RPS NotExist | 6 |
3067 | Sw3, PS1 Faulty, RPS NotExist | 6 |
From my Cisco Switch :
XXXXXXXXXX#sh env all
FAN 1 is OK
FAN 2 is OK
FAN PS-1 is OK
FAN PS-2 is OK
TEMPERATURE is OK
Temperature Value: 25 Degree Celsius
Temperature State: GREEN
Yellow Threshold : 46 Degree Celsius
Red Threshold : 60 Degree Celsius
SW PID Serial# Status Sys Pwr PoE Pwr Watts
-- ------------------ ---------- --------------- ------- ------- -----
1A C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
1B C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
2A C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
2B C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
3A C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
3B C3KX-PWR-1100WAC xxxxxxxxxxx OK Good Good 1100/0
SW Status RPS Name RPS Serial# RPS Port#
-- ------------- ---------------- ----------- ---------
1 Not Present <>
2 Not Present <>
3 Not Present <>
MY ALERT is a follows; (Ignore the Nodes.Maintenance part; as that is just suppression based on a date/time custom property input)
WHERE
(
(
(Nodes.Region <> 'Emergency Gear Online') AND
(CustomPollers.UniqueName = 'PS_State') AND
(CustomPollerStatus.Status <> '1')
) AND
(
(
(Nodes.Maintenance_Start_Time > getdate()) OR
(Nodes.Maintenance_End_Time < getdate())
)
OR
(
(Nodes.Maintenance_Start_Time IS NULL) AND
(Nodes.Maintenance_End_Time IS NULL)
)
)
)
The OID tables that I am using is
1.3.6.1.4.1.9.9.13.1.5.1.3 = State (Numeric Value)
1.3.6.1.4.1.9.9.13.1.5.1.2 = Status (Descriptive Text Value)
Thanks!