Comments
-
I really don't think it is the number of rows that was the issue. It looked like to me it is the way the "loop" is written. After each "loop" the query pulls back the entire table again. Over time this gets faster and faster as the table gets smaller but there has to be a more efficient way to do this.
-
Yes it is a report but it is not as simple as add poller and report. What I did was add Custom Property to Interfaces called IntIpAddress. I setup poller to get the Raw Value non-historic data from 1.3.6.1.2.1.4.20.1.2. <?xml version="1.0" encoding="utf-8"?> <CustomPollers version="9.0"> <CustomPoller…
-
So something like this on the Node page? The SQL query I built to add IP address to custom properity will let you build report that will display that info. The SQL query is simple. You will need to replace [ChangeMeToCustomPropertyName] and [ChangeMeToCustomPollerName] to the correct values. What this will do is add the Ip…
-
Glad it worked and your welcome.
-
I have a number of cisco fiber switchs (MDS9216 and M9100) mostly. I can and do monitor the FC ports with TX,RX and state. Having the WWN would be a good addition,
-
Sorry my misread. Using a tool like Microsoft SQL Server Management Studio Express you can get access to the location of the Stored Procedures. The 3 I had to change were: dbm_ResponseTime_DeleteStale dbm_InterfaceTraffic_DeleteStale dbm_InterfaceErrors_DeleteStale
-
I got that working. I will have to clean up how i did it and I will post in the content exchange. It took a custom poller + custom property and a sql update stament to get this to work. When I finish my cleanup I will update this post.
-
Here is the file. Put this in the InetPub\SolarWinds\NetPerfMon\Resources\2-1-NodeDetails directory. Then you will have to add that resource to you node detail view. It should be under Node Detail Reports. 01-AdvancedNodeDetails.zip When added it should look like this:
-
You can. If you edit InetPub\SolarWinds\Orion\NetPerfMon\Resources\Misc\ShortBlankSpace.ascx and change the "height:100px;" to something larger will increase the space.
-
We also have support reps working multiple shifts and if your case bridges the shift change, you may see a delay until the next day if you reply after they’re shift is over. If you can’t afford this delay, then either tell the support rep and they can have the case transferred to someone on the next shift or call in for…
-
Just use one line much easier to keep track of what has access to what. snmp-server host inside x.x.x.x poll community string Poll is equal to read only. With it done this way you can remove the snmp-server community MyCommunity and snmp-server host inside x.x.x.x lines. This also allows you to define different communities…
-
Was I doing the changes myself? Yes I did. It is not hard and a simple (double hyphen) "--" will comment out the original line then just copy it and change the number. If it does not help then delete the line you added and delete the "--".
-
No, just a refresh of the page should cause it to show up.
-
Try Truncate(((Truncate(({MinutesLeft}/60),4)-Truncate(({MinutesLeft}/60),0))*60),0)
-
Do you have an access list on that link? I believe that anything blocked by an access list will show up as a discard.
-
Ok I figured out why this is happening. The sysUpTime is a 32-bit counter and will roll over after 496 days. The snmpEngineId (.1.3.6.1.6.3.10.2.1.3) which returns the uptime (of the snmp engine) in seconds and should not roll over for 135 years but not all devices support that counter.
-
That would be something like: (Message NOT LIKE '*A.DS2*')
-
I have 1 node that has been up over 426 days value in MIB walk "3684436429" Value in Database "3.684409E+07". That works out correclly. I have another Node that has been up over 513 days value in MIB walk "144467804" Value in Database "1444523". This does don't work out correctly. The issue has to be the database not…
-
There is a variable "@chunksize = 100" in the stored procedures that the DB maintenance uses this set a limit of 100 records per loop. If you have a large amount of records to proces then this will take forever. I ended up changing 3 of them to 100,000. (dbm_ResponseTime_DeleteStale dbm_InterfaceTraffic_DeleteStale…
-
They will show up under the "Node Gauges - Real-time node gauges for a NPM" and are listed as: "Universal Device Poller DoubleTriple - Linear Gauge" and "Universal Device Poller DoubleTriple - Radial Gauge"
-
From the web interface go to management, then you will see Communities under SNMP. Make sure under general that SNMPv2 and/or SNMPv3 is enabled. Command line: from config mode: (Cisco Controller) config>snmp community create SomeName (Cisco Controller) config>snmp community ipaddr 10.10.10.10 255.255.255.255 SomeName…
-
If you use the 01-AdvancedNodeDetails.Resource you can add that info there. Near the top under this line "DoResourceHeader %>" Add this: <% If Node Is Not Nothing Then seconds = Node.GetProperty("SystemUpTime") minutes = seconds \ 60 : hours = minutes \ 60 : days = hours \ 24 hours = days mod 24 : minutes = minutes mod 60…
-
You can't acknowledge "Basic" alerts. If you want them not to show up disable or delete them. To configure basic on the Orion server open the "System Manager" then click "Alerts" at the top of the Manager. Finally click "Configure Basic Alerts" to disable uncheck the alert or delete the alert your choice.
-
If you are building a VPN tunnel why not add a loopback with a static IP address (192.168.x.x/172.16.x.x/10.x.x.x) and monitor that way?
-
For the poller are you trying to transform are you using a "GET" or a "GET NEXT"?
-
Yes if you add a new custom menu item there is a check box for "open in new window". Just add the url for the Module and then add to menu bar.
-
You would have to use a custom resource. There is one located here.
-
The quick and dirty way to fix this is to edit the database using the database manager. In the table "Resources" you will see under "ResourceFile" "/Orion.NetPrefMon/...." you need to change that to "/Orion/NetPerfMon/...." There are a number to correct but after you change that it should fix your issue.
-
Uploaded new version now can support up to 6 gauges. Download it here.
-
To do that you need to setup an alert something like this. Set "Type of Property to Monitor" to "Custom Node Poller" Trigger Alert when all of the folling apply Poller Name is equal to (Poller Name) Numeric Status is equal to "3" (that should be the "Active" state) To put that info in an email message the 2 variables are…