Comments
-
The best alert for that I found was "Numeric Status is less than 6" This will send an Alert if the BGP status is anything other than established. For the message you could do something like: BGP Peer on ${NodeName} ${Node.IP_Address} is: ${CustomPollerStatus.RowID} ${CustomPollerStatus.Status} That should get you started.
-
You could try something like this in an Advanced SQL report. SELECT Nodes.Caption AS NodeName, Nodes.LastBoot AS Last_Boot FROM Nodes WHERE CONVERT(VARCHAR(10),Nodes.LastBoot,101) <> CONVERT(VARCHAR(10),getdate(),101) That should be a good starting point.
-
There are a few procedures used in the Database Maintenance that are limited to 100 rows. If it has a large number of rows to delete it has to loop over and over again. This is what is slowing down the process. Simple increases of that limit will speed up the process greatly. I will have to look it back up all the ones…