Добрый день!
Это баг в nxdbmgr. Он исправлен в 1.0.0-rc1 - попробуйте использовать nxdbmgr из новой версии.
Виктор
Это баг в nxdbmgr. Он исправлен в 1.0.0-rc1 - попробуйте использовать nxdbmgr из новой версии.
Виктор
We really need your input in this questionnaire
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
The only good solution I see is to allow status polling interval configuration for each node - it's on my todo list for some time, but I cannot promise exact version where this feature will be implemented.
| Attribute | Description |
| dataType | DCI data type (string, integer, etc.) represented as internal numeric code |
| description | DCI description |
| id | DCI identifier |
| lastPollTime | DCI last successful poll time as UNIX timestamp (number of seconds since 01.01.1970 00:00:00 UTC) |
| name | Parameter's name |
| origin | DCI origin (NetXMS agent, SNMP, etc.) represented as internal numeric code |
| status | DCI status (0 = active, 1 = disabled, 2 = not supported) |
| systemTag | DCI system tag (not available in 1.0.x versions) |
sub main()
{
// Search for node named "gateway"
gw_node = FindNodeObject($node, "gateway");
if (gw_node == null)
return 0; // No such node or access denied
// from here, gw_node can be used in a same way as $node, for example:
status = GetDCIValue(gw_node, FindDCIByDescription(gw_node, "Status"));
return 1;
}