Hello,
I have a current implementation which uses File::Tail to stream live data from a continuously written log file(from host A) to another machine(host B) using IO::Socket.
I basically listen on a socket on host B first and the start writing on host A on that socket. Everything works fine.
Now the issue is I need another log file on host C to be written to the same socket of host B. What are the possible ways for this.? I was suggested to use IO::Async on IRC. Though, I haven't gone thro' it, I'm yet curious to know if there are any other ways... looking for some inputs/ explanations on how to proceed...