Comments
-
Just add: &&PRINTABLE=TRUE to the page you want to export and then use chromes print to pdf function.
-
Please: -improve alerting using NTA data and including NTA data into alerts (ie-Top 10 apps, conversations, for a given alert) -improve out of the box reporting with NTA -way to include NTA stats inside tool tips. Raally the requirement is easier ways of following a flow through different points in the network thanks!
-
I see this as well. It doesn't appear that the join done behind the scenes includes the NodesCustomProperties table. do you have a structured naming scheme or IP scheme you could leverage?
-
Have you seen this post? Automatically Update World Map Points Based On Custom Property Value
-
Hi Jan, Thanks. This explains alot. This should give me enough to go on to build the queries I need. FYI, I found that in my case some of the symbols worked the opposite as you described. "*", and "?" did not work, but "_" and "%" did return the expected result. thanks again, jc
-
This comes with 11.5 and it uses the SNMP location field. This field must be populated on the device and Orion reads it from the device and then does a lookup for GPS coordinates so that Orion knows where to put it on the map. Note that currently it only works with SNMP, not WMI or Agent based monitoring. Note that…
-
No I dont think it does flow deduplication (Im running a version behind the latest so I cant say definitively). It doesn't even have out of the box alerts. They did add NBAR2 monitoring that had been asked by the community for several years into the last release. NTA is a basic netflow monitoring tool. the alerting, flow…
-
Did you confirm the device is still responding via SNMP? Also there is a known bug with CBQOS where it doesn't work with SNMPv3 when AES 256 encryption is being used. I would check those first.
-
there are not very many canned reports in NTA right now that work with the new FSDB. However there is some documentation in the manual on how to create some using SWQL. If I know more of what you want I could help you get started.
-
can you SSH and ping the inside ASA port? It looks like the ACL at the top only permits SNMP, I'm sure there are other ACLs but I would verify that. I think your SNMPv3 config is good otherwise. Also for troubleshooting SNMP I use the SNMPWalk.exe file on the Orion server. Sometimes the Node Details page hangs for a second…
-
Yes I think it may be your banner is too long. What you can do is put some precommands into the device template and this help NCM wait a few more seconds before it trys to log in. Here is an example from the manual: Telnet to your device to find the pre-commands you need. A pre-command can be used for any device which…
-
you could probably build a SWQL based alert using the Orion.Netflow.Source where LastTime is greater than an hour ago.
-
1) On the page you want the report to be on, click "Customize Page". 2) Then click the green cross to add a Resource 3) In the pop up window that pops up search for "Report", you should see the option "Report from Orion Report Writer". Click that and then click "Add Selected Resources". This adds the resource you want to…
-
BUMP
-
CAn you post your config settings you are using? Also you are not applying the settings to the VLAN interface correct? It needs to be on the physical or sub interfaces if memory serves.
-
Child conditions allow you to nest conditions together to give you more control over the alerting logic. So condition 1 AND condition 2 must be true but either condition 3 or condition 4 have to be true. Look in the "Setting Trigger conditions" section of the NPM Online Administrators Guide here for more info: SolarWinds…
-
Tim, Have you looked at the Orion SDK? It supports the flow tables and if you are familiar with SQL then it is the fastest and most granular way to get a file with the flow data you are looking for. Just be careful to understand your retention settings if you need to generate this report for an auditing stand point. If you…
-
Can you install the Flow Storage Database on a Windows 7 x64 bit OS? I did not see a mention of a dependancy on Windows Server, but want to make sure. Thanks
-
Agree. Would like to do this too.
-
John, Can you post a screen shot of what you are seeing? If you are collecting SNMP statistics from your switches and you see activity from the transmit direction, then you should be collecting data from the receive direction. Did you configure the switches for SNMP? Are you monitoring all of your switches and all of the…
-
UPDATE I was able to get a script using Net-SNMP working however it was cumbersome because I could't give it a an array of OIDs to poll and because all of the data returned by Net-SNMP is initially returned as a string. I noticed @antonis.athanasiou's use of Proxx.SNMP here: Dell Server - Storage Hardware Health v1.2 .…
-
I believe Orion.CPULoad is what your looking for. Did you know about this page where you can interact with the DB using SWQL on your Orion server? http://ORIONIP/Orion/Admin/SWIS.aspx
-
If these are atlas maps then follow @borgan suggestion. If these are the maps overlaid on top of mapquest then the answer is no, this feature does not exist yet, though I agree it is a need.
-
I need some help converting these examples into REST calls via PowerShell. For the above DELETE example, do I need to specify the "/qa-brn-jpel-02.swdev.local/Orion/Orion.Nodes/NodeID=1/Volumes/VolumeID=1" as a object of the body parameter? Here is the code I have so far but it never completes. I think it is because I am…
-
If you look in the report writer legacy application or the web based report writer you can find some SQL queries you can use as starting points. of course there are a bunch scattered around the forums. Have you compared perfstack to tableau? I used tableau before but I havent looked at it in several years. I think you…
-
tdanner, Where would you like us to feature requests like for more verbs, etc? Thanks
-
The SolarWinds API as really improved over the last few years but I havent converted my SQL scripts for this into them yet. My conditions are simple but this is an example of what you could do: USE [SolarWindsOrion] UPDATE NodesData SET Caption = CASE WHEN IP_Address LIKE '%.1' THEN NC.City + '-FIREWALL' WHEN IP_Address…
-
Will, have you checked the individual component settings in SAM and IPAM for this IP? I know sometimes these modules can hold snmp related settings outside of where NPM stores its SNMP data. Also did you check your network discoveries to ensure you are not doing a scan that contains the IP in the subnet?
-
Antonis, Couple questions. 1) Have you looked at this information on github that explains the NTA 4.0 tables? (NTA 4.0 Entity Model · solarwinds/OrionSDK Wiki · GitHub). FYI, I have tried using the different Flow tables to try and put together 'Top XX Flows' charts but I didn't see a performance improvements between the…