Recent posts

#1
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.
#2
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.

#3
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
#4
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.
#5
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?
#6
General Support / Re: snmpOID is no longer retur...
Last post by gkaudewitz - Today at 12:12:43 PM
Does this mean, that using OIDs in SNMP-requests as functionparameter also have to be done without leading "."?

What is the behavior if result of a SNMP-request is an OID itsself? Is this value returned without leading "."?
#7
Announcements / Re: NetXMS 5.0 released
Last post by Filipp Sudanov - Today at 11:28:10 AM
Quote from: Egert143 on May 08, 2024, 11:12:57 AMalso script says function "CreateSNMPTransport" and "SNMPGetValue" are deprecated, what are replacements?
We are moving from functions to object methods wherever possible, check this example in the docs:
https://www.netxms.org/documentation/nxsl-latest/#_read_snmp_value_from_node
#8
General Support / Netxms Server 5.0.2 install on...
Last post by lpolstor - Today at 11:10:28 AM
.. sadly fails for me, as the netxms-server and netxms-dbdrv-pgsql packages could not be found.
Upon inspection of  Index of /ubuntu/pool/noble/main/ (netxms.org) it is missing some directories compared with what exists for example jammy, most importantly the ./n directory where those packages would be found.

The Release files for Noble differs quite alot from the ones for Jammy, What am I missing here?


Lars Petter
#9
General Support / Client Reconnect
Last post by richard21 - Today at 10:43:23 AM
I have upgraded to version 5.0.2
Is there any way of handling MFA when the client reconnect due to network drop?
Currently I get the reconnecting message then MFA is required and have to close and re open the client

something like a  local keepalive token that has a xx seconds expiry that is used on reconnect and verified by the server to eliminate the need for MFA challenge on reconnect
#10
General Support / Re: Bulk DCI removal
Last post by woodrivercontrols - Today at 09:49:17 AM
Thank you, I was able to use this to filter through all my devices and clear out the DCIs that were duplicated.