oitc/mqtt2elasticsearch

By oitc

Updated 2 months ago

Reads json formatted mqtt messages and stores them into an elasticsearch database.

Image
Developer Tools

61

Quick reference

Maintained by: Michael Oberdorf IT-Consulting

Source code: GitHub

Container image: DockerHub

Supported tags and respective Dockerfile links

Summary

The container image is based on Alpine Linux with python3 interpreter. The tool is written in python and connects to a MQTT server and subscripes to one ore more topics. All messages in that topic will be pushed to an elasticsearch server.

Prerequisites to run the docker container

  1. You need a MQTT server to read the data from the topics.
  2. You need an elasticsearch v8 database to store the data inside.

Configuration

Container configuration

The container grab some configuration via environment variables.

Environment variable nameDescriptionRequiredDefault value
CONFIG_FILEThe general configuration file that contains the connection parameters to MQTT and ElasticsearchOPTIONAL/app/etc/mqtt2elasticsearch.json
ELASTICSEARCH_MAPPING_FILEThe MQTT topics and the associated Elasticsearch index configuration for the messages.OPTIONAL/app/etc/mqtt2elasticsearch-mappings.json

General configuration file

The path and filename to the general configuration file can be set via environment variable CONFIG_FILE. By default, the script will use /app/etc/mqtt2elasticsearch.json.

Inside this file we need to configure the Elasticsearch and MQTT server connection parameters.

Example
{
"DEBUG": true,
"removeIndex": false,
"elasticsearch": {
  "cluster": [ "http://elasticsearch:9200/" ]
  },
"mqtt": {
  "client_id": "mqtt2elasticsearch",
  "user": "mqtt2elasticsearch",
  "password": "myPassword",
  "server": "test.mosquitto.org",
  "port": 1883,
  "tls": false,
  "hostname_validation": true,
  "protocol_version": 3
  }
}
Field description
FieldTypeDescription
DEBUGBooleanEnable debug output on stdout
removeIndexBooleanIf this flag is set to true, the script will remove the Elasticsearch index and exits.
elasticsearchObjectContains Elasticsearch specific configuration parameters.
elasticsearch.clusterArrayContains a list of Eleasticsearch cluster node URLs.
mqttObjectContains MQTT specific configuration parameters.
mqtt.client_idStringThe MQTT client identifier.
mqtt.userStringThe username to authenticate to the MQTT server.
mqtt.passwordStringThe password to authenticate to the MQTT server.
mqtt.serverStringIP address or FQDN of the MQTT server.
mqtt.portStringThe TCP port number of the MQTT server.
mqtt.tlsBooleanIf a TLS encrpted communication should be established or not.
mqtt.hostname_validationBooleanValidate the hostname from the servercertificate or not.
mqtt.protocol_versionIntegerThe MQTT protocol version. Can be 3 (for MQTTv311) or 5 (for MQTTv5).

Elasticsearch index configuration file

The path and filename to the Elasticsearch index configuration file can be set via environment variable ELASTICSEARCH_MAPPING_FILE. By default, the script will use /app/etc/mqtt2elasticsearch-mappings.json.

Inside this file we need to configure the MQTT topic and the associated Elasticsearch index with it's configuration.

Example

This is minimal example. The JSON file contains the MQTT topic as key. Every topic contains the associated Elasticsearch index and an optional index configuration. You can use placeholder inside the index name. Following will be translated on the fly:

  • {Y}: the 4-digit year
  • {m}: the 2-digit month
  • {d}: the 2-digit day
{
  "de/oberdorf-itc/some/topic": {
    "elasticIndex": "mydata-{Y}-{m}",
    "elasticBody": {
    }
  }
}

A full blown example can be found here: speedtest2mqtt-elasticsearch-mapping.json.

Field description
FieldTypeDescription
<topic>StringThe MQTT topic to subscripe to
<topic>.elasticIndexStringThe name of the Elasticsearch index. Allowed placeholders are {Y} (year), {m} (month) and {d} (day)
<topic>.elasticBodyObjectThe Elastic index configuration as documented here: Create index API

Running the container image

docker run --rm oitc/mqtt2elasticsearch:latest

Docker compose configuration

version: '3.8'

services:
  elasticsearch:
    restart: always
    image: elasticsearch:8.10.2
    container_name: elasticsearch
    hostname: elasticsearch
    environment:
      - cluster.name=docker-cluster
      - discovery.type=single-node
      - bootstrap.memory_lock=true
      - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
      - xpack.security.enabled=false
      - xpack.security.enrollment.enabled=false
    ulimits:
      memlock:
        soft: -1
        hard: -1
    ports:
      - 9200:9200
    volumes:
      - /srv/docker/elasticsearch/data:/usr/share/elasticsearch/data
    healthcheck:
      test: ["CMD", "wget", "http://localhost:9200", "-O-"]
      interval: 1s
      timeout: 1s
      retries: 120

  kibana:
    restart: always
    image: kibana:8.10.2
    container_name: kibana
    hostname: kibana
    ports:
      - 5601:5601
    volumes:
      - /srv/docker/kibana/etc:/usr/share/kibana/config
    depends_on:
      - elasticsearch

  mqtt2elasticsearch:
    restart: always
    image: oitc/mqtt2elasticsearch
    container_name: mqtt2elasticsearch
    hostname: mqtt2elasticsearch
    volumes:
      - /srv/docker/mqtt2elasticsearch/etc/speedtest2mqtt-elasticsearch-mapping.json:/app/etc/mqtt2elasticsearch-mappings.json:ro
    depends_on:
      - elasticsearch

  speedtest2mqtt:
    container_name: speedtest2mqtt
    restart: always
    read_only: true
    user: 2536:2536
    image: oitc/speedtest2mqtt
    environment:
      MQTT_SERVER: test.mosquitto.org
      MQTT_PORT: 1883
      MQTT_TOPIC: de/oberdorf-itc/speedtest2mqtt/results
      FREQUENCE: 300
    secrets:
      - speedtest2mqtt_mqtt_password
    tmpfs:
      - /tmp

secrets:
  speedtest2mqtt_mqtt_password:
    file: /srv/docker/speedtest2mqtt/secrets/mqtt_password

Donate

I would appreciate a small donation to support the further development of my open source projects.

Donate with PayPal

License

Copyright (c) 2023-2024 Michael Oberdorf IT-Consulting

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Docker Pull Command

docker pull oitc/mqtt2elasticsearch