We really need your input in this questionnaire
subnets = [];
for (p : $node.parents) if (classof(p) == "Subnet") subnets.append(p.alias);
$event.addParameter("subnets", subnets.join(", "));
return true;Прицепляющий alias подсети к ивенту SYS_NODE_ADDEDsub main() {
subnet = tolower($event->subnets);
// Быстрая проверка по ключевым словам
if(contains(subnet, "dc") ||
contains(subnet, "ts")) {
nxlog(4, "FILTER: Blocked DC subnet - " . $event->subnets);
return false;
}
return true;
}2-ой - где alias содержит dc и tssub main() {
subnet = tolower($event->subnets);
// Быстрая проверка по ключевым словам
if(contains(subnet, "dc") ||
contains(subnet, "ts")) {
return true;
}
nxlog(4, "FILTER: Blocked Users subnet - " . $event->subnets);
return false;
}{
"id": 180591103,
"rootId": 0,
"code": 1,
"name": "SYS_NODE_ADDED",
"timestamp": 1769568582,
"originTimestamp": 1769568582,
"origin": 0,
"source": 1051263,
"zone": 0,
"dci": 0,
"severity": 0,
"message": "Node added",
"lastAlarmKey": "",
"lastAlarmMessage": "",
"tags": [
"NewObject"
],
"parameters": [
{
"name": "nodeOrigin",
"value": "1"
},
{
"name": "subnets",
"value": "KRS_Gaydashovka_UC"
}
]
}Что я сделал не так с этими фильтрами?
Quote from: Filipp Sudanov on January 23, 2026, 03:33:01 PMThe reason seems to be with the framework used to build the GUI. Here's Anthropic's Claude's comment on this, pls give us update if any of this helps:
● This is a SWT/GTK compatibility crash on ARM64 (Raspberry Pi 5). The segfault occurs in GTK's native code when rendering the
Infrastructure view. Here are potential fixes:
Quick Fixes to Try