-
-
Notifications
You must be signed in to change notification settings - Fork 28
Example: Stdin to NSQ
Lorenzo Mangani edited this page Dec 10, 2017
·
3 revisions
The experimental plugin set allows input/output from NSQ Servers. The parameters are available in the docs
input {
stdin {}
}
output {
nsq {
dataUrl => '10.0.0.1'
topic => 'new_topic'
}
}
input {
nsq {
host => '10.0.0.1'
port => 4161
chanel => 'some_channel'
topic => 'new_topic'
}
}
output {
stdout {}
}
input {
nsq {
host => '10.0.0.1'
port => 4161
chanel => 'some_channel'
topic => 'nsq_topic'
}
}
output{
amqp {
host => '10.0.0.2'
port => 5672
exchange_name => pastash
topic => 'amqp_topic'
}
}