Push messages to the juggernaut websockets server:
Wraps Websockets and supports other methods (including xhr longpolling) This is basically, just an extension of the redis output (Juggernaut pulls messages from redis). But it pushes messages to a particular channel and formats the messages in the way juggernaut expects.
output {
juggernaut {
channels => ... # array (required)
codec => ... # codec (optional), default: "plain"
db => ... # number (optional), default: 0
host => ... # string (optional), default: "127.0.0.1"
message_format => ... # string (optional)
password => ... # password (optional)
port => ... # number (optional), default: 6379
timeout => ... # number (optional), default: 5
workers => ... # number (optional), default: 1
}
}
List of channels to which to publish. Dynamic names are valid here, for example “logstash-%{type}”.
The codec used for output data. Output codecs are a convenient method for encoding your data before it leaves the output, without needing a separate filter in your Logstash pipeline.
The redis database number.
Only handle events without any of these tags. Note this check is additional to type and tags.
The hostname of the redis server to which juggernaut is listening.
How should the message be formatted before pushing to the websocket.
Password to authenticate with. There is no authentication by default.
The port to connect on.
Only handle events with all of these tags. Note that if you specify a type, the event must also match that type. Optional.
Redis initial connection timeout in seconds.
The type to act on. If a type is given, then this output will only act on messages with the same type. See any input plugin’s “type” attribute for more. Optional.
The number of workers to use for this output. Note that this setting may not be useful for all outputs.