Categorygithub.com/clementlgl/mqforward
modulepackage
0.0.0-20220411121755-9cb3b66fe4fe
Repository: https://github.com/clementlgl/mqforward.git
Documentation: pkg.go.dev

# README

mqforward

mqforward is forwarder from MQTT to Influxdb. This subscribes a topic with wildcard and forward a payload to Influxdb. The value should be JSON or msgpack.

for example,

  • Publish {"a": 1, "b": 2} to "mqforward/a/b",
  • Subscribe "mqforward/#",

in the influxdb,

  • value a=1 and b=2 into the a.b series. so you can SELECT a, b FROM "a.b"

If udp is true in the config, send series over UDP to InfluxDB. otherwise, use HTTP.

usage

install +++++++++++++++

Just go get (it takes for a while)

::

$ go get github.com/shirou/mqforward

then, type

::

$ go install github.com/shirou/mqforward

config +++++++++++++++

Config example is below. If you put config to ~/.mqforward.ini, it will be loaded automatically.

::

[mqforward-mqtt] hostname= localhost port = 1883 username= "" password= "" topic = mqforward/#

[mqforward-influxdb] hostname = 127.0.0.1 port = 4444 db = test username = root password = root

run +++++++++++++++

Set path to $GOPATH/bin,

::

$ mqforward run

or

::

mqforward run -c someconfig.ini

license

MIT

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
with Connects connect to the MQTT broker with Options.
No description provided by the author

# Constants

No description provided by the author
bufferd size to send influxDB.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author