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

#1726
Судя по сообщению "Too many open files" - не хватает файловых дескрипторов. Какой стоит лимит сейчас? Возможно простои надо его увеличить. Если в сети много устройств то сервер может открывать много сокетов - лимит должен соответствовать.
#1727
General Support / Re: Installing NetXMS agent error
April 18, 2018, 03:48:40 PM
Turns out to be packaging error. We just updated packages on web site - please try to download again.

Best regards,
Victor
#1728
General Support / Re: Installing NetXMS agent error
April 18, 2018, 03:35:56 PM
Hi,

seems that agent was built against older OpenSSL version. If you can install some sort of compatibility package that will bring OpenSSL 0.9.8 to the system it will help. Otherwise please wait for release 2.2.5 - we will fix generic Linux agent packaging.

Best regards,
Victor
#1729
Hi,

could you export your dashboard configuration into XML and post it or just describe what elements are on those dashboards?

Best regards,
Victor
#1730
General Support / Re: Probleme DCI format sytax
April 13, 2018, 01:07:59 PM
Hi,

you should use %*s, not just %*.

Best regards,
Victor
#1731
Hi,

just sent contacts in private message.

Best regards,
Victor
#1732
Probably it's not documented, but list is quite short actually. You definitely need openssl, for SSH support you need libssh, libmosquitto for MQTT support, libcurl for Jira integration and some SMS drivers, and JDK for Java subagents.

Best regards,
Victor
#1733
Hi,

I overlook that you are trying to build server, not agent. Building server without encryption support is no longer supported. You should install openssl development package and re-run configure without options --disable-encryption and --without-openssl. We have updated configure scxript for next release so it will display meaningful error message in that case.

Best regards,
Victor
#1734
Next release will contain those fixes. I think we will make new release in a week or two.

Best regards,
Victor
#1735
Общие вопросы / Re: LogWatch bug
April 09, 2018, 12:45:49 PM
Попробуйте поставить в логе сортировку по event id.

В последней строке лога, которую не распознал агент, есть символ перевода строки?
#1736
Hi,

what version you are trying to build?

Best regards,
Victor
#1737
General Support / Re: Schedule Node Restart
April 09, 2018, 12:40:11 PM
Hi,

you can use function AgentExecuteAction to execute action on remote agent. So script which will cause remote node to restart will looks like this:


AgentExecuteAction($node, "System.Restart");


you can create scheduled task which will call this script.

Best regards,
Victor
#1738
Hi,

it turns out that System.Memory.Physical.Free actually returns amount of available memory (same as returned by System.Memory.Physical.Available). I changed it to return amount of free memory and also added support for System.Memory.Physical.Cached and System.Memory.Physical.CachedPerc parameters.

Best regards,
Victor
#1739
Hi,

didn't get to it yet. Will check it on my Windows systems later today.

Best regards,
Victor
#1740
I suppose you mean NXSL script? Then you can use function PostEvent (https://wiki.netxms.org/wiki/NXSL:PostEvent).

Best regards,
Victor