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

#571
General Support / Re: Receive SNMP v3 trap at NetXMS
September 20, 2023, 04:53:19 PM
Great, thanks for update
#572
I've just tried on newest version and it seems to be working fine. Pls upgrade to 4.4.2 and recheck
#573
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
#574
Image library и server files хранятся на файловой системе, на Windows это
папки files и images в C:\NetXMS\var

Где-то в будущем они переедут в базу, но для этого нужно еще для всех поддерживаемых баз доделать механизм хранения бинарных данных, так что это еще не скоро.
#575
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.
#576
Проверьте после рестарта, что в его логе (journalctl -u tomcat9.service) правильная версия джавы, должно быть так:
Java Home:            /usr/lib/jvm/java-17-openjdk-amd64
#577
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.
#578
Have you restarted the agent after adding MaxSessions parameter?
#579
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.
#580
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)
#581
General Support / Re: Legacy Interface
September 07, 2023, 02:25:56 PM
Yes, the plan is to phase out old interface - it will stay and should be able to work (at least for some time), but new features won't be added to it.

It's a good time to discuss your experience and feelings regarding the new interface - are there some specific inconvenient / unlogical / etc things or it's something overall?
#582
Transformation script is launched when data collection returns some value. As far as I understand, it will not be launched if data collection returned error.
#583
Change interface expected state... как выяснилось еще не был перенесен в новый клиент. Будет в патч-релизе который должен быть сегодня-завтра.
#584
Hi!

4.4 version client requires java 17
#585
General Support / Re: NGINX as reverse proxy
August 31, 2023, 02:17:20 PM
I am not an expert in nginx, but here's a config that I know is working:

server {
        listen 443 ssl http2;

        ssl_certificate /etc/ssl/certs/xxxxx.pem;
        ssl_certificate_key /etc/ssl/private/xxxxx.pem;

        server_name xxxxx nx.local;

        root /var/www/html;

        location = / {
                return 301 /nxmc-light.app;
        }

        location / {
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-Forwarded-Ssl on;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Frame-Options SAMEORIGIN;
                proxy_pass http://10.10.10.10:8080/;
        }
}