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

#31
What is your NetXMS Server version exactly?
Can you show reporting server log for the moment when - if you are on Linux, this command will show it
journalctl -u netxms-reporting.service
Also note, that if you changed some parameters in SMTP-Text notification channel properties you need to restart reporting server for the changes to have effect
#32
General Support / Re: NetXMS v6.1.1 - WebUI Problems
April 27, 2026, 12:45:16 PM
Your server is v. 6.1.1, but web UI still stays on 6.0.x.

Have you replaced the .war file in Tomcat/Jetty with the new one (https://netxms.com/download/releases/6.1/nxmc-6.1.1.war)?

If yes, sometimes Tomcat/Jetty is hesitant with switching to new file, try removing .war file, restarting Tomcat/Jetty, putting .war file and restarting again.
#33
Database query planning is a separate mystery on its own. Anyways, developers restored additional index as it was before v. 6.0, that will be included in next patch release.
#34
Еще одной штуки не хватает, когда этот тикет закроется тогда можно будет прикручивать:
https://github.com/netxms/netxms/issues/3199
#35
А как сконфигурированы прокси - они прописаны в свойствах ноды, или ноды в удаленных офисах выделены в зоны? Если второе, то прокси тоже нужно поставить тоже в эти зоны.
#36
Да, сейчас мы читаем только нормализованное значение, а нужны raw. Сделал тикет: https://github.com/netxms/netxms/issues/3199
#37
General Support / Re: Database Upgrade Fails
April 22, 2026, 11:25:59 AM
raw_dci_values table is just a cache of most recent DCI values. You can just truncate it and proceed with the upgrade:

TRUNCATE TABLE raw_dci_values;
#38
Possible case could be a locking of some server thread. You can capture server threads when you see delays in working with the server from the GUI, here's the script: https://github.com/netxms/netxms/blob/master/tools/capture_netxmsd_threads.sh
Script should be executed 3 times with 20-30 second interval. It needs gdb and netxms-dbg packages installed on the system.

Also to check - on netxms server node there should be Server: Number of Processed Events (based on internal Server.TotalEventsProcessed metric) - just to verify that there we no sudden spikes in event quantity.
In overall there's quite a few metrics there, e.g. Server QueueSize ones, it's worth checking them for any big spikes.
If you don't have Server.ImportConfigurationOnStartup set to Always, you might not have the most recent template with above mentioned DCIs, you may want to import them from /usr/share/netxms/templates/netxms_server.xml
#39
Hi,

Please show value of
DefaultNotificationChannel.SMTP.Text
from Configuration->Server Configuration.

If above is set to "SMTP-Text", pls show configuration of SMTP-Text notification channel. If above is set to something else, pls show configuration of that notification channel.

#40
Can you show a screenshot to understand what exactly is in which language?
#41
Pls show output of the following from debug console:

sh st
sh th
sh qu

What are the overall specs of the server? What are CPU and memory for a few days?
#42
I've created a ticket for this: https://github.com/netxms/netxms/issues/3195
#43
This should be fixed in the current version
#44
Sorry, this was overlooked for a while. First guess is that there are some issues with syncer thread. It's not visible in show threads, as there's just one syncer threads. In debug console there's

netxmsd: sh sy
Last run at .........: 16.Apr.2026 15:22:58
Last run time .......: 1 ms
Average run time ....: 119 ms
Max run time ........: 132 ms
Min run time ........: 0 ms

And System -> NetXMS Server -> Server Performance has metrics for it, specifically Server.SyncerRunTime.Last. Pls check if this metric looks reasonable.

Slow log opening might indicate problems with DB performance, DB might need tuning. What are the specs on DB VM, is it dedicated to NetXMS or a shared database? How's CPU consumption and IO stats? How big is the database on disk?
You can also use mysql subagent to collect stats about DB operation - https://netxms.org/documentation/adminguide/database-monitoring.html#mysql
#45
General Support / Re: Database Upgrade Fails
April 16, 2026, 03:11:44 PM
Which database you are using?