News:

We really need your input in this questionnaire

Main Menu

Recent posts

#51
Общие вопросы / Re: Реестр windows машин
Last post by Filipp Sudanov - September 30, 2025, 09:47:09 PM
Добрый,

на сейчас агент не умеет работать с регистром напрямую, можно настроить ExternalMetric в конфиге агента, которая будет вызывать regedit. Вероятно можно и ExternalList чтоб получить список ключей в ветке регистра, но не знаю насколько удобно парсить выдачу regedit для этого.

Тикет на прямую работу с реестром есть, когда-нибудь будет сделано
https://track.radensolutions.com/issue/NX-2838
#52
Общие вопросы / Re: Переход на Timescaledb
Last post by Filipp Sudanov - September 30, 2025, 09:41:43 PM
nxdbmgr convert - это именно in-place конвертация, без создания второй базы.
#53
General Support / Re: Alarm notification call AP...
Last post by Filipp Sudanov - September 30, 2025, 09:39:10 PM
Yes, right, these are the macros described here: https://netxms.org/documentation/adminguide/event-processing.html#macros-for-event-processing

There's no built-in macro for alarm ID, but there's %[script_name] which will call a script from script library. There'll be a few variables set in the script, specifically:
$object - always is set
$node - set if event is created on a node
$event - when script is called from EPP
$alarm - if at given moment of event processing by EPP rules an alarm is already created.

$alarm variable has Alarm class described here: https://netxms.org/documentation/nxsl-latest/#class-alarm , so simple script

return $alarm.id;

should do the job.
#54
General Support / Re: Alarm notification call AP...
Last post by richard21 - September 30, 2025, 06:44:14 PM
I have found the Variables and they are now passing to the API via the alarm action as below but is there a variable for the Alarm ID as shown in the UI

/etc/netxms/scripts/send_event.sh "%K" "%I" "%n" "%S" "%c" "%A"
#55
General Support / Re: v5.1.3 Android Client
Last post by tolimanjo - September 30, 2025, 05:41:40 AM
I was getting the '500' error from the client when using HTTP, and a packet capture showed HTTPS style connection attempts to the server. Perhaps Android was trying to be helpful?
Anyway, putting an HTTPS-HTTP proxy in front of the server (and specifying https:// on the client) fixed the problem.
#56
General Support / Re: v5.1.3 Android Client
Last post by Filipp Sudanov - September 29, 2025, 11:08:31 PM
Can you capture network traffic on server's 8000 port using tcpdump (tcpdump -s 0 -w snmp.pcap port 8000) or Wireshark if you are on Windows.
You can send resulting file to me via private message.

Also check netxmsd log, may be there are some error messages there.
#57
General Support / Re: Modbus question
Last post by cserzs - September 29, 2025, 08:21:03 PM
Hi Filipp,

Thank you for your support. The "Communication through external gateway" checkbox solution works perfect.

BR, Zsolt
#58
General Support / Re: v5.1.3 Android Client
Last post by WSallade - September 29, 2025, 06:01:04 PM
Have exact same issue. v5.2.6 on Debian, getting error 500 with Android app. 

Have webapi module loaded and get http://<server ip>:8000 returns "{"description": "NetXMS web service API", "version": "5.2.6", "build": "5.2-443-ge9a696f0c2", "apiVersion": 1}", so this looks good.
#59
General Support / Monitoring ubuntu service stat...
Last post by Egert143 - September 29, 2025, 08:52:34 AM
Hello

What are the steps to monitor ubuntu service status?

Egert
#60
Общие вопросы / Переход на Timescaledb
Last post by Argonauts - September 29, 2025, 04:31:12 AM
Добрый день.
Что конкретно делает команда nxdbmgr convert? С ее выполнением возможно сконвертировать текущую базу с psql на timescaledb или в таком случае только через создание второй базы с включенным timescale и далее nxdbmgr migrate?