Difference between revisions of "NXSL:GetAvgDCIValue"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Get the average value of the DCI item for the given period. The item value must be of either integer or double type. == Syntax == GetAvgDCIValue(''node'',''dciitem...")
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
Get the average value of the DCI item for the given period. The item value must be of either integer or double type.
Get the average value of the DCI item for the given period. The item value must be of either integer or double type.
'''Since:''' 1.2.1


== Syntax ==
== Syntax ==

Revision as of 21:23, 26 July 2012

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

Since: 1.2.1

Syntax

GetAvgDCIValue(node,dciitem,fromtime,totime);


Parameters

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

Return Value

Average value or null on failure.

Examples

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