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 {
host => ... # string (optional)
message => ... # string (required)
password => ... # password (required)
tags => ... # array (optional), default: []
targets => ... # array (required)
type => ... # string (optional), default: ""
user => ... # string (required)
}
}
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 %{@source_host}
The xmpp password for the user/identity.
Only handle events with all of these tags. Note that if you specify a type, the event must also match that type. Optional.
The targets to send messages to (users, chat rooms, etc)
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.