Comments
-
This really cannot be that hard to achieve in some form. I am working on a solution for automatic polling engine fail over right now. Seems like an alert could be set up with an action: Alert: node selection: (all nodes assigned to engine 5) Alert Trigger: (engine 5 services, interface, (whatever you want) not working…
-
One small annoyance, when you give a kudos for a feature request, and then later review them and inadvertently give another one, it takes the one you gave before away. Something in the view to show things you already voted for would be cool.
-
oh and we need container monitoring supported on the agents as well.
-
Do you know a way to do this for appinsight for SQL/WEB? Assigning Appinsight application templates to a group is not currently supported, any work arounds? Expanding on the Template Custom property attributes. I use asset inventory for windows servers, I find which application names I can pull from there, I drop them into…
-
Docker
-
I agree, as a work around we do this through SQL. disable everything update a set a.autoupdateenabled = 'false' from agentmanagement_agents a enable test update a set a.autoupdateenabled = 'true' from agentmanagement_agents a JOIN nodes n on a.nodeid=n.nodeid where n.environment ='test' enable production update a set…
-
did you ever get an answer for this question? I am facing a similar situation.
-
here is how we fixed it, reboot, run the config wizard three times, first two times got errors, last time config wizard finished and they system is back up.
-
we are getting the same error on the config wizard, I was able to start the services and it shows the version with the HF, but really need the config wizard to finish, be sure to update on here if support is able to fix it.
-
Did not open a support case, but the issue disappeared in 2019.4 rc1 on the core poller, now we get a 404 on the additional web server, not a major issue, but if you know if there is some additional port we might need to open or something else, that would be helpful.
-
Not to beat a dead horse, but I found this helpful to at least understand the issue. Re: NPM's NodeIPAddresses table is not up-to-date looks like solarwinds is doing this: NPM is able to populate list of IP addresses using DNS server and SNMP or WMI. IP address poll for SNMP node executes these steps: * Perform reverse DNS…
-
it looks like some of the nodes are just not in the nodeipaddress table at all, and only exist on the nodedetails table. Since I discovered we have several reports that only query the nodeipadress table for ip addresses, this problem is way more impactful than expected. going to open a ticket as soon as possible.
-
I have ran the DB maint, and will wait, but in the mean time I have removed 4 entries directly from the database, after reviewing the data a I pulled out, this is just not a comprehensive list, I will still have several hundred nodes with the old ip address listed. I am thinking of implementing the SWQL query you provided,…
-
hate to reply to myself, but I have discovered that nodes managed by ICMP only show up in the nodeipaddress table with the last three columns as null, but also exist in the nodesdata table because that ip address is used for polling. so if I just delete everything from the nodeipaddress table that have the last three…
-
I have the same issue as jellobones posted above, seems different than the Bindings issue. Problems, Potential issues etc.. display but all show 0 and now way to get them to populate. thank you
-
Just finished running the database maint from the server, it did not correct the issue. I guess I have to clear them from the DB, but I wish there was another way.
-
yes, that ip is completely gone from the devices, (searched all the ncm configs, and checked all the ncm tables too) We do not have layer 2 or 3 topology being discovered, so not sure orion would pull in a secondary ip anyway.
-
Thank you very much for the information you provided, I did not implement the SWQL code, but I was able to search the nodeipaddress table you used for the code and I found one of the rogue Ips. The IPaddresstype, InterfaceIndex, and Subnet Mask are all NULL. (there are total 628 ips with null in the three columns) So is…
-
okay, Might help if my config block was using regular expressions. got it and it worked perfectly thank you very much
-
Thank you very much for the infromation when I set this up and test it, I get pattern ^interface GigabitEthernet 2/4[1-7]{1} was not found Pattern ^\s{1,}shutdown[\r\n]*$ was not found. I know that 2/45 is shutdown, and 2/44 is not. so is this rule only going to be compliant if all 7 are down? and there is a way to get it…
-
Seems this issue has many causes, I went through several days of troubleshooting, cleaning tables, etc.. turns out for me, adding an additional poller caused the issue and restarting IIS corrected the issue, just in case you experience this again, something to think about.
-
how did you get the unmanaged by column populated???
-
Like I said in the original post this is what I am doing now. I set up a component to look for ID 1074, and when 1074 is triggered, an e-mail will be sent containing the data in the even log entry. This works, the issue is that every reboot includes at least two instances of 1074, so it creates multiple entries, and as you…
-
okay, because of your wonderful guidance I was able to figure out the alert piece, in case you are interested: I just used the double value trigger option and put cp_poller is not equal to EngineID. It worked like a champ, I changed several cp_poller properties and moved several nodes to different pollers and everything…
-
Another update. The Custom property I created is Text. all the engineids did automatically assign to the custom property, but when I go in the db and do SELECT c.CP_poller, n.engineid, n.caption FROM nodescustomproperties c Join nodesdata n on c.nodeid=n.nodeid WHERE polling_engine_id != 'n.engineid' I get every node…
-
The solution you provided is very great. I have implemented the first part and will work on the sqlcmd script later, if needed. however there is an issue. I did everything exactly as you stated. The alert to set the custom property to the polling engine id is the issue. it worked, I set it to run every 2 hours, and…
-
Thank you for recomendation, I have not ran the database cleanup, but I am getting it scheduled now. I also found the rogue IP addresses in the database, crossed checked against several other tables (a lot of them existed in the discovered l3 connections table) so I have a comprehensive list of which one need removed at…
-
I tried rediscovering, and polling, I tried a reinventory, I have queried 30 different db tables directly looking for one of the old ip addresses and have been unable to find it at this point. it is showing up under the all ip addresses assigned to caption resource, also when you click edit node the option to select ip…
-
the caption shows the short name, but caption for us is irrelevant, because I have sql agent job that cleans it up. It is the DNS field that is weird for a handful of nodes, Linux team just discovered the issue. SW agent uses an nslookup from the local agent, when I did nslookup from the polling engine I got the FQDN, but…
-
I would use Custom properties for this. create a SQL agent job or an alert with the change custom property action set. create 2 CPs - software1 and software2, if software one exists set the custom property to the name of the software, if software two exists set the custom property, software2 to the name of the second…