Print

Stdout Output

The STDOUT OUTPUT plugin prints the selected data to the terminal session that executes RioDB. If the terminal output is being collected into a log file, then the STDOUT output will be collected as well.

Note, that the STDOUT output plugin is only available for on-prem deployments. (Not available in RioDB Cloud)

Parameters

delimiter: OPTIONAL. There is only one parameter. The delimiter is used to choose what character to separater the fields. If not provided, the default value is a tab.

Syntax

OUTPUT STDOUT (
    delimiter '<a single character>'
)

Example

To print comma-separated values to the terminal:

OUTPUT STDOUT (
    delimiter ','
)

tab-delimited is the default behavior. Therefore, you ommit the parameters if that’s what you want:

OUTPUT STDOUT
Table of Contents
Scroll to Top