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

#1216
Попробуйте зайти пользователем system - возможно он увидит этот шаблон.
#1217
General Support / Re: Timescale DB
August 24, 2019, 09:00:41 PM
Just want to node that TimescaleDB support in 3.0 is much better then in 2.2.16, and schema is slightly different (including chunk intervals).

Best regards,
Victor
#1218
Сейчас такой возможности нет. Просто горизонтальную линию можно сделать, создав DCI с источником Internal и в трансформации написав

return 123;

вместо 123 подставить нужную константу, и добавить этот DCI на график.
#1219
Похоже на следы древних системных шаблонов. Если смотреть data collection configuration для ноды, у этих параметров что-то есть в колонке Template?
#1220
Можно сделать через Tools -> Find Object. Если выбрать режим Query, то там пишется NXSL скрипт, причем все параметры каждого проверяемого объекта доступны напрямую, без $object->. Например, все SNMP + CDP ноды можно найти таким запросом:


type == NODE and isSNMP and isCDP


все SNMP + LLDP:

type == NODE and isSNMP and isLLDP


все ноды с текстом "Cisco" в SNMP sysDescription:

type == NODE and sysDescription match ".*Cisco.*"

#1221
Общие вопросы / Re: NetXMS FAQ/ЧаВо
August 24, 2019, 08:49:18 PM
Только в виде событий NetXMS для отработавших правил - синхронизации лог файлов нет.
#1222
In NXSL script you can use $dci->instance (or $dci->instanceData depending on your configuration) to get instance value.

Best regards,
Victor
#1223
Hi,

you can execute two actions for sending emails - one immediately, and one with specific timer and key (set to delay when you want your reminder). With SYS_NODE_UP event you can cancel that timer. If SYS_NODE_UP happens before timer expires then second email will not be sent.

Best regards,
Victor
#1224
Yes, NetXMS uses explicit cutoff points for dropping chunks. But please note that TimescaleDB support in 2.2.16 is quite immature - we have improved it significantly in 3.0 branch.

Best regards,
Victor
#1225
General Support / Re: how to monitor bandwidth
August 20, 2019, 03:54:50 PM
Hi,

you have to provide actual configuration for those DCIs and information about node you are collecting them from - otherwise it's hard to tell what goes wrong.

Best regards,
Victor
#1226
Hi,

interface alias is not passed to SYS_IF_DOWN. You can create script in script library called GetInterfaceAlias with the following code:

return GetInterfaceObject($node, $event->parameters[5])->alias;


and then use macro %[GetInterfaceAlias] in message text.

Best regards,
Victor
#1227
Очень странно. Можно смотреть что в логах сервера на высоком уровне дебага, 5 и выше. Возможно у второго сервера где-то нет доступа или не прописаны community strings.
#1228
Правый клик на линке - Properties - Data Sources - Add - Добавляем DCI с нужных нод. Если помимо значения надо вывести текст, то в свойствах конкретного data source можно вписать свой format string (значение подставить как %s или %*s если ножна конвертация в K/М/G).
#1229
Да, конечно исправим.
#1230
Hi,

this is bug in agent cache mode - agent ignores custom schedule and use fixed collection interval. We will fix that.

Best regards,
Victor