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

#271
Depending on what that router supports. If you could install NetXMS agent there, that would be the best way - e.g. this can be done with some newer Mikrotiks that support containers. If not, then you can collect data via snmp or ssh. Or you can put some machine with netxms agent in the proximity of this router.
#272
Are you using desktop client? Legacy or new one? What exactly version of the client? What is the OS?
#273
Hi,

External resources are meant to store URLs. They are visible in the Overview tab of a node.

Custom attributes are for storing any custom information you need. They have inheritance, so you can specify a custom attribute on container and it will be on node under that container. A few use cases:
- If you have a template that needs to be applied only to specific nodes - it's autobind script can check for a custom attribute.
- Check File system: free space on {instance} DCI from Operating Systems->Windows template. Note how threshold value is configured.
- You can add text from custom attributes to your event messages or notification text by using %{custom_attribute_name} macro.

You can have object tool that uses URL from a custom attribute, just use %{custom_attribute_name} in that tool.
#274
Ok, then an alarm should have been generated. I'd check the alarm log for the node, maybe the alarm was terminated after its creation.
#275
Ok, so SYS_NODE_DOWN event is happening. In Configuration -> Event Processing Policy there should be a default rule named "Show alarm when node is down" that should create alarm when such event happens. Is this rule present and enabled?
#276
Ok, next thing to check - it you have a look at Event Log for a node that went from online to offline, what events are there?
#277
Hi,

Can you please share the textual output of status poll for the node when your camera is online and offline
#278
General Support / Re: Client startup fails
May 08, 2025, 05:18:41 PM
Which client you are trying to use, legacy or the new one?
#279
Чтоб мониторить подсеть нам нужно проверять связь до каких-то конкретных нод, в ней находящихся. Можно пользоваться агентской метрикой NetworkService.Status (для нее нужен субагент netsvc). Например, если на нодах есть ssh, то:

NetworkService.Status(tcp://10.10.1.2:22)


Еще вариант - включить на агенте режим прокси, создать ноды для девайсов из этой подсети и следить за статусом этих нод. Можно наскриптовать какую-нибудь проверку, что если все ноды из конкретного контейнера ушли в даун, то тогда создавать аларм.
#280
Мы пытаемся получать мак адрес в таких ситуациях, но возможно это работает только если мы опрашиваем соседнее устройство. Девайсы у этой сети подключены через управляемы свич? Он опрашивается?
#281
This list was not updated for some time. NetXMS does not use any features specific to certain version of MariaDB, so you can just use the latest version of it.
#282
I've modified the script above, pls try again
#283
Looks that some text was accidentally pasted in the middle of the script. I've fixed the source in the above message.
#284
Чтоб проверить, что нода находится под конкретным контейнером (непосредственно, или может быть еще через несколько других контейнеров)
container = FindObject(2); // Infrastructure Services
println($node.isParent(container));
println($node.isDirectParent(container));
#285
General Support / Re: $node.ipAddr is unspec
April 30, 2025, 11:33:16 PM
Can you show full script that does writing to file?