Comments
-
You could add a check for the Custom Poller Status is not equal to Up: e.g. Trigger an alert when all of the following are true: Node Status is equal to Up PollerName is equal to jnxRedAlarmCount Trigger an alert when any of the following are true: Numeric Value is greater than zero CustomerPoller Status is not equal to up…
-
There is no API for IPAM or UDT for you to use to add the results of a NMAP discovery. Otherwise... go for it!
-
I answered an almost identical question to this a couple of months ago: see: Custom SQL Alerts based on the SNMP trap message content have a look at that thread, and ask questions.
-
open a case with NetApp on their SNMP support They should try and generate a stable index in the MIB for their volumes. The number they generate doesn't need to be sequential but they should make it stable over time. Note: The current behavior will break almost anything that uses table index values to monitor statistics on…
-
see this: Re: Any means of mass enabling the "Hardware Health Sensors" resource detection?
-
in the report I'm not seeing where temp table #interfaceids is actually being used (unless I'm reading it wrong).; it seems to be created, populated, and dropped, but never actually used. Here's the outline of a function to get the GetWorkdayInBps95th -- takes the start and end hours for the period under consideration. I…
-
Make sure you do not have any routers EXCEPT for your backup server. It's typical that sysadmins configure the default gateway on every NIC: remove that and add a persistent route to your backup server through the interface you want to use for backups. [since you didn't include the information necessary I can't be more…
-
Alerts need an Orion object to act upon. This can be a Node, Interface, volume, etc. a Node can be of type External You might find it easier to set a custom property on an external Node and use that to drive the alerts. otherwise yoiu're into custom SQL and joining the Node to the Events (or syslog or trap tables -- both…
-
post your script that creates them. I seem to recall that if you don't update the ipguid then polling doesn't happen, there might be other things that are missing that stop polling -- search my previous posts for the perl script I use to create nodes. Many [unmentioned] values have to be set to -2 to make the UI less…
-
did you get a template for the 4000m? -- I'm looking at trying to build one and its menu/CLI is odd... Richard
-
Probably a list of URI as returned by: select URI from Interfaces where Status = 0 and InterfaceIndex = -1 and NodeId = x
-
Every 4 hours Review Lima: NOC Incoming Guide#LIMA Daily Start of shift: Check your calendar for meetings and timed DNS changes Login to phone and open for inbound calls. Review SolarWinds for Active alerts and general status of the network health. Review the most recent Handover report for ongoing activities, upcoming…
-
You need to change the custom poller to be Enumerated, and it'll convert the output into something more meaningful: (as an aside, notice the use of GET with an instance oid (ends with .0) instead of GetNext -- that way you'll only get the value of the OID you asked for, and not something random if you accidentally poll a…
-
I'll help out -- emailed
-
you point it as a representative device on your network and make sure that it is reporting L2 or L3 information in a standard MIB. then, open a case with SolarWinds
-
What type of Aruba Controller? How complex an install? if you have a small number (one) controller and no redundancy in your Wireless architecture it might work OK. SolarWinds Orion NPM Aruba support for large installs is so weak that it is barely there 1. is does not support active/passive failover 2. it does not support…
-
FoE works for us. I would like better management of it. I'm not impressed by the product architecture of either/ FoE is harder than it needs to be to maintain -> application upgrade is painful -> invisible status outside of the servers. HA is harder than it needs to be to get running -> LAN only, but may be not true ->…
-
We have the same issue [with NPM 11.0.1] and aruba == the core of the issue seems to be the wireless controller poller is trying to do too much work in one go: it's pulling the AP status, radio status, and client status from the controllers and having problems. [I know this because I have a custom pollers pulling the exact…
-
Unfortunately I do not think this will work as you expect. you only have vcp-0 and vcp-1 even in multi-chassis systems. You will need to use a UnDP on jnxVirtualChassisPortOperStatus (.1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4) which will return something like:…
-
What versions? At one point I seem to remember MSMQ was being used for a lot of polling engine co-ordination, but that has pretty much gone away. For all versions I've used (8.x & later) the syslog process has written directly to the database. If you have one of these running locally then you can filter what gets written…
-
try: ${SQL:SELECT top 1 N.caption FROM NodeIPAddresses inner join NodesData N on N.NodeID=NodeIPAddresses.NodeID where NodeIPAddresses.IPAddress=${NeighborIP}} NOTE: this assumes that NodeIPAddresses is properly populated; IME some routers fail to return their link-local IPv6 addresses; it is useful to include the…
-
I would look at the SQLserver -- If you have multiple polling engines running over the same L2/L3 infrastructure then they may be trying to update the tables simultaneously leading to deadlocks and timeouts in the database. I did a LOT of work with the UDT folks a couple of years ago to get UDT 3.2.4 stable in our…
-
No. [the percentages are what is used for availability calculations involving the group, so if you have one out of ten nodes up in a mixed-status group then the availability of the group for calculations is 100% and the status is Warning. ] Availability calculations at anything other than the Node level are fraught with…
-
this looks just like the Aruba Airwave, Aruba Clearpass policy manager, and the Fortinet fortimanager products to me... UI designed use common metaphors so they all tend to look the same after a while
-
uploaded SolarwindsDiagnostics 20171107 Main NDT-SW-APP1.zip
-
You cannot monitor this using the interface state (at least not without the owners of R2 and R3 intervening, and that depends on the feature/functionality of their equipment and it's ability to have the interface state follow the MPLS VPN state... let's assume that you're not going to have much pull there...). I assume you…
-
there is a small check-box to the top left of that area (to the left of were it says 'Polling method' )-- you have to check that to 'unlock' changes to the SNMP community.
-
well, if your custom poller is defined as a rate then: Select Top 1000 * From CustomPollerStatus where Rate <> RawStatus (or am I missing something here?) if you want to compare historical data the something like: SELECT TOP 1000 * FROM custompollerstatus CPS INNER JOIN custompollerstatistics_detail CPSD ON…
-
You need NETCONF support -- vote up http://thwack.solarwinds.com/ideas/2855
-
aside from the other suggestions whenver I've found the webUI slow it has been because the database is currently being locked up by some process (normally UDT cleaning up something)