stompedit

This is a community-maintained plugin! It does not ship with Logstash by default, but it is easy to install by running bin/plugin install logstash-output-stomp.

 

Synopsisedit

This plugin supports the following configuration options:

Required configuration options:

stomp {
    destination => ...
    host => ...
}

Available configuration options:

Setting Input type Required Default value

codec

codec

No

"plain"

debug

boolean

No

false

destination

string

Yes

host

string

Yes

password

password

No

""

port

number

No

61613

user

string

No

""

vhost

string

No

nil

workers

number

No

1

Detailsedit

 

codecedit

  • Value type is codec
  • Default value is "plain"

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.

debugedit

  • Value type is boolean
  • Default value is false

Enable debugging output?

destinationedit

  • This is a required setting.
  • Value type is string
  • There is no default value for this setting.

The destination to read events from. Supports string expansion, meaning %{foo} values will expand to the field value.

Example: "/topic/logstash"

hostedit

  • This is a required setting.
  • Value type is string
  • There is no default value for this setting.

The address of the STOMP server.

passwordedit

  • Value type is password
  • Default value is ""

The password to authenticate with.

portedit

  • Value type is number
  • Default value is 61613

The port to connect to on your STOMP server.

useredit

  • Value type is string
  • Default value is ""

The username to authenticate with.

vhostedit

  • Value type is string
  • Default value is nil

The vhost to use

workersedit

  • Value type is number
  • Default value is 1

The number of workers to use for this output. Note that this setting may not be useful for all outputs.