Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victor Kirhenshtein

#1306
ПОхоже модем надо переключать в правильную кодировку. Можете прислать результаты команды AT+CSCS=? на вашем модеме?
#1307
General Support / Re: DCI Template manual override
April 25, 2019, 01:32:17 PM
This is the idea of templates (and why you always get a warning when editing template item on a node). If you need customizable thresholds you can use combination of script thresholds and custom attributes. For example, if you need to check that value is less than 10 unless custom value is set on a node in custom attribute "CustomThresholdValue" you can use the following script threshold:

v = GetCustomAttribute($node, "CustomThresholdValue");
return $1 < ((v != null) ? v : 10);


Best regards,
Victor
#1308
В 2.2.13 появилась функция обнаружения нод-дубликатов (с одинаковыми адресами), и в ней уже нашли несколько багов. Попробуйте отключить, выставив параметр сервера NetworkDiscovery.MergeDuplicateNodes в 0.
#1309
Попробуйте переключить драйвер из текстового в PDU режим.
#1310
А какой тип карты - автоматическая топология или custom? И выключен ли automatic layout?
#1311
Да, можно. У агента есть список PDH.ObjectInstances который как аргумент принимает PDH объект. Например, для получения всех физических дисков можно использовать PDH.ObjectInstances(PhysicalDisk).
#1312
Hi,

you probably should check database health and performance first - it could be that for some reason database is unable to handle INSERTs for collected data. Also, check that database connection pool is not exhausted (you can check log file for DB connection pool related errors as well as check active pool connections with show dbcp command in server debug console). You may also try to increase value of server configuration parameter DBWriter.DataQueues.

Best regards,
Victor
#1313
General Support / Re: Unable to Start Netxms Server
April 25, 2019, 10:30:18 AM
Hi,

yes, it was fixed in 2.2.13. We also plan release 2.2.14 next week.

Best regards,
Victor
#1314
Hi,

after you unpack archive you should have nxmc (or nxmc.exe on Windows) executable inside whatever target directory you were using for extraction. Just run it.

Best regards,
Victor
#1315
General Support / Re: subagent
April 18, 2019, 06:16:10 PM
Right click on node, select Tools->Info->Agent->Subagent list

To load subagent add

SubAgent = name.nsm


to your nxagentd.conf.

Best regards,
Victor
#1316
"Access denied" error means that current user has no access to user database. Also, before creating user you have to lock user database, like this:


s.lockUserDatabase()
s.createUser("new_user")
s.unlockUserDatabase()


Best regards,
Victor
#1317
Did you install openssl-devel package?

This is from my RHEL 7 system:

build-rhel-7-x64:~$ rpm -qa | grep openssl
openssl-libs-1.0.2k-16.el7_6.1.x86_64
openssl-devel-1.0.2k-16.el7_6.1.x86_64
openssl-1.0.2k-16.el7_6.1.x86_64

Best regards,
Victor
#1318
General Support / Re: top 5 or 10 busy APs
April 16, 2019, 10:32:58 PM
Can you provide more details on in what form you have utilization data?

Best regards,
Victor
#1319
Actual failure related to OpenSSL libraries:

./conftest: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

Make sure you have matching libssl development and binary packages and that correct libssl.so is in library path.

Best regards,
Victor
#1320
Hi,

NetXMS comes with some VMWare MIBs pre-packed:

VMWARE-AGENTCAP-MIB.txt
VMWARE-CIMOM-MIB.txt
VMWARE-ENV-MIB.txt
VMWARE-OBSOLETE-MIB.txt
VMWARE-PRODUCTS-MIB.txt
VMWARE-RESOURCES-MIB.txt
VMWARE-ROOT-MIB.txt
VMWARE-SRM-EVENT-MIB.txt
VMWARE-SYSTEM-MIB.txt
VMWARE-TC-MIB.txt
VMWARE-VC-EVENT-MIB.txt
VMWARE-VCOPS-EVENT-MIB.txt
VMWARE-VMINFO-MIB.txt

If you add same MIBs them may be just redundant. If you add new MIB files to MIB directory, make sure they have .txt extension - directory compile option only reads txt files.

Best regards,
Victor