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

#376
Announcements / Re: NetXMS 5.0 released
June 17, 2024, 12:46:14 PM
Quote from: BigBlue on June 17, 2024, 12:44:21 PMHi,

When will version 5.0 be available for RHEL-compatible distributions ?

thanks a lot
Yes, there's a delay preparing the release
#377
Yes, definitely a bug
#378
Node for the management server should get automatically created when server is started. This node would have special attribute set, you can check it by running NXSL script:

println($node.isLocalManagement);

Based on the presence attribute out of the box templates would be applied.

The templates can be found here: https://github.com/netxms/netxms/tree/master/contrib/templates
Specifically these two files:

netxms_agent.xml
netxms_server.xml
#379
This feature was added, will be included in next patch release
#380
Do you use desktop client? Old or new?
What is ping time from client to the server?
#381
General Support / Re: Pop Out View doesn't work
June 05, 2024, 06:11:29 PM
This was fixed, fix will be in next patch release (should be out within a week or so).
Pls report, if you find similar issue with other things besides graphs.
#382
I mean that coordinates set in map properties correspond to what's in the upper left corner of the map. So e.g. if I take latitude 51°30'N and longitude 0, I'll have London in the corner of my map.
#383
I am not big expert in oracle stuff, but here's config that works for me (we can now use just subagent name withou .nsm, but it does not change anything):

SubAgent = oracle
[ORACLE]
ID = DB1
Name = //10.10.1.1/orcl.office.companyname.com
Username = user
Password = password

On 6-th level of debug the following lines are in agent log:

2024.05.29 12:19:33.495 *D* [db.drv.oracle      ] OCI version 19.9.0.0.0
2024.05.29 12:19:33.497 *D* [db.drv.oracle      ] OCI statement caching is ENABLED
2024.05.29 12:19:33.497 *I* [db.drv            ] Database driver "oracle.ddr" loaded and initialized successfully
2024.05.29 12:19:33.498 *D* [oracle            ] ORACLE: poller thread for database oracle started
2024.05.29 12:19:33.498 *I* [subagents          ] Subagent "ORACLE" (/opt/netxms-master/lib/netxms/oracle.nsm) loaded successfully (version 5.0.0-rc141)
2024.05.29 12:19:33.605 *D* [db.drv.oracle      ] Connected to Oracle Database 12c Standard Edition Release 12.1.0.2.0 - 64bit Production
2024.05.29 12:19:33.605 *D* [db.conn            ] New DB connection opened: handle=0x7f083c08b100
2024.05.29 12:19:33.605 *D* [db.query          ] DB Library: long running query threshold for session 0x7f083c08b100 set to 5000
2024.05.29 12:19:33.610 *I* [oracle            ] Connection with database oracle restored (version 12.1, connection TTL 3600)

What it's saying for you in the line with db.drv.oracle tag?
#384
Map coordinates are set on the upper left corner (this may change in the future, but that's how it currently is).

Geographical map acts only as a backdrop on network maps, there is no link with object geographical coordinates. There were thoughts to introduce network map type that would use objects coordinates, but we are not there yet.

There is, however a way to view devices positioned on a map - it's Tools->World map, or on devices which have geolocation entered there's Geolocation tab.
#385
UI is a bit unclear, just enter 28 in the network mask field
#386
Quote from: gillesvilleneuve on May 23, 2024, 11:15:04 AMThe problem is present if I use: display objects as Small Labels, not present if i use display objects as Icons

Thanks for the info, now we've managed to replicate this. 
#387
String functions were deprecated, now string methods should be used:

a = "abc";
b = a.right(2);
println(b);

Documentation should be up to date: https://www.netxms.org/documentation/nxsl-latest/#class-string
#388
you can turn on sql trace for some time, from linux command line

nxadm -c "debug sql on"
and
nxadm -c "debug sql off"
afterwards.

This will turn on detailed sql query logging, log will be huge, but there will be more detailed information.

object_properties table is updated when objects are updated (renamed, custom attributes changed, etc). Changes are saved into db once per minute.

#389
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.
#390
General Support / Re: NXSL Changes
May 10, 2024, 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