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 - Filipp Sudanov

#391
General Support / Re: Monitoring gpu on windows
May 10, 2024, 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.
#392
General Support / Re: Client Reconnect
May 10, 2024, 07:46:47 PM
There's parameter Server.Security.2FA.TrustedDeviceTTL in Configuration->Server configuration, it's time in seconds
#393
Please check again, this should be now fixed
#394
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.
#395
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.

#396
Announcements / Re: NetXMS 5.0 released
May 10, 2024, 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
#397
Announcements / Re: NetXMS 5.0 released
May 10, 2024, 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?
#398
Announcements / Re: NetXMS 5.0 released
May 10, 2024, 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
#399
This is intended change. We keep list of breaking changes in the documentation, it's worth checking prior to upgrade:
https://www.netxms.org/documentation/adminguide/installation.html#major-changes-between-releases
#400
If these are out-of-the-box templates, you can re-import them via Configuration -> Import configuration. Template files are here: https://github.com/netxms/netxms/tree/master/contrib/templates
#401
It's planned to fix this so that if object is present somewhere else (e.g. under subnet tree) it won't be displayed in the root. But in cases when user does not has access to any container/subnet containing a node, but has access rights to the node itself, it would be display in the the root.

Currently you can have "Unbound stuff" container somewhere with this auto-bind script, it will pick objects that are not present in any other containers:

for(p : $object.parents) {
  println(classof(p));
  if ((classof(p) == "Container") and p.id != $container.id) return false;
}
return true;
#402
General Support / Re: 5.0 Install
May 03, 2024, 09:08:11 AM
Also, there's no more need to use nxmibc as there's interface for adding mib files via the client (Configuration -> SNMP MIB Files)
#403
Announcements / Re: NetXMS 5.0 released
May 03, 2024, 09:01:02 AM
Still free, why did you get this feeling?
#404
This feature might not have been transferred from the old client to the new one. Will be fixed.
#405
You can check raw values in history of a DCI and do the calculation manually, but I am afraid that's just the data that this switch provides.