Comments
-
I have voted up your request as I have the same issue but also have a work around. I have my Cisco Trunk with a description that contains the word "trunk". I can then do an alert where Vendor=Cisco & FullName or Caption (or something like that) that contains the word "trunk". I think you could also do it with SQL like this…
-
Heres the way I did it, create a new template with a Powershell Monitor - Replace <SERVER> with the NTP Server IP and then apply to your nodes $CurrentTime = w32tm /stripchart /computer:<SERVER> /dataonly /period:1 /samples:1 if ($CurrentTime -like '*error*'){ Write-Host "Statistic:1000" Write-Host "Message:An error…
-
Thats a good shout... a sort of polling order SNMP, failing back to WMI for things that SNMP cant get? It might take longer to poll a node but should keep the resource requirement to a minimum. I have a SAM template for disk IO but I would like to use the new Charts as it integrates better into the rest of the performance…
-
Personally I think the way Symantec have done it allow most of the different options to be selected. The above screenshot could be for when an alert / action is active. As for unschedule/silencing alerts I would have thought something like this -
-
I agree, but wont be using them until the functionality matches the existing ones (resizing, exporting data etc)
-
We do the exact same thing. On our view there should be nothing between the NPM/SAM server and SMS sending device, if there are any resources that could go down and stop SMS being sent (eg SAN on which the SQL Server sits) we then send a SMS (also via get-ascii) from an alternate site. When speaking with PageGate I believe…
-
This was exactly the same issue I found. I was really looking forward to see that they had implemented by feature request (http://thwack.solarwinds.com/ideas/1291) but it looks like I didn't explain it well enough and it was misinterpreted
-
I feel very strongly about this, I have less than 50 NTA interfaces and a SL2000 which is nearly at capacity, upgrading to a SX would mean I need to also upgrade NTA... Its now looking cheaper to buy a SL100 and NTA100 and run the separately... if EOC actually did reporting better this might be a valid option but it…
-
Hi Michal, For us its not the discovery time that takes additional time but more having the server flag up new interfaces that its discovered post a reboot. Normally we would need to go through and select each WAN Miniport and add it to the ignore list. Typically there is at least 6 per server on a reboot. I'm also with…
-
I have this code that I have adapted to hopefully help. PLEASE PLEASE Test before running this in production as I havent had a chance to test yet!!! --THIS SCRIPT WILL PRODUCE UPDATE STATEMENTS THAT CAN BE EXECUTED SEPARATELY DECLARE @OldServer VARCHAR(MAX) DECLARE @NewServer VARCHAR(MAX) SET @OldServer = 'Exchange01' SET…
-
I may be wrong but I thought this already implemented. (Check the Dynamic IP Address option below the Hostname or IP Address) ?
-
That's really helpful information thanks, though I've been through this with pre-sales and it'll be classed as an 'unsupported' configuration - hence the request here.
-
+1 on this
-
This is a great feature! I poll windows servers with WMI which pulls the location from the AD Site name, is there any way to map values? eg LON -> City of London, UK MAN -> Manchester, UK
-
Once you have a list of nodes found by the discovery you can click on the import, on the Interfaces section. Great implementation sadly in the wrong place IMO
-
Just a follow up, did either of you manage to get any further with the code?
-
Yea that's the way I have it - Trigger Condition Node - Node Name - contains - LON Node Custom Properties - Site - is empty Meaning that it should reset after the trigger action populates the Site custom property. I've been seeing a few strange things with names in NPM12 and already have a support case open.
-
michal.hrncirik would it be possible to re-open this FR so that items can be filtered out as part of the Discovery Process rather than on the Import Process?
-
Shouldn't that automatically be done when the reset is set to "Reset this alert when trigger condition is no longer true (Recommended)"?
-
Has Solarwinds acquired or Partnered with AppNeta as this is scarily like their Pathview product? Will this probe be integrated into the QoE 'probe'/software? Also is there an estimated GA for NPM12 as I'm holding off doing an installation right now?
-
And that acknowledge the alert? I have that set but the alert just sits unacknowledged.
-
+1 but I'd say not just CDP as some telco's turn it off, but even the discovery switch port mapper to help plot end to end depending on zoom level.
-
I used Firefox and the Reload Every Plugin. Not sure if this will help?
-
Dont give them an account if they are going to break something
-
Sadly not, +1 for the FR
-
This is the exact problem I have I want hardware health monitoring but also wanted the Disk Performance Stats. One needs SNMP and one needs WMI. At least set the options for each section rather than globally on a node.
-
We've worked out what was happening with the help of support. Basically as the Site is empty (NULL I guess) we had tweaked the query to be NOT EQUAL TO LON rather than the IS EMPTY Adding an OR condition block so the trigger read - Node - Node Name - Contains - LON AND (Node Custom Properties - Site - IS EMPTY OR Node…
-
I had a look at this too and was struggling to find a way to return the time from an external NTP source (non-windows) from within windows or powershell.
-
Would I be right in saying that this would never be considered a replacement for PageGate/Notepage as it uses existing infrastructure to send alerts/provide logins or is this functionality on the roadmap for the product?
-
I wanted the same so use this - HTH #Number of days to look for expiring certificates $threshold = 90 #Set deadline date $Subject="" $Expiry=0 $deadline = (Get-Date).AddDays($threshold) $store=new-object System.Security.Cryptography.X509Certificates.X509Store("\\${IP}\my","LocalMachine") $store.open("ReadOnly")…