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

#346
Есть событие SYS_NODE_ADDED. Если нода найдена через Network Discovery то это событие генерится после того, как произошел configuration poll и нода уже добавлена под объекты подсетей.
И тогда в EPP в правиле для этого события можно поставить filtering script

subnets = [];
for (p : $node.parents) if (classof(p) == "Subnet") subnets.append(p.name);
$event.addParameter("subnets", subnets.join(", "));

return true;

и скрипт добавит в событие еще один параметр, который потом можно достать макросом %<subnets>
#347
General Support / Re: Event Processing stops
March 17, 2025, 04:53:54 PM
Hi,
Yes, I see the files. Sorry, can you please install netxms-dbg package on the system and capture and upload file again?

Also please provide the following:
What version of NetXMS are you using?
What is the value of Events.Processor.PoolSize in Configuration->Server Configuration?
#348
Hi,

This is done using instance discovery mechanism. NetXMS has templates for systems where you can install NetXMS agent and not so many templates for SNMP devices (there's a lot of different devices providing data on various OIDs, so typically people make templates for devices that they have in their network).
E.g. for some Cisco devices fan information table is 1.3.6.1.4.1.9.9.13.1.4, where fan names are in 1.3.6.1.4.1.9.9.13.1.4.1.2. This oid is specified on Instance Discovery page of DCI properties.

Then on the General page we can use indices found by instance discovery - they are now in {instance} macro.



#349
General Support / Re: Event Processing stops
March 13, 2025, 12:42:54 AM
I've sent a link in private message
#350
Can you give some insight in your use case, why a folder is needed? By the way, you can have several certs in one file.

Providing a folder is supported, but the folder should prepared in a way that openssl library needs. On Linux this is done with symlinks named by cert hashes, you can find some details in comment under that question: https://unix.stackexchange.com/questions/688608/is-it-possible-to-install-a-custom-ca-certificate-without-the-ca-certificates-pa
#351
General Support / Re: WAR file
March 03, 2025, 05:10:12 PM
tomcat10 is not supported, they switched to servlet-api version 5, which is completely defferent and not supported by Eclipse RAP framework (we use it for webui).

You can try to use tomcat9, if it's available on Debian, or there's standalone web launcher base on jetty10 here: https://github.com/netxms/nxmc-web-launcher
#352
General Support / Re: Web console issues
March 03, 2025, 05:05:34 PM
For me it works under tomcat9.
Check tomcat log (journalctl -u tomcat9.service) - on startup it logs JVM Version. If you have several versions of Java installed on your system, tomcat may pick not the latest one.
#353
Nano is fine. Could be that you tried to add the text to the end of the file that opened for editing? Note that text should be added between

### Anything between here and the comment below will become the new contents of the file

and

### Lines below this comment will be discarded
#354
General Support / Re: Event Processing stops
March 03, 2025, 04:28:07 PM
If you do
debug event.* 8
in server debug console, this will set debug level 8 only for event.* debug tags. This should produce way less lines in the log.

It could happen that event parsing thread locks. When the situation starts, pls run this script three times with 20-30 second interval:
https://github.com/netxms/netxms/blob/master/tools/capture_netxmsd_threads.sh
Script requires gdb to be installed in the system. It produces files in /tmp folder, pls share these with us

What version of NetXMS are you using?
What is the value of Events.Processor.PoolSize in Configuration->Server Configuration?
#355
General Support / Re: v5.1.3 Android Client
February 21, 2025, 12:38:07 PM
Hi,

Android client is being reworked - new API was added as server module and Android app is in development. We plan to release it when NetXMS 5.2 is out. If you want to test it before that, you can PM me your Google ID and we will add you to the group of test users.
#356
I'd guess something wrong with how editor is configured in the system. You can try configuring that with:

update-alternatives --config editor
#357
Topology information is updated on topology poll. So if one of your nodes reports that this port is linked to some other device, manually set peer will be removed.
You can try running topology poll manually on these nodes to see which one of them does that.
#358
There's a feature request for this in our bug tracker: https://track.radensolutions.com/issue/NX-1826
It's sort of low priority, but will be implemented as some point

Currently you may use scripting to collect some specific value if there is no reply, e.g. -10, then it will be visible on the chart. 
#359
Hi,

You may want to check this Youtube tutorial for SNMP tables: https://www.youtube.com/watch?v=BBHAErzMU38&t=549s

If you can give more detailed example with screenshots or specific OIDs, we can elaborate it further.
#360
There's a setting DBWriter.HouseKeeperInterlock in Configuration->Server Configuration. You may try setting this to "Yes" - in this case there will be no data writes while housekeeper is running.
DCI data will be kept in database writer queue, consuming system memory. You may want to set DBWriter.MaxQueueSize to some value to limit possible memory consumption.