MQTT

The MQTT output module allows you to write data to a MQTT message broker.

ParameterDefaultMeaning
hostThe host name or IP address of the server
port1883The REDIS server port
patheventsThe path to write the address to
message{“message”: “%M”,“start”: “%S”, “end”: “%E”}The content of the MQTT message, with event substitutions
timezoneUTCThe timezone to write times to

Example

[
   {
       "method": "mqtt",
       "host": "myserver",
       "port": 1883,
       "prefix": "events"
   }
]

The above example would send values to an MQTT server named myserver running on the default port. It would place all of your notification to the events endpoint, with the times in UTC..

Other Modules

Return to the list of output modules.