rainu / mqtt-executor

A simple MQTT client written in go that subscribes to a configurable list of MQTT topics on the specified broker and executes a given shell script/command whenever a message arrives.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mqtt-executor

Go

A simple MQTT client written in go that subscribes to a configurable list of MQTT topics on the specified broker and executes a given shell script/command whenever a message arrives. Furthermore you can define commands that are executed in a configurable interval. This can be useful for sensor data. Also this application supports Homeassitant mqtt descovery.

Get the Binary

You can build it on your own (you will need golang installed):

go build -a -installsuffix cgo ./cmd/mqtt-executor/

Or you can download the release binaries: here

Configuration

Create a configuration file named "config.json"

{
  "availability": {
    "topic": "tele/__DEVICE_ID__/status",
    "payload": {
      "available": "On",
      "unavailable": "Off"
    }
  },
  "trigger": [{
    "name": "Touch file",
    "topic": "cmnd/touch/file",
    "command": {
      "name": "/usr/bin/touch",
      "arguments": ["/tmp/example"]
    }
  }],
  "sensor": [{
    "name": "Free Memory",
    "topic": "tele/__DEVICE_ID__/memory/free",
    "retained": false,
    "unit": "kB",       //used for hassio
    "icon": "hass:eye", //used for hassio
    "interval": "10s",
    "command": {
      "name": "/bin/sh",
      "arguments": [
        "-c",
        "cat /proc/meminfo | grep MemFree | cut -d\\: -f2 | sed 's/ //g' | grep -o [0-9]*"
      ]
    }
  }],
  "multi_sensor": [{
    "topic": "tele/__DEVICE_ID__/stats",
    "retained": false,
    "interval": "10s",
    "command": {
      "name": "/bin/sh",
      "arguments": [
        "echo",
        "{\"mem\":1, \"cpu\":2}"
      ]
    },
    "values": [{
        "name": "Memory",
        "unit": "kB",       //used for hassio
        "icon": "hass:eye", //used for hassio
        "template": "{{value_json.mem}}" //used for hassio
    },{
        "name": "CPU",
        "unit": "%",       //used for hassio
        "icon": "hass:eye", //used for hassio
        "template": "{{value_json.cpu}}" //used for hassio
    }]
  }]
}

Usage

Start the tool with the path to the config file and the URL of the MQTT broker

mqtt-executor -broker tcp://127.0.0.1:1883 -config /path/to/config.json

Enable the Homeassitant discovery support

mqtt-executor -broker tcp://127.0.0.1:1883 -config /path/to/config.json -home-assistant

Trigger command execution

To execute a trigger:

mosquitto_pub -t cmnd/touch/file -m "START"

To interrupt a trigger

mosquitto_pub -t cmnd/touch/file -m "STOP"

Read the trigger state:

mosquitto_sub -t cmnd/touch/file/STATE
  • RUNNING -> the command is running
  • STOPPED -> the command has (not) been executed

Read the trigger result (command's output):

mosquitto_sub -t cmnd/touch/file/RESULT

Get the trigger results

Read the trigger state:

mosquitto_sub -t cmnd/touch/file/STATE
  • RUNNING -> the command is running
  • STOPPED -> the command has (not) been executed

Read the trigger result (command's output):

mosquitto_sub -t cmnd/touch/file/RESULT

Get the (multi) sensor results

Read the trigger state:

mosquitto_sub -t tele/+/memory/free

About

A simple MQTT client written in go that subscribes to a configurable list of MQTT topics on the specified broker and executes a given shell script/command whenever a message arrives.

License:MIT License


Languages

Language:Go 93.1%Language:Shell 6.6%Language:Dockerfile 0.3%