klawr / mqtt-inspector

MIT License
2 stars 1 forks source link

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:

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