UnDP poller to display the free partition space (first partition only).
I needed this poller to determine the amount of space available on a large number of deployed devices prior to an IOS upgrade. The poller was deployed only for a few hours, and the following database query run to extract the information before the poller was removed.
SELECT
Nodes.Caption AS NodeName, CustomNodePollerStatus_CustomPollerStatus.Status AS ciscoFlashPartitionFreeSpace
FROM
((Nodes INNER JOIN CustomPollerAssignment CustomNodePollerAssignment_CustomPollerAssignment ON (Nodes.NodeID = CustomNodePollerAssignment_CustomPollerAssignment.NodeID)) INNER JOIN CustomPollers CustomNodePollers_CustomPollers ON (CustomNodePollerAssignment_CustomPollerAssignment.CustomPollerID = CustomNodePollers_CustomPollers.CustomPollerID)) INNER JOIN CustomPollerStatus CustomNodePollerStatus_CustomPollerStatus ON (CustomNodePollerAssignment_CustomPollerAssignment.CustomPollerAssignmentID = CustomNodePollerStatus_CustomPollerStatus.CustomPollerAssignmentID)
WHERE
(
CustomPollerAssignment like 'ciscoFlashPartitionFreeSpace%'
)
AND
(
(CustomNodePollerAssignment_CustomPollerAssignment.InterfaceID = 0)