ITLogRawDataTable Property

General info

Label

Raw Data Table

Description

The raw data fetched from the source.

Data type

String

Type

TableSchemaLess

Code

2926

Symbolic name

MODEL_PROP_ITLOGRAWDATATABLE

Lua access code

syslib.model.properties.ITLogRawDataTable

Available since

1.36

Parent properties

ITLogActualData

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.

Examples

Read from or write to the ITLogRawDataTable property.

  • Lua

  • C#

-- Read from the ITLogRawDataTable
syslib.getvalue("<OBJECT FULL PATH>.ITLogActualData.ITLogRawDataTable")

-- Write to the ITLogRawDataTable
syslib.setvalue("<OBJECT FULL PATH>.ITLogActualData.ITLogRawDataTable", "new 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 ITLogRawDataTable
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.ITLogActualData.ITLogRawDataTable"));
// Write to the ITLogRawDataTable
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.ITLogActualData.ITLogRawDataTable"));