Recent posts

#1
General Support / Re: new desktop client - unbou...
Last post by Filipp Sudanov - Today at 08:47:24 PM
Not sure why this is happening. Can you run the script I've shared manually (via Execute Script from context menu) on a couple of nodes which we bound to that container, but should not and share the output.
#2
General Support / Re: NXSL Changes
Last post by Filipp Sudanov - Today at 08:25:43 PM
Should now be:
if (($node.snmpSysName != "") and ($node.snmpSysName !=null))
{
  $node.rename($node->snmpSysName);
}


https://www.netxms.org/documentation/nxsl-latest/#_instance_methods_14

#3
General Support / Re: Monitoring gpu on windows
Last post by Filipp Sudanov - Today at 07:49:34 PM
We do not have any out of the box metrics, but if you find any command line utility that is able to get this data, you can add external metric for that.
#4
General Support / Re: Client Reconnect
Last post by Filipp Sudanov - Today at 07:46:47 PM
There's parameter Server.Security.2FA.TrustedDeviceTTL in Configuration->Server configuration, it's time in seconds
#5
General Support / Re: Netxms Server 5.0.2 instal...
Last post by Filipp Sudanov - Today at 06:49:30 PM
Please check again, this should be now fixed
#6
General Support / Re: snmpOID is no longer retur...
Last post by Filipp Sudanov - Today at 03:16:00 PM
NXSL functions accept OIDs both with and without the leading dot. Returned values are without the dot. So both of below lines will print "System description: 1.3.6.1.4.1.14988.1"

println("System description: " .. $node.createSNMPTransport()?.getValue(".1.3.6.1.2.1.1.2.0") );
println("System description: " .. $node.createSNMPTransport()?.getValue("1.3.6.1.2.1.1.2.0") );


?. is safe dereference which appeared in 5.0 - should createSNMPTransport() return null, this will not produce script error.
#7
General Support / Re: networkmaps backgroundimge...
Last post by Filipp Sudanov - Today at 03:05:48 PM
We will discuss internally, if background image size can be considering when opening map.

As for now, if size in map properties is 0, 0 then default values are taken from server configuration settings Objects.NetworkMaps.DefaultHeight (or ...Width), or coordinates of farthest objects are taken as size, if they are bigger then default values. So you can increase these default values to the size of your biggest background image.

Also, there's a difference between desktop and web version - in the latter background image is not cropped to map size.

#8
Announcements / Re: NetXMS 5.0 released
Last post by Filipp Sudanov - Today at 02:30:24 PM
We just found a bug in DCI loading from database, they could be randomly marked as "anomaly detected". Next patch release will contain fix for that
#9
Announcements / Re: NetXMS 5.0 released
Last post by Egert143 - Today at 12:41:45 PM
when i create new node with fresh dci-s then they appears normal again.
#10
Announcements / Re: NetXMS 5.0 released
Last post by Filipp Sudanov - Today at 12:24:53 PM
Quote from: Egert143 on May 08, 2024, 11:12:57 AMWhat do the yellow DCI mean? they collect data but are yellow.
Might be a bug. Can you share a screenshot of this?