Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to view output from an ExecuteStreamCommand processor

avatar
New Member

Hi, i have a dataflow set up that directs info to an executestreamcommand processor. I would like to be able to view the output in real time through a terminal or url if thats possible, but i dont have much experience in this. Maybe netcat or something. Is this possible? Thank you

1 ACCEPTED SOLUTION

avatar
Not applicable

Set up a server in a console window using netcat like this:

nc -kl localhost [port]

and then use a PutTCP processor to send the FlowFile content that was generated by ExecuteStreamCommand to that console.

View solution in original post

2 REPLIES 2

avatar
Not applicable

Set up a server in a console window using netcat like this:

nc -kl localhost [port]

and then use a PutTCP processor to send the FlowFile content that was generated by ExecuteStreamCommand to that console.

avatar
New Member

thank you, thats perfect