Created 08-10-2017 09:09 AM
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
Created 08-10-2017 11:19 AM
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.
Created 08-10-2017 11:19 AM
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.
Created 08-10-2017 12:02 PM
thank you, thats perfect