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

#2806
General Support / Re: Broken icons after opening
November 17, 2015, 03:09:25 PM
Hi,

it's a known bug in image library. It is in the queue and will be fixed eventually.

Best regards,
Victor
#2807
Hi,

it requires changes in how Windows agent reads list of installed software. I'll try to fix that before 2.0 release.

Best regards,
Victor
#2808
Try to change poll count (set it to 2 or higher).

Best regards,
Victor
#2809
General Support / Re: DCI Select button empty list
November 15, 2015, 07:58:21 PM
Hi,

try to run configuration poll on node with empty list (Poll -> Configuration from node context menu) and try selection again. You can also check configuration poll output for possible errors.

Best regards,
Victor
#2810
В релизе будет sysDescription, как и было. Если надо починить текущую инсталляцию, то в файле src/server/core/nxsl_classes.cpp замените "snmpSysDescription" на "sysDescription" и пересоберите сервер.
#2811
Такие сообшения обычно говорят о внутренних блокировках которые по каким-то причинам висят продолжительное время. С производительностью базы нет проблем? Попробуйте поднять уровень дебага до 6 - будет больше информации в логе.
#2812
Похоже на баг. Это веб консоль или десктоп? Какая ОС (и браузер если это веб)?
#2813
Это баг - не подумав переименовали атрибут. В транке вернули уже обратно. Систему с исходников собирали?
#2814
А как это событие SYS_IF_VLAN_DOWN создается?
#2815
General Support / Re: Windows EventLog parsing questions
November 12, 2015, 06:12:33 PM
It works on all my (very limited) set of Windows systems (test it on Win XP, Win 7, and Win 10). Do you have it working on at least one system?

Best regards,
Victor
#2816
Hi,

agent should determine counter type and collect it correctly. Can you show your DCI configuration?

Best regards,
Victor
#2817
Yes, this is tricky part - you cannot test threshold by changing it. When you edit threshold internally it leads to deleting old one and adding new one - and new threshold do not have "activated" state, so no deactivation event. For testing thresholds you can use transformation script on DCI which you can change to return value above or below threshold.

Best regards,
Victor
#2818
General Support / Re: World Map
November 11, 2015, 02:18:21 PM
Not yet, but it is in a plans.

Best regards,
Victor
#2819
General Support / Re: SNMPV3
November 11, 2015, 02:17:00 PM
Hi,

it could be a bug in NetXMS SNMP library. Is it possibe to get access over SNMP to your switch so we can test and fix it? Please send me private message if that's possible.

Best regards,
Victor
#2820
Quote from: hsvt on November 10, 2015, 03:52:48 PM
А пример фильтрации в EPP можете привести ?

Вроде про hook скрипты шла речь? Скрипт из примера можно модифицировать так:


if ($node->snmpOID ~= "^.1.3.6.1.4.1.X")
{
foreach(int : GetNodeInterfaces($node))
{
if ((int->name ~= "^eth[0-9]*\.") && (GetCustomAttribute(int, "ImportantInterface") != "yes"))
{
                     // do what is needed
        }
}
}


Не будут обрабатываться интерфейсы у которых custom attribute ImportantInterface выставлен в yes.

Quote from: hsvt on November 10, 2015, 03:52:48 PM
И правильно ли я понимаю, если мне нужно для этой же группы серверов и клиентских интерфейсов сделать SYS_IF_DOWN с severity Normal, я создал еще одно EPP и поместил туда группу этих серверов (в Source Object) ну и далее Alarm Severity Normal, но как правильно сделать чтобы не пересекалось с основным EPP ?

Есть два варианта - либо в основном правиле добавить исключение для контейнера (добавить контейнер в список source и поставить negate), либо в первом правиле (для контейнера) добавить "stop processing" - тогда обработка события для этого контейнера будет остановлена на этом правиле.