Recent posts

#21
General Support / Re: Client Install Windows ARM...
Last post by Alex Kirhenshtein - January 22, 2026, 02:30:40 PM
There are no arm installer (yet), but you can download standalone jar file, install java, and launch jar file directly
#22
General Support / Client Install Windows ARM / S...
Last post by richard21 - January 22, 2026, 01:41:14 PM
Hi, is it possible to install the windows client on a Windows 11 ARM / Snapdragon device ?
#23
General Support / Re: How to monitor Proxmox ve ...
Last post by Alex Kirhenshtein - January 22, 2026, 12:53:33 PM
#24
function GetTree(nodeID)
{
    obj = FindObject(nodeID);
    if (obj == null) return;
   
    children = obj.children;
   
    for (n : children)
    {
        if (classof(n) == "Node")
        {
            ifaces = n.interfaces;
            for (iface : ifaces)
            {
                if (iface.description ~= "WAN")
                {
                    println("Node: " .. n.name .. ", Interface: " .. iface.name .. ", Description: " .. iface.description .. ", IP: " .. iface.ipAddr);
                }
            }
        }
        // Рекурсия ВЫНЕСЕНА за пределы условия - обходим все контейнеры
        GetTree(n.id);
    }
}

GetTree(2);

Основные изменения:

- function вместо sub — современный синтаксис
- obj.children вместо GetObjectChildren(obj)
- . вместо -> для доступа к свойствам
- .. для конкатенации строк (вместо , в println)
- Рекурсия вынесена за пределы условия classof(n) == "Node"
#25
Общие вопросы / Re: FileSystem.Total
Last post by Alex Kirhenshtein - January 22, 2026, 12:45:58 PM
если появляются - значит instance discovery фильтр всё еще проходит. DCI удаляются автоматически, если для них фильтр вернул false. По умолчанию - через 7 дней.

Quote from: Argonauts on January 13, 2026, 11:27:07 AMКак мне удалить все DCI, что я наплодил с созданием DCI под instance discovery? Со временем они появляются обратно ::)
#26
Добрый день.
Как можно проводить поиск по конкретным значениям какого-либо параметра в нодах?
В ветке Делимся скриптами сразу в шапке имелся скрипт поиска "в данном случае по snmp sysDescription коммутатора"
sub GetTree (nodeID)
{
Tree = FindObject(nodeID);
children = GetObjectChildren(Tree);

foreach (n : children)
{
    //println ("Name: " . n->name);
    if (n->name != null && classof(n) == "Node")
    {
        if (n->sysDescription ~= "^D-Link DES-3028" && n->comments == "")
    {   
        println ("Name: " . n->name . ", sysDescription: " . n->sysDescription . ", IP: " . n->ipAddr);
    }
}
GetTree(n->id);
  }
}

GetTree(2);
Который я попытался перенаправить на поиск нод, в которых Description на каком-то из интерфейсов имеет WAN.
sub GetTree (nodeID)
{
Tree = FindObject(nodeID);
children = GetObjectChildren(Tree);

foreach (n : children)
{
    //println ("Name: " . n->name);
    if (n->name != null && classof(n) == "Node")
    {
        if (n->interfaces.description ~= "WAN" && n->comments == "")
    {   
        println ("Name: " . n->name . ", interfaces.description: " . n->interfaces.description . ", IP: " . n->ipAddr);
    }
}
GetTree(n->id);
  }
}

GetTree(2);
Но оба скрипта падают в syntax error на линию 13. Что с того момента изменилось в синтаксе?
=================
Edited
В таком виде
sub GetTree(nodeID)
{
    Tree = FindObject(nodeID);
    children = GetObjectChildren(Tree);

    foreach (n : children)
    {
        if (n->name != null && classof(n) == "Node")
        {
            ifaces = n->interfaces;
            foreach (iface : ifaces)
            {
                if (iface->description ~= "WAN")
                {
                    println("Name: " , n->name , ", interface: " , iface->description , ", IP: " , iface->ipAddr);
                }
            }

            GetTree(n->id);
        }
    }
}

GetTree(2);
выполнение его проходит, но результат никакой не получается
*** FINISHED ***

Result:
#27
General Support / How to monitor Proxmox ve with...
Last post by kavirondo - January 21, 2026, 08:59:00 PM
Hello,

Quoting from the manual:

"NetXMS has subagents that allow to monitor hypervisors. " But it doesnt say which hypervisors.

I see some configs for ESX, but what about Xen, HyperV, QEMU etc? Proxmox?

Can I / How Can I monitor Proxmox VE / QEMU with this subagent?

Thank you,

Alex

#28
General Support / Re: re trigger alarms and aler...
Last post by richard21 - January 21, 2026, 08:13:25 PM
I have managed to resolves this by resetting it in the database then restarting the netxms service
#29
General Support / re trigger alarms and alerts
Last post by richard21 - January 21, 2026, 02:06:35 PM
Hi,

is it possible to re trigger alarms for dci's that are still alerting
#30
General Support / User Sessions > Log to Events
Last post by Spheron - January 15, 2026, 11:33:16 AM

Hello @all,

is it possible to log the user sessions (User, Client name, Client Adress, ...) to the NetXMS event log?

Greetings
Marco