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

#1741
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
#1742
Hi,

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

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

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

Best regards,
Victor
#1744
Hi,

just sent contacts in private message.

Best regards,
Victor
#1745
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
#1746
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
#1747
Next release will contain those fixes. I think we will make new release in a week or two.

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

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

what version you are trying to build?

Best regards,
Victor
#1750
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
#1751
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
#1752
Hi,

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

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

Best regards,
Victor
#1755
You can use PING subagent and configure set of Icmp.Ping DCIs in the server, one for each host. You can use custom schedule to collect data once a day at 12:00, and configure threshold as necessary. Relevant part of the documentation: https://www.netxms.org/documentation/adminguide/icmp-ping.html

Best regards,
Victor