The purpose of this widget is to identify which polling engine discoveries are running from as well as identify which discoveries found new nodes vs changed nodes. This is highly dependent on naming your discoveries accordingly, and I didn't see a way to add a link to directly go to editing discoveries here, but it should at least help people get an at a glance for "what happened?"
SELECT TOP 20 e.Servername as "PollingEngine" , Frequency , LastRun , Status , NotImportedNodescount as NewNodes , IsAutoImport , ChangeNodescount , RunTimeInSeconds FROM Orion.DiscoveryProfiles ODP INNER JOIN Orion.Engines e on ODP.EngineID = e.EngineID ORDER BY LastRun DESC
Updated 8/27 to filter by top 20 and rely on ORDER BY to filter it to the top 20 most recent in the code