This output allows you ship events over XMPP/Jabber.
This plugin can be used for posting events to humans over XMPP, or you can use it for PubSub or general message passing for logstash to logstash.
output {
xmpp {
codec => ... # codec (optional), default: "plain"
host => ... # string (optional)
message => ... # string (required)
password => ... # password (required)
rooms => ... # array (optional)
user => ... # string (required)
users => ... # array (optional)
workers => ... # number (optional), default: 1
}
}
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.
Only handle events without any of these tags. Note this check is additional to type and tags.
The xmpp server to connect to. This is optional. If you omit this setting, the host on the user/identity is used. (foo.com for user@foo.com)
The message to send. This supports dynamic strings like %{host}
The xmpp password for the user/identity.
if muc/multi-user-chat required, give the name of the room that you want to join: room@conference.domain/nick
Only handle events with all of these tags. Note that if you specify a type, the event must also match that type. Optional.
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 user or resource ID, like foo@example.com.
The users to send messages to
The number of workers to use for this output. Note that this setting may not be useful for all outputs.