Difference between revisions of "NXSL:GetSumDCIValue"

From NetXMS Wiki
Jump to navigation Jump to search
Line 24: Line 24:
== Return Value ==
== Return Value ==


Sum value or null on failure.
Sum value or '''null''' on failure.


== Examples ==
== Examples ==

Revision as of 09:24, 22 October 2014

Get the sum value of the DCI for the given period. The DCI value must be of numeric type.

Since: 1.2.7

Syntax

GetSumDCIValue(node, dciId, from, to);


Parameters

node Node object to calculate the sum DCI value for.
dciId DCI item id (integer).
from Start of the peridod (as UNIX timestamp).
to End of the peridod (as UNIX timestamp).

Return Value

Sum value or null on failure.

Examples

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