Comments
-
Let me take a shot at this. We do NOT want auto discovery to detect interface changes. We want an option to DISABLE THIS. We also want the default for discovery to show FOUND ITEMS. We do NOT want to see changed items by default. This is a design problem, not a bug. We also need device filters, but I'll drop that on the…
-
It sounds reasonably. Of course Orion doesn't know anything about your tables so if you add any new Orion entity (let's say Group) there will be no corresponding record in your table etc. But if you write your SQL queries carefully there should be no problem.
-
Instruction for sending diagnostics are included in your support case. If there were some issues with please let me know here in forum.
-
Yes 1 MB per second doesnt seems to be much. If you have suspicion about performance feel free to open support ticket (in that case don't forget put case number also here).
-
Wouldn't be able to configure that device to have only one SNMP-responsible address? I am afraid our discovery has to choose one of available addresses on given device and in your case it select one that you are not interested in.
-
Custom properties are represented by columns in given table and also by metadata stored in Information Service. If you add your own column we will have no information about them. It can later caused some issues (e.g. during upgrade) etc.
-
At least you should transfer log file to RAID 10. RAID 5 is almost disaster for database log. The same is important for tempdb.
-
Another option would be to do some redirection via different IP address. But that can be done either via router or probably via some very special piece of software - in other words nothing easy to do. Honestly I am little scared from having two nodes with identical IP address on one engine because we can't know if there is…
-
Is Web server on same machine as Orion or do you have some additional website? In case of additional website you should run configuration wizard on all additional websites/pollers. Btw. if you believe you won't be able handle that issue you can create support ticket and I (or someone from support) can help you with your…
-
Previous discovery was implemented only in Orion Core and modules had no possibility to extend it easily. Now modules can write own plugins for discovery and that gives them good way how to extend discovery and bring new features into it in the future releases.
-
You are right, you can use even * character - we replace it for % character. I have just tried that condition and it works fine. Regarding condition "Alias LIKE '*Satcom*'" - there is no such field like Alias, you should use InterfaceAlias.
-
I would say that most of CPU utilization is probably caused by Job Engine. In previous versions of Orion most of polling was done in standard poller which was changed in order to maximally utilize today's multi-core CPU. So I am expecting higher burden to entire system is result of higher level of paralelization of polling…
-
Do you use SQL Authentication or Windows Authentication? If you use SQL Authentication can you check that it is enabled on SQL Server? Are you able to connect with used credentials to given SQL Server via Management Studio or another tools?
-
We still don't know about any support ticket for this issue. If there is anybody who can reproduce this issue please feel free to open support ticket. After that we can start investigation directly at customer's side and then inform others in this forum about results. Please don't forget enter ticket number into this forum…
-
In 10.2 we did big changes in discovery. All settings for given discovery profile are now stored in DiscoveryProfiles table. Ranges, subnets and other things are stored in new column as XML.
-
It is very similar for versions before NPM 10.2. Base entrypoint table is DiscoveryProfiles again. Other related tables have prefix "Discovery". Some of them store setting for discovery which has been entered by user in discovery wizard: DiscoverySNMPCredentialsV3 DiscoverySNMPCredentials DiscoveryProfileSearchRanges…
-
Yes it could be small but useful feature so I definitelly agree with it. But I am not the one who decides about features So please feel free to create feature request.
-
If I understand it correctly you need probably this one: SELECT COUNT(DISTINCT CustomLocation) FROM dbo.Nodes WITH(NOLOCK)
-
I am afraid even transparency is not possible. I understand your requirements very well but we are partially limited by drawing components we use. Anyway there is always possibility that sooner or later we change technology (or improve it somehow) and make it possible. I believe good start for feature requests is here on…
-
Hi, this query get number of CPUs for node with NodeID = 4: SELECT COUNT(DISTINCT CPUIndex) FROM CPUMultiLoad_Detail WITH(NOLOCK) WHERE NodeID = 4 AND TimeStampUTC = (SELECT MAX(TimeStampUTC) FROM CPUMultiLoad_Detail WITH(NOLOCK) WHERE NodeID = 4) It tries to get this information from last polled values on node. For common…
-
Are you able to connect to that router via SNMP with address 10.136.2.0 (e.g. SnmpWalk.exe utility shipped with NPM can be used)? Maybe your router is able to respond to various IP addresses and we just select one of them.
-
Yes database is typical bottleneck for such system as Orion. I would recommend to create special filegroups for heavily loaded tables and put those filegroups on separated spindles. You can also try to use SSD disks or even RAMdisk, I usually recomend to use RAMdisk for tempdb, tempdb is heavily loaded and therefore it is…
-
I am afraid without diagnostics from your system we are probably not able to answer why it is happen. So there are two ways how to solve it - you can either create support ticket and include diagnostics into it or (if you are aware of out log files) go to our log files, try get additional information from them and paste…
-
Yes, these queries are for database.
-
What about processes on application server? Is there any SolarWinds process which has high CPU or memory utilization? In general I don't think you should have performance issue with mentioned amount of elements. Probably best way how to help would be directly via online meeting.
-
Quick info about this issues for other customers - this issue has been already fixed in latest version so we recommend to do upgrade to latest version (NPM 10.2.1 at this moment).
-
Do you use NPM 10.2? Are given nodes DNS-resolvable (that means are you able to ping them via their DNS name) from poller where discovery is being executed?
-
I would recommend to check it. Btw. after moving to domain 2 did you run config wizard? Was there any issue in config wizard?
-
If you want to know meaning of these values you can use following queries: SELECT CAST(40848 AS DATETIME) SELECT CAST(40876 AS DATETIME) I really don't know why somebody wrote these queries this way. I would say you can switch these constants with human-readable strings, that means something like: WHERE (DateTime BETWEEN…
-
Hi Simone, how did you do import? You should import it twice - one for first profile, another for second profile. If you import all at once it will cause that nodes with same IP address will be considered as duplicate.