Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to view output from an ExecuteStreamCommand processor

avatar
Explorer

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

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

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
Explorer

thank you, thats perfect