Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 707 Bytes

agentreadlist.adoc

File metadata and controls

39 lines (32 loc) · 707 Bytes

AgentReadList()

Important

Deprecated in 3.0.

Please use method readAgentList of class [class-node].

AgentReadList(node, name) ⇒ Array

Request list metric directly from agent on given node.

Table 1. Parameters

node

[class-node] object instance (e.g. $node)

name

List name

Return

Array of strings or null if failed.

Example
>>> supportedLists = AgentReadList($node, "Agent.SupportedLists");
>>> foreach (l : supportedLists) { println(l); }
Agent.ActionList
Agent.SubAgentList
Agent.SupportedLists
Agent.SupportedParameters
Agent.SupportedPushParameters
…