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

#4936
Т.е. остался аларм? А как выглядит event processing policy?
#4937
Пока нельзя такое сделать. Я очень давно собираюсь реализовать возможность поместить несколько значений на один график в Performance Tab, все никак руки не доходят :( Постараюсь в 1.2.5 сделать.
#4938
Вообще-то поля NXCObjectModificationData напрямую изменять нельзя. Они все обьявлены как private, я так понимаю что Groovy это просто игнорирует (а зря!). Что касается комментариев, то это исключение (так исторически сложилось), и через modifyObject поменять их нельзя. Правильный код для изменения комментария:



NXCSession session = new NXCSession("server", "login", "password");
session.connect();

session.updateObjectComments(2081, "ABC");

session.disconnect()

#4939
Feature Requests / Re: Java Console - Opening
November 11, 2012, 03:32:54 PM
Hi!

I have changed object browser and object details view to remember currently selected object. It's still not perfect in object browser - it remembers object selection, but not exact path in the tree - if node is in different containers for example, it can select same node, but under different container. I'll take a closer look at this problem later.

Best regards,
Victor
#4940
Feature Requests / Re: mssql subagent
November 11, 2012, 12:58:07 PM
Hi!

For MS SQL you should be able to get almost anything via Windows Performance Counters. So probably WindPerf subagent should be enough.

Best regards,
Victor
#4941
General Support / Re: active discovery targets ignored?
November 09, 2012, 11:50:19 PM
Hi!

Just checked it. Yes, there are flaw in the logic - for each new IP address found server first collect all possible information (thus SNMP packets being sent), and only after that checks the filter. So nodes outside given IP range is not added to database, but still scanned. This behavior comes from the days when there was only custom script filters - for such filters it was not possible for server to know what information will be required by filter to made a decision. For automatic filters it is possible to made a decision early. I have added this as feature request for 1.2.5: https://www.radensolutions.com/chiliproject/issues/178.

Best regards,
Victor
#4942
Hello!

Eclipse RAP and Eclipse RCP are not 100% compatible on source code level. Although most of the RCP code can be compiled for RAP without changes, there are always some code that has to be changes in RAP version. It is theoretically possible to move code which is different in RCP and RAP to plugin fragments and keep single core codebase. But I decide that it is much easier to have separate source trees for RCP and RAP version of the console, and merge them as necessary. My usual development pattern is to make changes in RCP version and then merge these changes into RAP version (usually with svn merge). I also have two different Eclipse instances for RCP and RAP development. And we are still using Eclipse Indigo for RCP version.

Best regards,
Victor

#4943
Проблема с переводом названий каунтеров:

[08-Nov-2012 14:29:38] WINPERF: Counter translated: \LogicalDisk(C:)\Current Disk Queue Length ==> \Logic?(C:)\??????? ?
???? ??????? ?????
[08-Nov-2012 14:29:38] CheckCounter: PDH Error C0000BB8 in call to PdhAddCounter (????????? ??????? ?? ??????? ?? ???? ?
?????????.)

Начиная с версии 1.2.3 агенты для Windows собраны в UNICODE. Попробуйте поставить 1.2.2 - если он заработает, значит проблема именно с UNICODE связана.
#4944
Hi!

Key question here is how you determine if node is in a failed state. After that you can do some combination of internal DCIs and custom attributes to do calculations.

Best regards,
Victor
#4945
General Support / Re: SMS access denied
November 08, 2012, 02:18:59 PM
Hi!

You have to set server configuration's variable AllowDirectSMS to 1, otherwise server will only allow SMS sending through event processing policy.

Best regards,
Victor
#4946
Quite strange. Can you please send me full content of config and metadata tables?

Best regards,
Victor
#4947
Эти параметры предоставляются субагентом WINPERF. Проверьте что в конфиге агента есть строчка

SubAgent = winperf.nsm

Также поставьте логирование в файл, например так:

LogFile = C:\TEMP\nxagentd.log

и запустите агента с командной строки в дебаг режиме:

nxagentd -D 9

смотрите, не будет ли ошибок при инизиализации.
#4948
Hi!

Try to compile without UNICODE support.

Best regards,
Victor
#4949
Похоже что на каком-то обьекте остается блокировка. А можно прислать лог с момента старта сервера до зависания сессии (можно на [email protected])?
#4950
В скрипты, вызываемые через %[], параметры передать нельзя. Но скрипт, вызванный таким образом, получает те-же переменные, что и скрипт в Event Processing Policy - $node, $event, и параметры события в $1, $2, и т.д.