I have been checking this chart and results regularly and only see a 0.8% not backed up most days.
However on closer inspection this chart is not showing accurate results - or the 'as of last update' value is not correct ( a value that the webpage does not show i might add).
Basically I have some devices that stopped being backup up 2 weeks ago, and it was only by chance as i was manually uploading config to the entire site that I found the error. Checked to find the last backup date was 29/07/2013.
The chart in orion shows them as being 'backed up'? which I guess in a loose way they 'were' two weeks ago..
any ideas? or is this a bug?
If i do a manual sql query as below i find the results very quickly..and it seems i have 25 devices out of 959 that are not backed up to current (i.e. daily) so i am actually 2.6% not backed up.
SELECT | TOP (100) PERCENT dbo.Nodes.NodeID, dbo.Nodes.NodeCaption, MAX(dbo.ConfigArchive.DownloadTime) AS Expr1 |
FROM | dbo.ConfigArchive INNER JOIN |
dbo.Nodes ON dbo.ConfigArchive.NodeID = dbo.Nodes.NodeID |
GROUP BY dbo.Nodes.NodeID, dbo.Nodes.NodeCaption
ORDER BY MAX(dbo.ConfigArchive.DownloadTime) DESC