Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.04 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.04 KB

trunk-recorder-mqtt-node

Trunk Recorder MQTT Node-RED example flows using the following add-ons:

node-red-dashboard
node-red-node-ui-table

and the "Everything over MQTT" fork of the trunk-recorder plugin.

  1. Message rate graphs by system

  2. Call rate graphs by system

  3. Unit and talkgroup affiliations

  4. Active calls and recorders

  5. Optional Console and Trunk Message logs

For persistent data, it's recommended to save context storage to disk by editing the node-red settings.js:

    contextStorage: {
        default: {
            module:"localfilesystem",
            config: {
                flushInterval: 60
           }
        },
        memoryOnly: {
            module: 'memory'
        },
    },