Comments
-
Have a look in the database to see if that table is being populated with the serial numbers - also have you tried the table HWH_HardwareInfo ** and [dbo].[NodeMACAddresses] **
-
Any firewalls blocking the port outbound not on the test machine but a company firewall or ACL?
-
Hi there, what kind of node? any firewalls, ACL's etc in place. check and replace the current settings on the node make sure they are the same as Orion's.
-
Have you tried doing a walk of the MIB ? on the application server search for mib walk or search for universal device poller on the application server/main poller - new universal device poller - theres a button to the right to browse MIB tree and have a look through there.
-
Re run the config manager go through it and untick /tick
-
There are also hardware sensors in settings - NODE & GROUP MANAGEMENT - Manage Hardware Sensors
-
We have a network discovery for the ranges that we are using set up to be scanned each evening, ours isnt using SNMP polling though that can be used if you set up a network discovery.
-
I presume that you have checked that no anti virus or the firewall hasn't changed due to a microsoft update? sometimes they drop into lockdown (Public profile if its a windows box/ server) rather than a reinstall, if you have issues in future try running the conifg wizard first before you do anything as that sorts out…
-
try setting the trigger of the Alert to Power Mode has changed (Switch Stack Power Event) - Event must occur at least 1xDetails then have a secondary section 'and' switch stack power The scope of alert: All objects in my environment (Show List) Only following set of objects The actual trigger condition: Available…
-
HI good morning, Ive been able to find that the actions table and ActionDefinitions tables both have the field ActionType - which looks to be the trigger action SELECT * FROM [dbo].[ActionDefinitions] where ActionType Like 'Set Custom Status%'
-
Something like this ? https://thwack.solarwinds.com/product-forums/network-performance-monitor-npm/f/forum/90438/swql---combing-two-left-join-tables-into-one
-
I would have a read if you haven't already of other similar posts https://thwack.solarwinds.com/product-forums/network-performance-monitor-npm/f/forum/78505/nexus-7k-core-switches---what-do-you-monitor We just monitor the basic stuff, it depends also upon the poller and database as well as how much you want hitting the…
-
Also check the ports it uses havent changed on the firewall incase a Windows upgrade has changed something
-
You'll get this as its an out of box alert and so what they mean is that you will need to duplicate it and change the name so that it becomes editable and useable for you. Edit Alert This is an out-of-the-box alert. You can only add Trigger/Reset actions or Time of Day settings for this alert. Conditions can't be…
-
You can add a hyperlink under add resource - group by Type - then under custom resources - custom HTML or User Links. I would add a pic but not found how you can now !
-
There are quite a few resources for filling in custom properties using SWQL, you can also use power shell which is the method I use to fill in details and have been doing for quite a while now without the tables being changed and so are upgrade proof. This one shows you using SWQL I found for you…
-
Another thought, you are looking on the additional poller correct? have a look if the main poller is having any issues.
-
Has the config wizard threw up anything when you run through that? Have you used troubleshooting app and gathered all the logs together for Solarwinds and opened a ticket?
-
I presume they are running on windows boxes? check ports are all still open after updates taking place. Run a port scanner on the APE perhaps? Thats the other thing, try shutting down all the services (if possible) then restarting on both as the rabbit, admin services towards the bottom do sometimes need restarting.
-
Sounds good - if you find any comments helpful if you can mark them as correct it would be most helpful
-
Will do
-
indeed and then
-
Is what working? This works as an alert for us yes.
-
You're welcome
-
Are team A and team B not set up as email groups? So the alerts for Servers_A would go to TeamA@email.com Servers_B would then be for TeamB@email.com ?
-
Obviously you would have to marry that up with the custompoller name which 'I think' this will help SELECT CustomPollerID, UniqueName, Description, OID, MIB, SNMPGetType, NetObjectPrefix, GroupName, PollerType, CustomPollerParserID, Format, Enabled, IncludeHistoricStatistics, Unit, TimeUnitID, TimeUnitQuantity,…
-
Theres a table called Orion.NPM.CustomPollerStatus with a DateTime field there this is the select statement for it SELECT CustomPollerAssignmentID, DateTime, Rate, Total, RawStatus, Status, RowID, Description FROM Orion.NPM.CustomPollerStatus
-
NPM alone you wont have this option sorry but found some information for you which might help https://thwack.solarwinds.com/community/solarwinds-community/product-blog/blog/2010/01/19/what-is-database-maintenance-and-how-do-i-use-it also a database best practice guide…
-
ohhh thats great thats the bit of the jigsaw I was missing to make this happen, thanks a million, ive been looking at it for a while now and not spotted the settings in there. Thanks very much
-
It needs to know the host its connecting to hence it being on the right side IE $hostname = "server.hostname" you can do the following where the credentials are got from the user via a pop up box, remember though its the same format as you log into your domain with so domain\username $cred = Get-Credential then use...…