Can some one help me whit a SWQL query for Custom table
I need the status icon for the Custom poller to show up
I have make a SWQL
SELECT cp.UniqueName, cpsn.Status, TOSTRING(HOUR(TOLOCAL(DateTime))) + ':' + TOSTRING(MINUTE(DateTime)) AS [Last Poll Time]
FROM Orion.NPM.CustomPollers cp
JOIN Orion.NPM.CustomPollerStatusOnNodeScalar cpsn
ON cp.CustomPollerID = cpsn.CustomPollerID
WHERE NodeID = ${NodeID} AND (cp.UniqueName <> 'BatteryDays') AND (cp.UniqueName <> 'batteryVoltageValue') AND (cp.UniqueName <> 'loadCurrentValue') AND (cp.UniqueName <> 'batteryCurrentsValue') AND (cp.UniqueName <> 'rectifiersCurrentValue') AND (cp.UniqueName <> 'batteryCurrentValue') AND (cp.UniqueName <> 'BatteryHours') AND (cp.UniqueName <> 'batteryTemperatures') AND (cp.UniqueName <> 'batteryTime') AND (cp.UniqueName <> 'BatteryVoltage') AND (cp.UniqueName <> 'EltekcontrolUnitSwPartNr') AND (cp.UniqueName <> 'EltekcontrolUnitSwVersion') AND (cp.UniqueName <> 'LoadCurrentsValue') AND (cp.UniqueName <> 'RectifiersCurrent') AND (cp.UniqueName <> 'BatteryHours48V') AND (cp.UniqueName <> 'BatteryHours110V') AND (cp.UniqueName <> 'DoorOpen') AND (cp.UniqueName <> 'DirtyFilter') AND (cp.UniqueName <> 'MCBsF17F20') AND (cp.UniqueName <> 'MissingFilter') AND (cp.UniqueName <> 'SmokeDetector')
GROUP BY cp.UniqueName, cpsn.Status, DateTime
And getting this result

But it had been nice to get the Status LED icon for the Custom poller to show up, Any suggestions on how to fix this?