CSV

LiveRig collector supports the pushing of CSV payloads in order to convert them into Live events.

That is a very simple alternative to input data from third-party software through a LiveRig collector instance, typically co-located at operational sites.

Configuration by remote control

Once the Remote Control feature is enabled, the user can configure a new CSV source remotely as follows:

Null values

As a textual representation, CSV typically carries some standard number that needs to be interpreted as null values. The CSV source enables you to specify your typical values and drop them from the actual event representation for the channels.

Date time pattern

The date time pattern can be customized to detect seconds, milliseconds, or textual samples of information like months, AM/PM marks, or either some fixed strings in the rows which represent the timestamp of each data measurement. See the full list of symbols supported (as in Java).

Each column in the CSV file will be interpreted as a channel value and the first column will be the date time index for each row in the dataset.

Access endpoint

The CSV source can execute in client or server mode. Third parties applications may push data into the LiveRig CSV source endpoint.

Starting at LiveRig 4.7.0, the access configuration supports both TCP and Serial ports:

The TCP connector puts the source in server mode and waits for data to be pushed into it. On the other hand, the Serial port connector configures the source as client mode and watches the Unix device file to consume the data passing through.

Starting at LiveRig 4.11.0, CSV source supports TCP and Serial connection protocols for Client mode. When using Server mode, it only supports TCP protocol. If server mode is enabled, the Serial Port radio button will be disabled:

In case, any older LiveRig Collector is used in the edge installation, the selection for Serial ports will be unavailable since only TCP endpoints are allowed up to 4.6 series.

Configuration by source file

Locally in the LiveRig Collector machine, the sources.xml can be configured as demonstrated below. This configuration opens the TCP port 9873 on all local interfaces to listen for CSV files.

<source>
	<name>CSV endpoint</name>
	<mode>server</mode>
	<rig_name>my_rig</rig_name>
	<service_company>my_company</service_company>
	<protocol_name>csv</protocol_name>
	<endpoint>tcp://0.0.0.0:9873/</endpoint>
</source>

This other example reads the first COM port in a Unix system available at /dev/ttyS0 to watch for events in CSV format.

<source>
	<name>CSV endpoint</name>
	<mode>client</mode>
	<rig_name>my_rig</rig_name>
	<service_company>my_company</service_company>
	<protocol_name>csv</protocol_name>
	<endpoint>serial:///dev/ttyS0?baudRate=9600</endpoint>
</source>

Last updated