Maintained by: Michael Oberdorf IT-Consulting
Source code: GitHub
Container image: DockerHub
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 or opensearch server.
- You need a MQTT server to read the data from the topics.
- You need an elasticsearch v8 / or opensearch v2 database to store the data inside.
The container grab some configuration via environment variables.
| Environment variable name | Description | Required | Default value | 
|---|---|---|---|
| CONFIG_FILE | The general configuration file that contains the connection parameters to MQTT and Elasticsearch | OPTIONAL | /app/etc/mqtt2elasticsearch.json | 
| ELASTICSEARCH_MAPPING_FILE | The MQTT topics and the associated Elasticsearch index configuration for the messages. | OPTIONAL | /app/etc/mqtt2elasticsearch-mappings.json | 
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 (or Opensearch) and MQTT server connection parameters.
{
"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
  }
}{
"DEBUG": true,
"removeIndex": false,
"opensearch": {
  "hosts": [
    {
      "host": "opensearch",
      "port": 9200
    }
  ],
  "tls": true,
  "verify_certs": true,
  "username": "admin",
  "password": "admin"
  },
"mqtt": {
  "client_id": "mqtt2elasticsearch",
  "user": "mqtt2elasticsearch",
  "password": "myPassword",
  "server": "test.mosquitto.org",
  "port": 1883,
  "tls": false,
  "hostname_validation": true,
  "protocol_version": 3
  }
}| Field | Type | Description | 
|---|---|---|
| DEBUG | Boolean | Enable debug output on stdout | 
| removeIndex | Boolean | If this flag is set to true, the script will remove the Elasticsearch index and exits. | 
| elasticsearch | Object | Contains Elasticsearch specific configuration parameters. | 
| elasticsearch.cluster | Array | Contains a list of Eleasticsearch cluster node URLs. | 
| elasticsearch.api_ley | String | Optional api_key if Elasticsearch requires authentication. | 
| opensearch | Object | Contains Opensearch specific configuration parameters. | 
| opensearch.hosts | Array | Contains a list of Opensearch hosts objects. | 
| opensearch.hosts[].host | String | Opensearch hostname (fqdn) or IP address. | 
| opensearch.hosts[].port | String | Optional Opensearch TCP port (Default: 9200). | 
| opensearch.username | String | Optional username for authentication (Default: null). | 
| opensearch.password | String | Optional password for authentication (Default: null. | 
| opensearch.tls | Boolean | Optional if a TLS encrpted communication should be established or not (Default: false). | 
| opensearch.verify_certs | Boolean | Optional to validate the server certificate ort not (Default: false). | 
| opensearch.ca_certs_path | String | Optional path to CA certs (Default: "/etc/ssl/certs/ca-certificates.crt"). | 
| mqtt | Object | Contains MQTT specific configuration parameters. | 
| mqtt.client_id | String | The MQTT client identifier. | 
| mqtt.user | String | The username to authenticate to the MQTT server. | 
| mqtt.password | String | The password to authenticate to the MQTT server. | 
| mqtt.server | String | IP address or FQDN of the MQTT server. | 
| mqtt.port | String | The TCP port number of the MQTT server. | 
| mqtt.tls | Boolean | If a TLS encrpted communication should be established or not. | 
| mqtt.hostname_validation | Boolean | Validate the hostname from the servercertificate or not. | 
| mqtt.protocol_version | Integer | The MQTT protocol version. Can be 3 (for MQTTv311) or 5 (for MQTTv5). | 
The path and filename to the Elasticsearch/Opensearch 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/Opensearch index with it's configuration.
This is minimal example. The JSON file contains the MQTT topic as key. Every topic contains the associated Elasticsearch/Opensearch 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": {
    }
  }
}Full blown examples can be found here:
| Field | Type | Description | 
|---|---|---|
| <topic> | String | The MQTT topic to subscripe to | 
| <topic>. elasticIndex | String | The name of the Elasticsearch index. Allowed placeholders are {Y}(year),{m}(month) and{d}(day) | 
| <topic>. elasticBody | Object | The Elastic index configuration as documented here: Create index API | 
docker run --rm oitc/mqtt2elasticsearch:latest
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_passwordI would appreciate a small donation to support the further development of my open source projects.
Copyright (c) 2023-2025 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.
