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

#1051
Hi,

currently not.  I think we will implement it though.

Best regards,
Victor
#1052
General Support / Re: Use Primary IP in DCI table
November 19, 2019, 10:55:20 PM
Hi,

you can create internal DCI for parameter "Dummy" and use transformation script like


return $node->ipAddr;


Best regards,
Victor
#1053
Это какой-то косяк в документации. Драйвер для Telegram войдет в релиз 3.1 (мы планируем на этой неделе сделать).
#1054
This looks like a bug in configure script - it is made with assumption that library files always installed under PCRE prefix /lib. Seems to not be the case on SUSE. I'll update configure script.

Best regards,
Victor
#1055
That means that libpcre was not properly built or installed. Are you sure that there were no compiltation or installation errors? What files are present in /opt/pcre/lib?

Best regards,
Victor
#1056
Very strange. Please show output of command

file /opt/pcre/lib/libpcre32.so*

and

ldd /opt/pcre/lib/libpcre32.so

Best regards,
Victor
#1057
Общие вопросы / Re: NetXMS FAQ/ЧаВо
November 14, 2019, 02:28:06 PM
Похоже что сервер застрял на опросе новых узлов. Какая версия NetXMS?
#1058
Quote from: deepjohnsea on November 13, 2019, 03:08:55 PM
1. Ваша система все больше и больше нравиться. Заменила многие отдельные приблуды и тулзы.
Но вот в процессе наведения порядка в сети потребовалось менять огромное количество описаний портов (они же Alias) и самих железок.
Есть ли какой либо легальны способ это сделать прямо из NetXMS.

Сейчас только из скриптов, используя функцию SNMPSet. По идее можно сделать object tool который запрашивает интерфейс и значение для alias и вызывает SNMPSet.

Quote from: deepjohnsea on November 13, 2019, 03:08:55 PM
2. Также почему то не на всем оборудовании отрабатывает получение списка MAC адресов (FDB). Абсолютно одинаковое оборудование (Cisco 2960) с одинаковой IOS, но на одном все великолепно на другом (Cannot get switch forwarding database). Может есть какие то условия для работы?

Сервер читает FDB используя .1.3.6.1.2.1.17.1.4.1.2, .1.3.6.1.2.1.17.7.1.2.2.1, и .1.3.6.1.2.1.17.4.3.1 - проверьте, что проблемное устройство возвращает на SNMP walk по этим OID.

Quote from: deepjohnsea on November 13, 2019, 03:08:55 PM
3. Нашли ошибку VLAN View. У наc есть две Cisco 3750 в кластере. Одна с Gi интерфейсами, а другая с Fa. Почему так - не спрашивайте.
Короче подсвечивает неправильно порты. На картинке, строчка выделена, и видно что нет порта Fa4/0/4/
Можете прислать скриншот закладки "Interfaces" для этого устройства?
#1059
А везде это где? У разных компонентов последнее число может различаться - например текущая версия консоли это 3.0.2329, сервера - 3.0.2357, а AIX агента - 3.0.2354. Начиная с версии 3.0 первые два числа обозначают версию продукта, а третье - patch release. Все компоненты с одинаковыми первыми двумя числами совместимы между собой. Если мы делаем патч, то обновляем только те компоненты, которые затронуты изменениями - и у них меняется третье число в номере версии.
#1060
General Support / Re: Find S/N and P/N on netxms
November 14, 2019, 02:14:08 PM
There is no standard way of getting this information. If device supports entity MIB then most likely you can get P/N and S/N from there. If not you should looks at vendor specific MIBs - many vendors do provide that information in their custom MIBs.

Best regards,
Victor
#1061
Please share your config.log.

Best regards,
Victor
#1062
General Support / Re: Netxms script filter for template
November 12, 2019, 02:52:16 PM
Hi,

problem is that name of those nodes does not starts with "cab", it is in the middle. If you want to match any node that contains cab it will be different:


return $node->name imatch ".*cab.*";


This will match any name with letter combination cab at any position using regular expression. If you want something more complex you can use more complex regular expression. Site https://regex101.com/ is a good resource for testing your expressions.

Best regards,
Victor
#1063
Yes, TimescaleDB could increase graphing speed. You have to experiment. If you have enough disk space you can do migration from one to another quite fast and check the difference.

Best regards,
Victor
#1064
General Support / Re: Netxms script filter for template
November 12, 2019, 11:34:46 AM
Hi,

you can try this script:


p = substr($node->name, 1, 3);
return (p == "cab") || (p == "CAB");


This will add nodes with names starting with CAB or cab (but not Cab or caB). If case is actually not important at all you can use simply


return $node->name ilike "CAB*";


Best regards,
Victor
#1065
Hi,

recommended database engines are PostgreSQL and TimescaleDB, depending on deployment size. For small deployments (few thousands of DCIs) you most likely won't get any significant performance gains. The larger your deployment is the more performance improvement you'll see.

Support for TimescaleDB in 2.2.17 was still experimental, and I would not recommend to do migration to TimescaleDB using 2.2.17. I would do as following:
1. Install new server and initialize TimescaleDB database
2. Upgrade old database to 3.0 using new nxdbmgr
3. Migrate old database to new one

We are planning to add in-place conversion from plain PostgreSQL to TimescaleDB but I'm not sure when it will be ready.

Best regards,
Victor