Git Product home page Git Product logo

meshtastic-bridge's Introduction

Meshtastic Monitoring Bridge

(was Prometheus Meshtastic Exporter)

WORK IN PROGRESS

Built on the Meshtastic Python API: https://github.com/meshtastic/python/

Originally just a prometheus exporter for meshtastic nodes, this project has expanded to cover converting and mapping meshtastic data with a simple plugin architecture; now supporting prometheus, message logging, APRS-IS and MQTT sources and targets. This was expanded as the Meshtastic code is not designed to handle multiple clients connected to the API simultaniously, and this project evolved to support exporting to more targets.

This has only been tested against the Linux Native meshtastic build running in simulator mode connected to the global MQTT server (using the msh/ANZ root) and tracks those simulator packets as "radio" packets.

The exporter expects to find a meshtastic simulator on localhost, instructions for setting up the Linux Native build can be found at https://meshtastic.org/docs/software/linux-native/.

Using Docker

The simplest way to get running is using Docker.
Use docker build to create an image:

docker build -t meshmon:latest .

To run the container:

docker run -d \
    -p 8000:8000 \
    --restart=unless-stopped \
    --name meshalpha-mon \
    -v /data/meshtastic/alpha/log:/data:rw \
    -e MESHTASTIC_HOST=172.17.0.4 \
    -e PROMETHEUS_PORT=8000 \
    -e MQTT_HOST=10.10.1.100 \
    -e MQTT_TELEMETRY_UPDATE=300 \
    -e MESH_MESSAGE_LOG=/data/messages.txt \
    -e APRS_CALLSIGN=VK2WAY-14 \
    -e APRS_PASSWORD=REDACTED \
    -e APRS_TEXT="(MQTT,ANZ,LongFast,Alpha)" \
    meshmon:latest

For more information on getting a node in a docker container see NODE.md and Dockerfile.node

Configuration

Configuration is currently entirely by environment variable; specifically designed for use with Docker.

  • MESHTASTIC_HOST - Hostname or IP of Meshtastic Node (localhost)
  • MESH_LOCATION_SOURCE - Source of position data for generating APP_POSITION packets.

Additional configuration can be specified for each plugin as specified in the relevant section.

MESH_LOCATION_SOURCE

Specify where the location data for APP_POSITION packets comes from. If unset no position data for this node will be updated, however some modules may still beacon a stored location from the node.

  • mqtt - Use the MQTT plugin to get GPS locations, topics specified in plugin code.
  • gpsd - Connect to GPSd to get GPS locations for publishing POSITION_APP

Plugin Architecture

As functionality expanded quickly a simple class based plugin system was adopted.

Current plugins:

  • aprs - Publish node positions to APRS
  • gpsd - Get current position from GPSd
  • prometheus - Original Prometheus interface
  • mqtt - Listen for telemetry & GPS data from MQTT topics to publish
  • message_logger - Log text message applications to message log

To enable/disable plugins please comment them from the PLUGINS array in mon.py

Prometheus

Current Metrics

The exporter currently splits packets into "radio" (packets coming from SIMULATOR_APP port) and "local" (packets to/from the node in question, including packets to ^all).

  • sim_packets_app - Packets seen by the simulated radio by application portnum
  • sim_packets_sender - Packets seen by the simulated radio by sender ID
  • local_packets_app - Packets seen by the local node by application portnum
  • local_packets_sender - Packets seen by the local node by sender ID
  • node_channel_util - Channel Utilisation as reported in deviceTelemetry by sender ID
  • node_airtx_util - Air Utilisation as reported in deviceTelemetry by sender ID

The node counts are now split into four different metrics; historically the metrics collected by this tool were nodes seen in lastHeard over the last 5 minutes; however as this differs from Meshtastic's own reporting period (2 hours) so both are now available.

The meshtastic lastHeard also depends upon specific packet types destined to the localNode; the node_seen metrics now report all packets seen through the simulated radio too (packets routed not destined for localNode).

  • node_count - Node count as reported by lastHeard in last 5 minutes
  • node_count_2h - Node count as reported by lastHeard in last 2 hours
  • node_seen - Node count by packets sniffed in last 5 minutes
  • node_seen_2h - Node count by packets sniffed in last 2 hours

Configuration

  • PROMETHEUS_PORT - Port to listen on for prometheus (None).

If prometheus port is not specified prometheus metrics will not be exported.

GPSd

Connect to a server running GPSd and update current position using this data.

A POSITION_APP report will be generated at the specified interval.

Configuration

  • GPSD_HOST - Hostname or IP Address to connect to (local instance)
  • GPSD_PORT - Port number for GPSd (2947)
  • MESH_LOCATION_UPDATE - How frequently to publish new POSITION_APP packet
  • MESH_LOCATION_SOURCE - Must be set to 'gpsd' for this plugin to function

MQTT

See the plugin script for the topic to data mapping. Telemetry and position are updated every UPDATE_SECONDS seconds (as defined in script).

The MQTT Host can be set in MQTT_HOST.

Additionally two other topics are used:

  • TOPIC_TEXT_MESSAGE_PUBLISH - A copy of the payload of each text message on the default channel will be published here.
  • TOPIC_TEXT_MESSAGE_SEND - Send a text message to the default channel with the contents of the MQTT message

"mqtt" may be specified as a MESH_LOCATION_SOURCE which will update the nodes position from MQTT topic specified in the code.

Configuration

MQTT Plugin will not be activated if MQTT_HOST is not specified

  • MQTT_HOST - Hostname or IP of the MQTT Broker to connect to (None)
  • MQTT_TELEMETRY_UPDATE - Number of seconds between sending MQTT Telemetry Data (300)

Message Logging

The script now also logs all TEXT_MESSAGE_APP payloads processed on local to messages.txt.

Channel number logging appears to be based on the sender's channel not the locally matched channel. This is an API issue.

Configuration

  • MESH_MESSAGE_LOG - Filepath to the messages.txt log file (messages.txt)

APRS

Node positions can be exported to APRS via APRS-IS.

Configuration

  • APRS_CALLSIGN - Callsign for logging into APRS-IS
  • APRS_PASSWORD - Password for logging into APRS-IS
  • APRS_SERVER - Server to connect to (rotate.aprs2.net)
  • APRS_PORT - Server port to connect to (14580)
  • APRS_TEXT - Text to append to APRS comment (MQTT,ANZ,Longfast)
  • APRS_BEACON - Beacon interval for master node (self) beacon

APRS_LOCATION is now deprecated and the node position is retrieved instead.

The APRS plugin will not start without the CALLSIGN and PASSWORD provided

Get Started

To get up and running; create a python virtual environment and run:

pip install -r requirements.txt

To start the scraper:

python3 mon.py

Set environment variables before starting to enable and utilise additional functionality as documented above.

To Do

  • Add GPSd support
  • Ongoing - Configuration Options
  • Better error trapping in threads

meshtastic-bridge's People

Contributors

jaredquinn avatar

Stargazers

Martin May avatar Bohdan Turkynevych avatar Rae Forbes-Richardson avatar kn0x avatar  avatar Daniel Park avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.