<Edit> I just found this more detailed view in the CSZ which includes manage/unmanage times as well.
Add the following filter to your down nodes view:
Status <> 9
Create a new resource view for only unmanaged devices in your 1-1-SummaryReports directory:(note this includes my CP called 'Comments')
"09-UnmanagedNodes.Resource"
<!-- Title=Unmanaged Nodes --><!-- Level=7 --><!--#include Virtual=/NetPerfMon/scripts/Resource.asp --><% Title=Resource.Title If Len(Title)=0 Then Title="Unmanaged Nodes" SubTitle="The Following Nodes are currently Unmanaged" if Len(Resource.SubTitle)>0 Then SubTitle=Resource.SubTitle HelpPage="DownNodes" EditButton="/NetPerfMon/Resources/Filter.Edit.asp?ResourceID=" & Resource.ResourceID & "&ViewID=" & ViewID DoResourceHeader Set SQLResource = NetPerfMon.NewSQLResource SQLResource.SQL="Select * From Nodes Where Status = '9' Order By Caption" SQLResource.Filter= Resource.GetProperty("Filter") SQLResource.Execute%> <table border="0" cellPadding="2" cellSpacing="0" width="100%"> <tr> <td class="ReportHeader" vAlign="center" width="20">Node</td> <td class="ReportHeader" vAlign="center"> </td> <td class="ReportHeader" vAlign="center">Comments</td> <td class="ReportHeader" vAlign="center"> </td> </tr> <% Do While Not SQLResource.EOF %><tr> <td class="Property" vAlign="center" width="20"><%=SQLResource.GetProperty("StatusLED;SmallIcon")%> </td> <td class="Property"><a href="")%>"><%=SQLResource.GetProperty("Caption")%></a>">thwack.solarwinds.com/.../View.asp </td> <td class="Property"><a href="")%>"><%=SQLResource.GetProperty("Comments")%></a>">thwack.solarwinds.com/.../View.asp </td></tr><% SQLResource.MoveNext Loop%></table><br>
Another feature request would be to have a text field available to put comments as to why the node is being unmanaged.
We have added a custom field which we use to record the reason we unmanaged the device. We are also trying to set the unmanaged state from outside the Sytem manager but the devices seem to keep going back to the managed state by some background task.
Anyone have any idea of what is causing the device to go back managed?
Andy