How is it possible to add the polled time for a custom poller to this query below? I am unable to use the inbuilt SolarWinds widget as it displays unwanted information (chart values which are presented on a separate widget).
SELECT
a.CustomPollerName AS Name,
a.CurrentValue AS Value
FROM Orion.NPM.CustomPollerAssignment a
WHERE NodeID = '${NodeID}'
AND NOT a.CustomPollerName like 'Battery_Test_Minutes'
AND NOT a.CustomPollerName like 'External_Symmetry'
AND NOT a.CustomPollerName like 'Internal_Input'
AND NOT a.CustomPollerName like 'Internal_Symmetry'
ORDER BY CustomPollerName ASC
The image below shows the in built SolarWinds Widget, circled in Red is why I require this custom query to filter out the unwanted data within the table and in blue is what I want to add to my custom query. I have tried multiple ways but unfortunately have not been able to achieve it so far:

My custom query currently looks like this, hoping that it is just a reference I need to add within the query to add the additional column for time:

Thanks