rmdstestclient capture RIC events

iliak
iliak Explorer

How i can capture spesific events:

this my be reference command line

rmdstestclient -S hEDD -ef enhacedItemfileName -h <host> -p 14002 –ct rssl -o 5000 -u <user> –l stdout –rf 8 –of captureFile

the documentation asy the foolonng regarding enhacedItemfileName

Each entry in the enhanced item file is of the form: <domain>|<itemName> . For example: 6|GOOG.OQ 

what should i do to make it work? to capture for example the rics:

USJOB=ECI,USOILN=ECI,USPFBC=ECI

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @iliak

    First, you need to have a Real-Time data feed and know the hostname or IP address, TCP port (the default port is 14002), and the username to connect to that data feed. Then, you need to know the Real-Time service name available on that data feed.

    Next, create a text file (rics.txt) that contains the following content. The number six represents the MarketPrice domain.

    6|USJOB=ECI
    6|USOILN=ECI
    6|USPFBC=ECI

    Then, run the rmdstestclient with the following parameters.

    rmdstestclient -S <service> -ef rics.txt-h <host> -p 14002 –ct rssl -o 5000 -u <user> –l stdout –rf 8 –of data.xml

    The XML data will be captured in the data.xml file.

    You can open the data.xml file to verify the retrieved data.

    For more information, please refer to this article: Quick Start Guide to Recording and Playback of Elektron Data.


Answers