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

#4771
Добавил в 1.2.6 сортировку графиков. По умолчанию сортируются по алфавиту, этот порядок можно изменить, выставляя атрибут "order number" для DCI.
#4772
Еще вопрос к обладателям D-Link'ов - пришлите пожалуйста результат SNMP walk на .1.3.6.1.2.1.2 для стека.
#4773
General Support / Re: Out of memory NetXMS v1.2.5
February 02, 2013, 01:16:57 PM
Hi!

Looks like memory leak in NetXMS server. Is it possible to you to run it under valgrind and send me the log? Correct command will be

valgrind --leak-check=full --undef-value-errors=no --log-file=netxmsd-valgrind.log netxmsd -D3

This will run netxmsd under valgrind in foreground. Let it run for few hours, then shutdown by entering "down" in server's console, and send me netxmsd-valgrind.log.

Best regards,
Victor
#4774
General Support / Re: Deleted nodes still throwing events
February 01, 2013, 03:11:43 PM
Hi!

Looks like some problem with node deletion. Can you try to stop NetXMS server and run nxdbmgr check? If node is really node bound to any subnet or container, it should be detected and deleted.

Best regards,
Victor
#4775
Quote from: sabonez on August 07, 2012, 02:08:35 PM
Первое наблюдение - дискавер по LLDP отлично работает с моделями, у которых Port Description вида "RMON Port 10 on Unit 1", но не работает с теми, у которых такое - "D-Link DES-1228/ME R2.00 Port 25". Подобное описание портов имеется у серий Gigabit- и Metro- Ethernet Switch.

Вроде нашел причину - в обработке LLDP информации есть баг, который не позволяет корректно определять линки между устройствами разных моделей (при lldpRemPortIdSubtype = 7).
#4776
Пытаюсь разобратся сейчас с DGS-3627G. Полный дамп очень бы помог, можно просто все под .1. Если не получится, то .1.3.111.2.802.1.1.13, .1.0.8802.1.1.2, .1.3.6.1.2.1.2, .1.3.6.1.2.1.17.

P.S. Если возможно, то еще то, что сам коммутатор расказывает про LLDP через свой management interface.
#4777
General Support / Re: Configuration of Situation
February 01, 2013, 10:37:12 AM
Hi!

Yes, I got it. Sorry for not responding, I didn't have time yet to work on it. I hope I'll do that in a next few days.

Best regards,
Victor
#4778
Hi!

The correct way of adding Zest (and other dependencies) is via Help->Install Software and correct download site. There are file called eclipse_addons.txt where all necessary add-ons with appropriate download sites listed.

Best regards,
Victor
#4779
General Support / Re: upgrade 1.2.3 to 1.2.5
January 31, 2013, 06:05:09 PM
Hi!

You have some events with long messages, and they are getting truncated when inserted into database. In 1.2.6, limit for message length will be increased to 2000 characters (from current 255 characters), so most likely these errors will go away.

Best regards,
Victor
#4780
Тут скорее всего сложнее проблема. Если DCI есть, но стали UNSUPPORTED, это означает, что сервер больше не считает, что данный узел - это сам сервер. Скорее всего где-то в дереве появился его дубликат. Проверьте в Entire Network в соответствующем субнете. Если это так, то удалите неправильный узел и перезапустите сервер.
#4782
Думаю он там не был описан :)
#4783
Имеются ввиду predefined graphs? В них можно делать псевдо-папки, используя символы -> в названии. Например, если задать имя NetXMS->Internals->DB Writer Queue, то выглядеть это будет как на приложенном скриншоте.
#4784
Hi!

Are you building RCP (desktop) console or web console? Also, please show exact error message.

Best regards,
Victor
#4785
General Support / Re: Host name changes - not updating
January 30, 2013, 11:25:22 PM
Hi!

"system name" is just an attribute of the node, not the name of an object in NetXMS. If you want to keep node object's name consistent with "system name" property, you can implement simple configuration poll hook script, like this:


if (($node->snmpSysName != null) && ($node->snmpSysName != ""))
{
   RenameObject($node, $node->snmpSysName);
}


Put this script into script library under name Hook::ConfigurationPoll, and then nodes will be renamed when system name changes. Of course, you can add more complicated logic here.

Best regards,
Victor

P.S. More complicated hook script example: https://www.netxms.org/forum/general-support/how-use-configuration-poll-hook/msg8482/#msg8482