Quite simply:
Where are the data tables that contains the detailed, hourly and daily statistics for my custom WMI collection?
All I have managed to find, so far, is the current (last) statistic value from a View , but no historical data.
This example retrieves all the memory stats for our GPUs:
SELECT n.SysName, acs.NodeID , acs.ApplicationID ,acs.ApplicationName ,acs.ApplicationAvailability
,acs.ComponentName ,acs.ComponentAvailability ,acs.ComponentStatisticData
,acs.ErrorMessage ,acs.LastTimeUp ,acs.TimeStamp
FROM [SolarWinds].[dbo].[APM_CurrentStatistics] acs, SolarWinds.dbo.Nodes n
WHERE ComponentName LIKE 'Nvidia memory available (MB)'
AND n.NodeID = acs.NodeID
Can anyone point me in the right direction please?
Thanks.