NXSL:GetMinDCIValue

From NetXMS Wiki
Revision as of 22:05, 5 June 2012 by Macro (talk | contribs) (Created page with "__NOTOC__ Get the minimum value of the DCI item for the given period. The item value must be of either integer or double type. == Syntax == GetMinDCIValue(''node'',''dciitem...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Get the minimum value of the DCI item for the given period. The item value must be of either integer or double type.

Syntax

GetMinDCIValue(node,dciitem,fromtime,totime);


Parameters

node Node object to calculate the mininum DCI value for.
dciitem DCI item id (integer).
fromtime Start of the peridod (timestamp).
totime End of the peridod (timestamp).

Return Value

Minimum value or null on failure.

Examples

sub main()
{
    value = GetMinDCIValue(FindObject("MYWORKPC"), 18, 0, time()); // from the beginning till now
    trace(1, "Processor minimum load ". value . "%");
}