[libmessage-passing-zeromq-perl] 42/78: Update README
Jonas Smedegaard
js at alioth.debian.org
Mon Sep 30 09:28:24 UTC 2013
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository libmessage-passing-zeromq-perl.
commit 666d81f55d88f6778ea084f5c5299548865b5b4a
Author: Tomas Doran <bobtfish at bobtfish.net>
Date: Mon May 28 09:00:48 2012 +0100
Update README
---
README | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/README b/README
index 4959255..345b5e5 100644
--- a/README
+++ b/README
@@ -1,13 +1,13 @@
NAME
- Message::Passing::ZeroMQ - input and output logstash messages to ZeroMQ.
+ Message::Passing::ZeroMQ - input and output messages to ZeroMQ.
SYNOPSIS
# Terminal 1:
- $ logstash --input STDIN --output ZeroMQ --output_options '{"connect":"tcp://127.0.0.1:5558"}'
+ $ message-passing --input STDIN --output ZeroMQ --output_options '{"connect":"tcp://127.0.0.1:5558"}'
{"data":{"some":"data"},"@metadata":"value"}
# Terminal 2:
- $ logstash --output STDOUT --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5558"}'
+ $ message-passing --output STDOUT --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5558"}'
{"data":{"some":"data"},"@metadata":"value"}
DESCRIPTION
@@ -41,9 +41,9 @@ HOW TO USE
# FIXME - Example code, including overriding IP to connect to here
- On your log aggregation server, just run the logstash utility:
+ On your log aggregation server, just run the message-passing utility:
- logstash --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5222"}' \
+ message-passing --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5222"}' \
--output File --output_options '{"filename":"/tmp/my_test.log"}'
CONNECTION DIRECTION
@@ -79,7 +79,7 @@ MORE COMPLEX EXAMPLES
fashion) to a pool of workers.
# The message distributor:
- logstash --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5222"}' \
+ message-passing --input ZeroMQ --input_options '{"socket_bind":"tcp://*:5222"}' \
--output ZeroMQ --output_options '{"socket_bind":"tcp://*:5223","socket_type":"PUSH"}'
# Workers
@@ -96,7 +96,7 @@ MORE COMPLEX EXAMPLES
}
}
- logstash --input ZeroMQ --input_options '{"connect":"tcp://127.0.0.1:5223","socket_type":"PULL"}'
+ message-passing --input ZeroMQ --input_options '{"connect":"tcp://127.0.0.1:5223","socket_type":"PULL"}'
--filter '+MyApp::MessageWorker'
--output STDOUT
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmessage-passing-zeromq-perl.git
More information about the Pkg-perl-cvs-commits
mailing list