Difference between revisions of "NXSL:GetMinDCIValue"

From NetXMS Wiki
Jump to navigation Jump to search
Line 1: Line 1:
__NOTOC__
__NOTOC__
Get the minimum value of the DCI item for the given period. The item value must be of either integer or double type.
Get the minimum value of the DCI for the given period. The DCI value must be of numeric type.


'''Since:''' 1.2.1
'''Since:''' 1.2.1
Line 6: Line 6:
== Syntax ==
== Syntax ==


GetMinDCIValue(''node'',''dciitem'',''fromtime'',''totime'');
GetMinDCIValue(''node'', ''dciId'', ''from'', ''to'');




Line 15: Line 15:
| ''node'' || [[NXSL:Node|Node]] object to calculate the mininum DCI value for.
| ''node'' || [[NXSL:Node|Node]] object to calculate the mininum DCI value for.
|-
|-
| ''dciitem'' || DCI item id (integer).
| ''dciId'' || DCI item id (integer).
|-
|-
| ''fromtime'' || Start of the peridod (timestamp).
| ''from'' || Start of the peridod (as [http://en.wikipedia.org/wiki/Unix_time UNIX timestamp]).
|-
|-
| ''totime'' || End of the peridod (timestamp).
| ''to'' || End of the peridod (as [http://en.wikipedia.org/wiki/Unix_time UNIX timestamp]).
|}
|}



Revision as of 17:43, 2 February 2013

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

Since: 1.2.1

Syntax

GetMinDCIValue(node, dciId, from, to);


Parameters

node Node object to calculate the mininum 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

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 . "%");
}