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 - uldis

#31
Hi, Tomcat 10 is incompatible, please try version 9 and let us know if any further issues observed. 
#32
General Support / Re: Windows events not sync
October 03, 2024, 08:01:18 AM
Hi there, we have replicated this issue and team will work to provide a fix. Thank you for your contribution.
#33
Hi there, we have replicated this issue and team will work to provide a fix. Thank you for your contribution.
#34
Thank you for your feedback.
#35
Just to clarify - for reporting server java should be 11 or higher.
#36
Hi there, we have just tried 5.0.8 server install on Windows and nxreportd is working OK. Please let us know what java version you are running and kindly cross check your About info with attached.
#37
Этот запрос, кажется, был рассмотрен в параллельном посте

https://www.netxms.org/forum/oe-oo/zapusk-skripta-versiya-4-5-6/
#38
дефолтные настройки изменить нельзя, так как они жестко закодированы. Есть  Hook::ConfigurationPoll скрипт где вы можете добавить следующее

if (classof($object) == "Node") {
  $node->enableConfigurationPolling(false);
}

Первый раз после создания noda будет запущен Configurstion poll, а затем он будет отключен.
#39
Coming back to this issue, would you have any more feedback for us, please? Did you try disabling DHCP? We had a look at our test setup and found similar pattern of events as you posted on 11.09.24. We checked remote node in question and could see server reboot and link fluctuations, so the events were reflecting server NOK status. We dont see any pattern that would indicate any generic issues with the product. Please also try to check remote node messages file for timeframe in question.
#40
General Support / Re: Threshold Question
September 26, 2024, 04:19:08 PM
Sure, welcome. Thank you for your feedback.
#41
Hi, we have checked .jar client on Ubuntu and Redhat and those seem to match maps text colour in the standard client for Windows; all those are black. Could you please let us know what flavor Linux you are using and which client version? Does Restore Defaults button help at all?
#42
General Support / Re: Thresholds on table metrics
September 26, 2024, 03:47:57 PM
Hi, thank you for your feedback

https://track.radensolutions.com/issue/NX-2600 has been created for this.
#43
Hi, here would be example from documentation and the script needs to be executed on the node where agent with "EnableWebServiceProxy=yes" is running.


webSvc = $node.getWebService("web_service_definition_name");
result = webSvc.get();
println(result.httpResponseCode);
println(result.document);


If this agent is on your NetXMS server node, you can use GetServerNode() instead of $node, this way you can run this script in context on any node.

#44
Нам нужно будет использовать метод readAgentParameter, чтобы получить значение, например, так:

v = readAgentParameter( 'PDH.CounterValue("\SQLServer:Databases(' .. $1 .. )'\Data File(s) Size (KB)",0)' );
if (v > 1000000000) return true; else return false;


UPD: на самом деле так:

v = readAgentParameter( 'PDH.CounterValue("\SQLServer:Databases(' .. $1 .. ')\Data File(s) Size (KB)",0)' );
if (v > 1000000000) return true; else return false;
#45
Hi Auguste
Just further on my colleagues feedback above - those " call to curl_easy_perform failed (28: Operation timed" error messages seem to be pretty notorious for resolving and there are several steps suggested, very much trial and error approach. Is there a firewall of any kind between netxms server and your mail server or on either of node themselves? If yes, please try to disable it and perform a new test. If it still fails then you may wish to set up concurrent tcpdump on server and also on mail server, then perform another test and see with Wireshark if any packets are reaching and where the delay is.