Comments
-
You are correct that the placement of Hubble has been there for quite some time now and that it has always partially blocked the menu, but the issue was compounded with the new UI. That is the point of this thread. Case in point the placement options are much needed for this type of debugging.
-
I am still a bit confused. 1.3.6.1.4.1.22420.2.1.10.1.2 has 8 columns, and I can add a poller for 1.3.6.1.4.1.22420.2.1.10.1.2 - my issue is that 1.3.6.1.4.1.22420.XXXX has hundreds of options. So are you saying I have to pick apart the MIB and configure UNDP for any results? Seems a bit silly, considering I would be…
-
I to have the same problem, and its not ideal to do this under the manage nodes -> edit properties for a few reasons. Doing this you do not get to set the interfaces you want monitored so you end up doing a sonar discovery against the nodes you have changed the polling method on. It also isn't ideal if you are changing…
-
I certainly understand your points. But there are many instances where this is not ideal. Depending on thwack forums and github community is great for ideas and code sharing, but not for support. For instance I have been working an issue on this forum for 3 days now. There is no error with the code as it works on other SW…
-
Tim, If i have to create a discovery I want to build it like a system one, I am having trouble w/ the XML payload syntax. I want to be able to send 15 different SNMP Community strings to try. I saw this post -> Re: 10.4.1 - use of Orion.Discovery verbs That has multiple credentialsets, so I want same sorta thing with…
-
Ok, is this a future feature request? With that said, can you give me a perl example of start discovery process with using multiple SNMP community strings? My issue is that without knowing the XML input required / no required payload its difficult to generate. If I can't use an existing profile then I will need to generate…
-
I have everything setup, but I am drawing a blank on what this even means??? What the heck is a ARP router for the switch ? "b. A custom property that will hold the ARP router for the switch or MLS. This should be filled out for all “Switches” and “MLS”. If this value is blank for a switch or MLS it will show “Bad…
-
Ugggh, Still no improvements to the Discovery Engine.
-
I do this to the caption field nightly via SQL Server Agent. You can modify this to do exactly what you want. UPDATE [SolarWindsOrionNA].[dbo].[Nodes] SET Caption = SUBSTRING(DNS, 1, (CHARINDEX('.', DNS, 0)-1)) WHERE (DNS is not null OR DNS != '') AND DNS like '%.%'
-
I have implemented 6 X (hard metal instances) - each instance is double stack licensed for every poller that is distributed across North America. We are starting to see major limits to the scaling we deployed and future implementing. I am intrigued and hopeful to see a nice delta increase, it makes sense that you are…
-
Got the trace to work - here is the output. nmsinfra@NYC06> nmsinfra@NYC06> set cli complete-on-space off set cli complete-on-space off Disabling complete-on-space nmsinfra@NYC06> set cli screen-width 0 set cli screen-width 0 Screen width set to 0 nmsinfra@NYC06> set cli screen-length 0 set cli screen-length 0 Screen…
-
What does your license detail page say ?
-
I have the same problem, I can't find the field in any tables. The queries in this thread is opposite of what we are trying to accomplish. We want a list of devices that are in NPM but not in NCM which are flagged with "NCM Licensed" = Yes/No/Never. While this could be done by showing NodeID's not matching NodeID's from…
-
Too ironic, I just did this in my system. Except I didn't want the FQDN, We wanted to use the short name. I went with the SQL update path. ## First let's see how many results we have that look like an IP Address SELECT SUBSTRING(DNS, 1, (CHARINDEX('.', DNS, 0)-1)) FROM [SolarWindsOrionNA].[dbo].[Nodes] WHERE Caption like…
-
Anyone?
-
Thinking about this more, It would be better to define these profiles in the NPM system and then extract that to a XML profile. We expect to have quite a bit of variations.
-
mesverrum is exactly right, you do not pass actual DB name into that var, you pass the column name, or if you prefer the SWISS column name. Caption is valid, Sysname, IP_Address, etc...
-
Bumping this hoping someone can point me in the right direction.
-
bump
-
I used these two articles to create my DBLink. http://www.itprotoday.com/microsoft-sql-server/connecting-sql-server-and-oracle-using-linked-servers How to get up and running with Oracle and Linked Servers – CSS SQL Server Engineers
-
I have never heard of "postman" but adding a node thru the API you have several options. Here is a powershell add node example -> OrionSDK/CRUD.AddNode.ps1 at master · solarwinds/OrionSDK · GitHub you can read thru this for more information & examples -> Home · solarwinds/OrionSDK Wiki · GitHub -Will
-
You have SNMP Get and SNMP Traps. SNMP Get is what most people think of when they think about SNMP. In basic terms, you network monitoring software periodically sends a GET request to the SNMP device asking for a piece of information such as CPU utilization, disk space, network byes, or anything else the software/hardware…
-
I am bumping this as we have the exact problem. Mostly Cisco but we have 4 or 5 other vendors.
-
So, for reference/fyi, just finished pulling some data to our db, here’s the two queries I ran.. SELECT DateTime, InterfaceID, NodeID, Availability, Weight FROM InterfaceAvailabilityByDays SELECT NodeID, DateTime, Availability FROM DailyNodeAvailability And bulk inserted the data to our db (autocommit off, etc). Took about…
-
I will also note that this node has a entry in the CustomProperties table, I am only updating them not creating them.
-
I slimmed down the request and tried this via curl and get this. [wlipford@rstlcnscweb01 cronjobs]$ curl -v -u autobotorion -k -H "Content-Type: application/json" -d '{"TNSMonitoringProfile":"Solarwinds:SNMP:NoGNMS"}'…
-
I got this working with no problem. One of the things I did differently from this post is setting a time limit of 5 minutes and I also included the interface index number to the -i flag for softflow. SOFTFLOWD=/usr/local/sbin/softflowd VERSION="5" INTERFACE="2:enp3s0f0" COLLECTOR="10.10.10.10" CPORT="2055"…
-
I would check your polling settings and make sure Perform reverse DNS lookup is not checked.
-
Did you ever figure this out?
-
This isn't working and I have no idea why........ #!/usr/bin/perl use SOAP::Transport::HTTP; use XML::Simple; use SW::Orion; use SW::InformationService; use strict; my $hostname = '10.224.254.203'; # fill in a hostname my $username = 'XXXX'; my $password = 'XXX'; my $endpoint =…