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

#1666
Just notice that you probably want to get available RAM, not free RAM. Are you using System.Memory.Physical.Available or System.Memory.Physical.Free? Available memory includes for example cache pages that can be freed.

Best regards,
Victor
#1667
Hi,

seems to be an issue that was solved in one of recent upgrades. Try to upgrade agent to version 2.2.6 (it will work with older server).

Best regards,
Victor
#1668
Hi,

that's an inconsistency in API - you should set all status calculation and propagation properties when modifying any of them. So in your case you have to call on md object: setStatusPropagationMethod, setFixedPropagatedStatus, setStatusShift, setStatusTransformation, setStatusSingleThreshold, setStatusThresholds. You can just pass values from appropriate getters on mdgr object.

Best regards,
Victor
#1669
Hi,

try to check trusted nodes settings in server configuration and turn off "check trusted nodes" if it is on. This is likely issue for sources DCIs not working.

Best regards,
Victor
#1670
General Support / Re: OID UNSUPPORTED
June 11, 2018, 12:16:57 PM
Just a hint - to simplify DCI creation from OIDs and avoid mistakes, you can right-click on walk result and select "Create DCI".

Best regards,
Victor
#1671
General Support / Re: Dashboard
June 11, 2018, 12:16:03 PM
Hi,

currently it's not possible.

Best regards,
Victor
#1672
Попробовал поворить у себя - все работает как надо. У меня MariaDB 10.1.26, база в utf-8, клиенты libmysqlclient 5.7.22 и libmariadb 2.0.0. Все на Линуксе. Какая у вас версия сервера и клиента?
#1673
General Support / Re: WebAPI Struggles
June 11, 2018, 11:18:17 AM
Hi,

you should turn on both "Basic Auth" and "With Credentials".

Best regards,
Victor
#1674
Hi,

it could be firewall issue or general network connectivity issue.

Best regards,
Victor
#1675
Могли бы скопировать DCI в отдельный шаблон и прислать экспорт этого шаблона?
#1676
Покажите полный скрипт пожалуйста. Ну и writeLine - это метод объекта "файл", а не глобальная функция, т.е. вызывать надо как метод объекта:


file = OpenFile("myfile.txt");
file->writeLine("something");

#1677
Похоже что к моменту попаданию в transformation script некоторые байты уже могут быть испорчены попыткой перевести полученный OCTET STRING в Unicode строку используя текущий code page. В 2.2.7 мы добавили опцию для колонки в SNMP таблице - "convert value to hexadecimal string" - это должно решить проблему.
#1678
General Support / Re: agent subagents
May 31, 2018, 08:37:37 AM
Hi!

1. Almost complete subagent list is here: https://www.netxms.org/documentation/adminguide/agent-management.html#subagents - but still it missing some. I will ask to update that part of manual.

2. Not all subagents have checkboxes in Windows installer - just because it was not updated so often. They all installed anyway, the only thing those checkboxes do is to add SubAgent = name line to generated nxagentd.conf. You still can edit agent configuration after installation and load necessary subagents. As for vmgr, it is not available on Windows yet.

3. You mean installer command line options? It used to be there, but seems to get lost while moving from wiki to manual. I'll ask to update documentation.

Best regards,
Victor
#1679
Hi,

just one addition - check for "NetObj" class here:

else if (classof(o) == "NetObj")

is unnecessary - GetObjectChildren will only return objects of class NetObj and derivatives. Even more, that way you may miss some nodes on next levels, for example if you have cluster object - then it's class will be "Cluster", not a "NetObj". Simple "else" is enough here.

Best regards,
Victor
#1680
Announcements / NetXMS 2.2.6 released
May 24, 2018, 11:56:17 AM
Hi all!

NetXMS version 2.2.6 is released. It is patch release for 2.2.5 that fixes few important issues. It also adds NXSL based queries in object finder and allows fine tuning of filter behavior in object browser (issue NX-1395).

Best regards,
Victor