-
-
Notifications
You must be signed in to change notification settings - Fork 28
Example: File to ZMQ
Lorenzo Mangani edited this page Sep 13, 2017
·
3 revisions
PaStash natively support ZeroMQ (also spelled ØMQ, 0MQ or ZMQ) a high-performance asynchronous messaging library, aimed at use in distributed or concurrent applications without a dedicated message broker.
input {
file {
path => "/var/log/nginx/access.log"
}
}
output {
zeromq {
address => ["tcp://log_server:5555"]
}
}
input {
zeromq {
address => ["tcp://0.0.0.0:5555"]
}
}
output {
stdout {}
}