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

#646
Yes, currently error is treated as true, which is not good. Will be changed to false in next release.
#647
Yes, that's exactly how it works. If at some point server would be able to get info about interfaces from agent, this interface will be recreated with proper name.
#648
Data type "Counter 32-bit" должен обрабатывать переход на 0 автоматически. Можно посмотреть в history по этому DCI - там будет колонка raw value. Покажите скриншот history в месте где raw value проходит через 0.

Возможно проблема в трансформационном скрипте - возможно за минуту набегает столько, что при умножении на 8 получается число большее, чем 32-битный integer. Для проверки можно сделать такой трансформационный скрипт (8L заставит выполнять 64-битную арифметику):

return (($1 *  8UL ) / 1024) / 1024;"

Но вообще вручную делить для получения мегабит уже не нужно - можно в свойствах DCI поставить Units "b/s" и Use multipliers "Default" или "Yes". Значение будет хранится в битах в сек и переводится при отображении. Если нужно чтоб всегда отображалось в Mbps, на закладке other options поставить Multiplier degree "Fixed to M".

#649
Can you show a screenshot how these "unknown" name and description look like?
Is it so for all interfaces that are being created or for some (agent, snmp, with specific name?)
What if you try a simpler regex, without alternatives, would it change anything?

#650
How much time does it take since agent restart to consume all the sessions?

In out-of-the-box template for the agent there are metrics
Agent.ActiveConnections
Agent.AcceptedConnections

please show graphs for these for the time since agent start till the sessions run out
#651
General Support / Re: Receive SNMP v3 trap at NetXMS
September 20, 2023, 04:53:19 PM
Great, thanks for update
#652
I've just tried on newest version and it seems to be working fine. Pls upgrade to 4.4.2 and recheck
#653
General Support / Re: Receive SNMP v3 trap at NetXMS
September 16, 2023, 08:46:31 AM
To receive SNMP v3 traps, in node properties SNMP settings should be set to SNMP version 3 and corresponding credentials should be specified.

There's an idea to have these credentials separate, here's the ticket for that: https://track.radensolutions.com/issue/NX-2456
#654
Image library и server files хранятся на файловой системе, на Windows это
папки files и images в C:\NetXMS\var

Где-то в будущем они переедут в базу, но для этого нужно еще для всех поддерживаемых баз доделать механизм хранения бинарных данных, так что это еще не скоро.
#655
If this web site supports standard authentication methods, you can use Web Services. In this case you have to create web service definition (with "Process response as plain text") and then can have a DCI with Web Service source and metric
web_service_name:some text that should be on the web page
Then you can have theshold for data collection error.

Or alternatively you can have script DCI that would call web service using NXSL function.
#656
Проверьте после рестарта, что в его логе (journalctl -u tomcat9.service) правильная версия джавы, должно быть так:
Java Home:            /usr/lib/jvm/java-17-openjdk-amd64
#657
General Support / Re: NetXMS Management Console Zoom bug
September 11, 2023, 02:39:47 PM
Hi!

The legacy nxmc that you are using is going to be phased out in a few months, so there's no much sense in fixing this issue.

If you have any issues or usability problems using nxmc-4.4.2-standalone.jar, please report them here so that these can be addressed.
#658
Have you restarted the agent after adding MaxSessions parameter?
#659
General Support / Re: Table DCI
September 08, 2023, 03:14:01 PM
Hi!

You can just grep agent sources for any built-in agent table name, e.g. Agent.SubAgents and you will find the code, e.g:
https://github.com/netxms/netxms/blob/master/src/agent/core/subagent.cpp#L301

Also, it's possible to configure external tables, this way agent would call an external process that provides table data.
#660
General Support / Re: Legacy Interface
September 07, 2023, 06:16:12 PM
If you've tried the new UI some time ago - at some point the icons on the left were arranged in a bit more logical way. I was kinda struggling before, but now Infrastructure services is the top one icon and things are way better.
Also to note - a few things - e.g. data collection is moved from the node context menu to a tab.
In overall - it took some time for me to get used to the new UI, but now it feels more comfortable then the old one (also still has some minor things to improve)