- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to view output from an ExecuteStreamCommand processor
- Labels:
-
Apache NiFi
Created ‎08-10-2017 09:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thank you, thats perfect
