input {
stomp {
add_field => ... # hash (optional), default: {}
debug => ... # boolean (optional)
destination => ... # string (required)
format => ... # ["plain", "json", "json_event"] (optional)
host => ... # string (required), default: "localhost"
message_format => ... # string (optional)
password => ... # password (optional), default: ""
port => ... # number (optional), default: 61613
tags => ... # array (optional)
type => ... # string (required)
user => ... # string (optional), default: ""
}
}
Add a field to an event
Enable debugging output?
The destination to read events from.
Example: "/topic/logstash"
The format of input data (plain, json, json_event)
The address of the STOMP server.
If format is "json", an event sprintf string to build what the display @message should be given (defaults to the raw JSON). sprintf format strings look like %{fieldname} or %{@metadata}.
The password to authenticate with.
The port to connet to on your STOMP server.
Add any number of arbitrary tags to your event.
This can help with processing later.
Label this input with a type. Types are used mainly for filter activation.
If you create an input with type "foobar", then only filters which also have type "foobar" will act on them.
The type is also stored as part of the event itself, so you can also use the type to search for in the web interface.
The username to authenticate with.