News:

We really need your input in this questionnaire

Main Menu
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

#3901
Общие вопросы / Re: netxms snmp table
February 27, 2014, 12:23:51 AM
А как показывает даты из .1.3.6.1.2.1.25.6.3.1 snmpwalk?
#3902
General Support / Re: SNMP Stopped working ESXi 5.1
February 26, 2014, 11:57:40 PM
Hi!

Could you also get tcpdump from NetXMS server node and other node? Also, is there any difference between NetXMS and other node in network connectivity? Could be also issue with LACP (or related somehow) which causes packet duplication and/or loss. Did you try it with one uplink disconnected?

Best regards,
Victor
#3903
General Support / Re: Agent upgrade from 1.2.10 to 1.2.12
February 26, 2014, 11:51:28 PM
Can you please also run agent as

nxagentd -D9

and end me the output?

Best regards,
Victor
#3904
Общие вопросы / Re: netxms snmp table
February 26, 2014, 11:49:00 PM
Quote from: andrey--k on February 26, 2014, 11:42:44 PM
Можно ли заставить программу собирать расшифрованые при помощи mib файлов значения, вместо написания скриптов?

А что значит "расшифрованные"? В рассматриваемом случае например формат поля описан в виде текстового комментария, а формально его формат OCTET STRING - система его и принимает как последовательность байтов. А по описанию на английском языке правильно разбирать поле - это уже ИИ нужен...
#3905
Сервер всегда добавляет сам себя - это специально сделано. Для некоторых проверок серверу нужна информация о самом себе.
#3906
Announcements / Re: NetXMS 1.2.12 released
February 26, 2014, 11:44:49 PM
Quote from: d-ray on February 26, 2014, 05:17:26 PM
POLL ERROR: Software caused connection abort: socket write error  **** Poll failed ****

Console doesn't work after 5..10min.

After upgrading to 1.2.12 Server & console same version.

anyone? same issue ?

Regards

It's a known issue. It is already fixed in current development version, we will publish next patch release soon.

Best regards,
Victor
#3907
Так быть не должно. А что за нода появилась снова? Не сам сервер? Если ее удалить и перезапустить сервер, она появится снова или нет?
#3908
Попробуйте увеличить кол-во соединений в пуле поменяв параметр ConnectionPoolMaxSize. И пришлите пожалуйста результат команды

nxadm -c "show dbcp"

в момент когда много ошибок "pool exhausted".
#3909
General Support / Re: Set Sustom Attribute
February 26, 2014, 02:41:06 PM
Hi!

Macros only works in string expansion for events, alarms, and actions. Strings withing scripts are just strings. If you want to set current node name as custom attribute, you can do it like following:

SetCustomAttribute($node, "Node_HostName", $node->name);

You can find interface object using FindInterfaceObject function, and then use SetCustomAttribute as usual to set custom attribute for interface.

Best regards,
Victor
#3910
Скорее в df странные проценты. Агент получает значения total, used, и avail для файловой системы и из них считает проценты. Available space - это место доступное не root'у (free - резерв, обычно 5% от объема).

/mnt/storage

used %: 103 / 187 * 100 = 55.08021390374332 = 55
free %: 100 - 55 = 45
avail %: 75 / 187 * 100 = 40.10695187165775 = 40

/
used %: 25 / 173 * 100 = 14.45086705202312 = 15
free %: 100 - 15 = 85
avail %: 139 / 173 * 100 = 80.34682080924855 = 80

Ну и надо проверять от размера в байтах - при выводе в GB тоже могло за счет округления что-то потеряться.
#3911
I'll try to reproduce this in my test environment later today.

Best regards,
Victor
#3912
Parameter list always show local parameters - even if proxy node is set. I've registered a bug for that and will fix it eventually. Currently you either have to enter parameter name manually, or create DCIs on management server, then move them to fritzbox node and set proxy node.

Best regards,
Victor
#3913
You can use "proxy node" property of the DCI to place DCIs on right object. Create DCIs as usual on fritzbox object, but set proxy node to management server object - actual data collection will occur on management server. Don't forget to add fritzbox object as trusted node to  management server object.

Best regards,
Victor
#3914
Hi!

You can use external parameter or external parameters provider in NetXMS agent. For example, adding

ExternalParameter = Test:my_script.sh

to nxagentd.conf will add new parameter called "Test" to your agent, with value being whatever was sent by script "my_script.sh" to stdout.
Search forum for more information - there should be a lot of topics about external parameters.

Best regards,
Victor
#3915
General Support / Re: Agent upgrade from 1.2.10 to 1.2.12
February 24, 2014, 11:18:15 AM
Hi!

As it looks like you have core file from the crash, can you please send me backtrace obtained with gdb. Instruction is following:

1. Run gdb as

gdb /usr/bin/nxagentd core

(replace core with actual core file location)

2. At (gdb) prompt, enter command bt

Best regards,
Victor