The stomp_driver module allows publishing of metrics and status messages over the STOMP protocol for use powering the IEP system.
C
stomp_driver.so
Example 5.37. Loading the stomp_driver.
This example loads the stomp_driver and configures it.
<stratcon>
<modules>
<module image="stomp_driver" name="stomp_driver" />
</modules>
<iep>
<mq type="stomp">
<!-- exchange, username and password are all optional
<exchange></exchange>
<username></username>
<password></password>
-->
<!-- the following will default to the values shown -->
<destination>/queue/noit.firehose</destination>
<hostname>127.0.0.1</hostname>
<port>61613</port>
</mq>
</iep>
</stratcon>