output {
stomp {
debug => ... # boolean (optional)
destination => ... # string (required)
host => ... # string (required)
password => ... # password (optional), default: ""
port => ... # number (optional), default: 61613
tags => ... # array (optional), default: []
type => ... # string (optional), default: ""
user => ... # string (optional), default: ""
}
}
Enable debugging output?
The destination to read events from. Supports string expansion, meaning %{foo} values will expand to the field value.
Example: "/topic/logstash"
The address of the STOMP server.
The password to authenticate with.
The port to connect to on your STOMP server.
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 username to authenticate with.