News:

We really need your input in this questionnaire

Main Menu
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

#1351
How did you compile netxms - can you show config.log file? Can you show the output of yum list installed
#1352
General Support / Re: Network map - L2 layout changes
August 05, 2020, 01:13:33 PM
To search by ID you can use filter in object tree and type object id prepended by #, e.g. #258
#1353
General Support / Re: Building NetXMS Console
August 04, 2020, 04:18:21 PM
There should be no difference in maven or java vs openjdk.
#1354
Also - 3.4.284 is now available, it has a fix for one error that was also related to not displaying historic data, could be that it's the same error here. Please try this new version.
#1355
General Support / Re: Building NetXMS Console
August 03, 2020, 12:40:09 PM
Hi!

Management console build is currently done using maven. Eclipse is used for running console during development, but not for preparing builds.
The following commands should be run in project's folder to build desktop version:

export PATH=/opt/apache-maven-3.6.2/bin:$PATH

jenv local 11.0                                                                             

mvn -f src/java/netxms-eclipse/pom.xml -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:update-pom -Pconsole

mvn -f src/java/netxms-eclipse/pom.xml clean package -Pconsole -Dtycho.disableP2Mirrors=true

Builds will be in src/java/netxms-eclipse/Product/target/products/
#1356
This looks to be very strange. I would suggest to turn on debugging from the database side to see what exactly queries are generated when you request history / graph from the front-end. And then checking if such a query really returns any data.
Also, if it's fine for you to recreate the database you can try to move to Postgres - it's generally more tested because more netxms users are using it.
#1357
The issue regarding "This DCI was added by instance ...." should have been fixed in current development branch and will be included in next patch release. The message is informative only so it does not affect functionality.
#1358
Right, currently the installed files are in several other places.

Please add --prefix=/opt/netxms to ./configure command, run ./configure ...., make and make install and send the contents of /opt/netxms folder


UPD: or if you have not done the above yet, please just send the contents of the following folders from your system.
/usr/local/bin
/usr/local/lib
#1359
General Support / Re: Language setting in web gui
July 08, 2020, 05:52:22 PM
The menu should be available on the login page.
#1360
The thing is, that empty custom attribute is converted into integer and turns into 0.
Not sure when there were changes in this. But current behavior is actually correct one - if custom attribute exists, but is empty, we treat it as existing and do not apply the default value for threshold. For numeric threshold empty value is converted into 0.
#1361
We also need exact binaries how they got compiled on your system. Please provide an archive of netxms/bin and netxms/lib folders.
#1362
General Support / Re: Connection Refused
July 08, 2020, 02:31:40 PM
#1363
General Support / Re: Connection Refused
July 07, 2020, 06:27:58 PM
what about netxmsd service? what is the output of
systemctl status netxmsd
?
#1364
As for max_locks_per_transaction - I would first check general postgres parameters, first of all probably shared_buffer.
Out of the box Postgres settings are very conservative.
See e.g. https://www.percona.com/blog/2018/08/31/tuning-postgresql-database-parameters-to-optimize-performance/
#1365
Can you connect to postgres and show output of these queries:

EXPLAIN ANALYZE SELECT max(event_id) FROM event_log

EXPLAIN ANALYZE SELECT max(alarm_id) FROM alarms