Is there a possibility accessing custom attributes within the script of a condition Attribute?
Best regards
Georg
If you have a $node object available (which should be in EPP Condition scripts), you have multiple options:
Get a single known attribute:
https://wiki.netxms.org/wiki/NXSL:GetCustomAttribute
Get all custom attributes of a node:
attributes = $node->customAttributes;
foreach(attrib : attributes->keys) {
// name
println(attrib);
// value
println(attributes[attrib])
}