Skip to content

klawr/mqtt-inspector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mqtt-inspector

Simple service to connect to mqtt brokers and monitor the messages coming through. Distributes all topics to all connected clients using websockets.

Features:

  • Connect to multiple brokers at once
  • Explore all topics coming through on a broker
  • Save pipelines to visualize them effectively
  • Publish commands
  • Save favorite commands for publishing
  • Retain messages in the backend

Deployment:

Using docker directly

docker run -p 3030:3030 -v ./config:/srv/config ghcr.io/klawr/mqtt-inspector:latest

Using compose:

services:
  mqtt-inspector:
    image: ghcr.io/klawr/mqtt-inspector:latest
    container_name: mqtt-inspector
    ports:
      - 3030:3030
    volumes:
      - ./config:/srv/config