ITLogDiagnosticsLastCallProcessingTime Property

General info

Label

Processing Time

Description

The time it took for the last call to process the data.

Data type

Int32

Type

Regular

Code

2944

Symbolic name

MODEL_PROP_ITLOGDIAGNOSTICSLASTCALLPROCESSINGTIME

Lua access code

syslib.model.properties.ITLogDiagnosticsLastCallProcessingTime

Available since

1.36

Parent properties

ITLogDiagnosticsLastCallParam

Attributes

Name Tooltip
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.
PROP_VOLATILE The property exists during runtime of the service only and is not saved to the image.
PROP_UNIT The property has an engineering unit.

Examples

Read from or write to the ITLogDiagnosticsLastCallProcessingTime property.

  • Lua

  • C#

-- Read from the ITLogDiagnosticsLastCallProcessingTime
syslib.getvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsLastCallParam.ITLogDiagnosticsLastCallProcessingTime")

-- Write to the ITLogDiagnosticsLastCallProcessingTime
syslib.setvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsLastCallParam.ITLogDiagnosticsLastCallProcessingTime", VALUE)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);

// Read from the ITLogDiagnosticsLastCallProcessingTime
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsLastCallParam.ITLogDiagnosticsLastCallProcessingTime"));
// Write to the ITLogDiagnosticsLastCallProcessingTime
Result result = sli.WriteValue(sc, new WriteItem(VALUE, "<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsLastCallParam.ITLogDiagnosticsLastCallProcessingTime"));