Comments
-
Are you sure that the LastBoot value had not changed? This can happened even though the node didn't reboot if the SNMP service restarts. It looks like from your screenshot that the alert is still triggered, (even though the node is up) - this would by why you haven't received a reset email. It's generally a good idea to…
-
I've had it both ways - sometimes the truncate was all that was needed, other times I had to rebuild the jobengines. I would suggest doing the truncate and restarting the services first, and only proceeding with the jobengine rebuilds if really necessary.
-
Correct. There are two ways to handle this: 1) Add another level - Alert when ALL Alert when ANY [list of nodes] Alert when ANY [list of condtions] OR 2) Use custom properties - Alert when ALL [CustomProperty] is TRUE Alert when ANY [list of condtions]
-
You're welcome. Glad to help.
-
Have a look at the Physical entities V2 report in NCM
-
There's no real correlation between a node and a view globally. Each node will use a "Node Details" view of some description, but which one can be configured on a user by user basis (i.e. node ID 1 might use the default node details view for user A, but a custom node details view for User B) and also by device type. Which…
-
Having two averages from two different tables will make this an expensive query (particularly as Availability is quite expensive in itself), which will probably timeout. Let me have a look if I can make this work for you...
-
You're welcome.
-
Hi, I used the Large LED symbol on the right hand edge of the devices. Hope this helps Stuart
-
No problem. It does depend on which alerts you look at, but you are correct, some data is stored in "alert data" views...
-
The main use case I have in mind is to send a pi pre-configured to a remote office to use as a netpath source. being able to use as a wpm playback location would also be nice.
-
Sorry, I should have read your feature request thread through before posting. I now have My suggestion would still echo that as described. By creating an advanced alert you are able to much more granularly control what is written to your event log. In addition to suppressing events I have no interest in, I like to ensure…
-
Could you please post a screenshot of your trigger and reset condition pages?
-
You can do this by creating a report of "current status of nodes, interfaces etc." then select the "Custom Pollers (current status)/custom Node Pollers/Poller name" along with the other fields you require. The trick to making this work is to then filter the records "where Poller name is equal to [put serial number poller…
-
Ok, lets start from the basics. What products are you using? The output leads me to believe this is a SAM chart, and I'm suspecting its a Custom SQL monitor script. Do you have full admin rights? On both old and new environment? When you see the output above, what do you see in the URL bar? Specifically do you see…
-
If you can post your sql query I'll see if I can offer some advice. Stuart
-
This is only showing 2 triggered alerts, so I would have expected only two emails. Are you expecting to see more? What are the two alerts that were triggered on this node?
-
Hmm, interesting! I'm not going to be able to help you with your query, although very much interested in the concept your applying in more depth...
-
Random question - Does the poller server have access to the internet? I've had experiences like this before where pages take a while to load because IIS is constantly trying (and failing) to connect to the internet and check for certificate revocations. There is a fix for this, so let me know if this applies to your…
-
Run debug snmp packets on the destination cisco device, then check the logs to show if responses are sent: Jan 30 17:03:42.839: SNMP: Packet received via UDP from [pollerIP] on GigabitEthernet0/0 Jan 30 17:03:42.839: SNMP: Report, reqid 17319, errstat 0, erridx 0 internet.6.3.15.1.1.4.0 = 1325840 Jan 30 17:03:42.839: SNMP:…
-
This is how it looks for me. This is on the node details tab.
-
Changed connection string to $swis = Connect-Swis -v2 -host $hostname -Certificate Now the error is caught in the log: 2017-03-13 16:28:20,967 [137] INFO SolarWinds.InformationService.Core.QueryPlanCache - Clearing cache for all users 2017-03-13 16:28:48,248 [66] INFO…
-
Your trigger condition should look like this Also add your custom properties into the list Hope this helps
-
Your latest trigger condiotion is correct. If you can, initiate a failure and leave it for at least 15 minutes and see if it triggers. If it doesn't, leave the failure in place and paste the output from this command in database manager: SELECT TOP 1000 * FROM [dbo].[NPM_RoutingNeighbor] where protocolid ='14' and…
-
The names of the module tabs can not be changed. As you have noticed, these can be removed on a per user basis, but aside from that, not changeable.
-
How does your alert (when it is triggered) notify your notification software that the alert has been triggered?
-
Hi, I'd think the best way to obtain these to to give the Dell Service centre a call and ask them. The values I obtained were from other area's of the MIB tree and I dont see 0 entres anywhere. Stuart
-
Tiger2020 Pro http://www.tigercomms.com/tiger-2020-pro-call-logging
-
Ok, try this: ${SQL:SELECT Value FROM CustomPollerStatusTable INNER JOIN CustomPollers ON CustomPollerStatusTable.PollerID = CustomPollers.CustomPollerID WHERE UniqueName = 'GBAvailable' AND UniqueID= ''' & ${UniqueID} & '''} that is ' 3 times with no spaces. (This is just a guess, and I could be miles off...)
-
I actually prefer the built in database manager. To get an idea of the things available, I start with running a "get everything" query: SELECT * from [tablename - ie nodes] this will bring back the whole table, so might take a bit of time on a big database. Then when you need info from two tables (nodes and interfaces) you…