All Projects → nathan-K- → mqttbeat

nathan-K- / mqttbeat

Licence: other
Elasticsearch beat to save messages received with the MQTT protocol.

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mqttbeat

Hermes
Tiny MQTT broker written in Go
Stars: ✭ 50 (+177.78%)
Mutual labels:  mqtt, broker
Crossbar
Crossbar.io - WAMP application router
Stars: ✭ 1,957 (+10772.22%)
Mutual labels:  mqtt, broker
Mqtt
MQTT broker written in D, using vibe.d
Stars: ✭ 59 (+227.78%)
Mutual labels:  mqtt, broker
gmqtt
Golang MQTT Broker.
Stars: ✭ 75 (+316.67%)
Mutual labels:  mqtt, broker
Vernemq
A distributed MQTT message broker based on Erlang/OTP. Built for high quality & Industrial use cases.
Stars: ✭ 2,628 (+14500%)
Mutual labels:  mqtt, broker
Volantmq
High-Performance MQTT Server
Stars: ✭ 785 (+4261.11%)
Mutual labels:  mqtt, broker
Moquette
Java MQTT lightweight broker
Stars: ✭ 1,897 (+10438.89%)
Mutual labels:  mqtt, broker
Mosquitto
Eclipse Mosquitto - An open source MQTT broker
Stars: ✭ 5,794 (+32088.89%)
Mutual labels:  mqtt, broker
emqx-docs-en
EMQ X Broker Documentation
Stars: ✭ 12 (-33.33%)
Mutual labels:  mqtt, broker
Enmasse
EnMasse - Self-service messaging on Kubernetes and OpenShift
Stars: ✭ 185 (+927.78%)
Mutual labels:  mqtt, broker
Activemq Artemis
Mirror of Apache ActiveMQ Artemis
Stars: ✭ 685 (+3705.56%)
Mutual labels:  mqtt, broker
MQTT.jl
An asynchronous MQTT client library for julia
Stars: ✭ 15 (-16.67%)
Mutual labels:  mqtt, broker
Hivemq Community Edition
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5. It is the foundation of the HiveMQ Enterprise Connectivity and Messaging Platform
Stars: ✭ 562 (+3022.22%)
Mutual labels:  mqtt, broker
Emqx
An Open-Source, Cloud-Native, Distributed MQTT Message Broker for IoT.
Stars: ✭ 8,951 (+49627.78%)
Mutual labels:  mqtt, broker
Ejabberd
Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server)
Stars: ✭ 5,077 (+28105.56%)
Mutual labels:  mqtt, broker
Rumqttd
rust mqtt broker
Stars: ✭ 77 (+327.78%)
Mutual labels:  mqtt, broker
pubsubbeat
An Elastic Beat to ingest data from Google Pub/Sub
Stars: ✭ 40 (+122.22%)
Mutual labels:  beats, elasticbeats
Mqttnet
MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.
Stars: ✭ 2,486 (+13711.11%)
Mutual labels:  mqtt, broker
ccu-addon-mosquitto
Mosquitto packaged as Addon for the Homematic CCU3 and RaspberryMatic
Stars: ✭ 23 (+27.78%)
Mutual labels:  mqtt, broker
aedes-cli
Run Aedes MQTT Broker from the CLI
Stars: ✭ 29 (+61.11%)
Mutual labels:  mqtt, broker

Mqttbeat

Go Report Card

Welcome to Mqttbeat.

This beat will allow you to put MQTT messages in an elasticsearch instance.

Ensure that this folder is at the following location: ${GOPATH}/github.com/nathan-k-/mqttbeat

Support

Hello, this project is no longer under work. Feel free to fork it, adapt it to your need, and improve it ! Cheers,

Getting Started with Mqttbeat

Requirements

  • Golang 1.7 (1.8 recommended)

Init Project

To get running with Mqttbeat and also install the dependencies, run the following command, with glide installed:

glide install
pip install virtualenv (for the testsuite)
make setup

It will create a clean git history for each major step. Note that you can always rewrite the history if you wish before pushing your changes.

To push Mqttbeat in the git repository, run the following commands:

git remote set-url origin https://github.com/nathan-k-/mqttbeat
git push origin master

For further development, check out the beat developer guide.

Build

To build the binary for Mqttbeat run the command below. This will generate a binary in the same directory with the name mqttbeat.

make

Run

To run Mqttbeat with debugging output enabled, run:

./mqttbeat -c mqttbeat.yml -e -d "*"

Test

To test Mqttbeat, run the following command:

make testsuite

alternatively:

make unit-tests
make system-tests
make integration-tests
make coverage-report

The test coverage is reported in the folder ./build/coverage/

Update

Each beat has a template for the mapping in elasticsearch and a documentation for the fields which is automatically generated based on etc/fields.yml. To generate etc/mqttbeat.template.json and etc/mqttbeat.asciidoc

make update

Cleanup

To clean Mqttbeat source code, run the following commands:

make fmt
make simplify

To clean up the build directory and generated artifacts, run:

make clean

Clone

To clone Mqttbeat from the git repository, run the following commands:

mkdir -p ${GOPATH}/github.com/nathan-k-/
cd ${GOPATH}/github.com/nathan-k-/
git clone https://github.com/nathan-k-/mqttbeat

For further development, check out the beat developer guide.

Packaging

The beat frameworks provides tools to crosscompile and package your beat for different platforms. This requires docker and vendoring as described above. To build packages of your beat, run the following command:

make package

This will fetch and create all images required for the build process. The hole process to finish can take several minutes.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].