[{"data":1,"prerenderedAt":6170},["ShallowReactive",2],{"blog-\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red":3,"featureCatalog":5241,"changelog-titles":5635,"blog-all-for-related":6169},{"id":4,"title":5,"authors":6,"body":8,"cta":5218,"date":5219,"description":5220,"extension":5221,"features":5218,"image":5218,"lastUpdated":5222,"meta":5223,"navigation":5229,"path":5230,"release":5218,"seo":5231,"sitemap":5232,"stem":5233,"subtitle":5234,"tags":5235,"tldr":5239,"video":5218,"__hash__":5240},"blog\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red.md","MQTT Sparkplug B Implementation: Protocol, Architecture & Best Practices",[7],"sumit-shinde",{"type":9,"value":10,"toc":5190},"minimark",[11,15,20,41,44,49,65,68,79,86,95,99,102,106,109,112,119,123,126,129,133,152,155,159,162,165,168,171,175,186,193,197,205,209,219,230,234,237,240,244,270,274,291,294,594,598,601,608,615,623,626,630,633,654,658,691,702,706,874,885,899,908,919,925,1971,1975,2009,2017,2606,2610,2613,2625,2674,2677,2719,2730,2737,4067,4070,5100,5109,5113,5116,5169,5173,5176,5179,5186],[12,13,14],"p",{},"Connected devices can generate a lot of data, but without a standardized format, managing and consuming it can be tricky. MQTT certainly simplifies getting your messages delivered but it does not enforce any structure. This is where MQTT Sparkplug B helps by providing a clear, standardized format for data. In this guide, we’ll show you how to use MQTT Sparkplug B with Node-RED to make managing your device data easier and more organized.",[16,17,19],"h2",{"id":18},"what-is-mqtt-sparkplug","What is MQTT Sparkplug?",[12,21,22,23,30,31,35,36,40],{},"MQTT Sparkplug B is an open-source specification governed by the ",[24,25,29],"a",{"href":26,"rel":27},"https:\u002F\u002Fwww.eclipse.org\u002Fprojects\u002Fefsp\u002F",[28],"nofollow","Eclipse Foundation Specification Process (EFSP)",". It defines a standardized MQTT topic namespace and payload format specifically designed for Industrial IoT (IIoT), with particular focus on real-time ",[24,32,34],{"href":33},"\u002Fsolutions\u002Fscada\u002F","SCADA",", control systems, and ",[24,37,39],{"href":38},"\u002Fblog\u002F2025\u002F11\u002Fbuilding-hmi-for-equipment-control\u002F","HMI"," solutions.",[12,42,43],{},"At its core, Sparkplug B extends MQTT 3.1.1 by adding structured topic namespace conventions, Google Protocol Buffer encoded payloads, state-aware birth and death certificates, metric aliasing for bandwidth optimization, and store-and-forward capabilities for intermittent connectivity. These additions transform MQTT from a simple messaging protocol into a complete industrial communication framework.",[45,46,48],"h3",{"id":47},"the-industrial-integration-problem","The Industrial Integration Problem",[12,50,51,52,56,57,60,61,64],{},"In typical factory environments, every machine manufacturer implements MQTT differently. Consider a real-world scenario where Machine A publishes temperature data to ",[53,54,55],"code",{},"factory\u002Fline1\u002Ftemp"," with a JSON payload containing the temperature value. Meanwhile, Machine B sends its data to ",[53,58,59],{},"sensors\u002FmachineB\u002Fenv"," with a completely different JSON structure that includes both temperature and timestamp. Machine C takes yet another approach, publishing raw numeric values to ",[53,62,63],{},"data\u002Fmc\u002Fstatus"," with no context or metadata.",[12,66,67],{},"Each device requires custom parsing logic, error handling, and documentation. Integration complexity grows exponentially with each new device type. Your development team spends weeks building and maintaining custom parsers instead of focusing on business logic.",[12,69,70,75],{},[71,72],"img",{"alt":73,"src":74},"Manufacturing dashboard struggling with non-standardized MQTT data from multiple sources","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fwith-plane-mqtt.png",[76,77,78],"em",{},"Dashboard complexity increases exponentially without standardized data formats",[12,80,81,82,85],{},"With Sparkplug B standardization, all devices publish to structured topics following the format ",[53,83,84],{},"spBv1.0\u002FFactory\u002FDDATA\u002FLine1\u002FMachineA"," with consistent Protocol Buffer payloads. Each message contains typed metrics, timestamps, and quality indicators. Integration becomes predictable and maintainable. When you add a new device, it automatically describes its capabilities through birth certificates, eliminating the need for custom integration code.",[12,87,88,92],{},[71,89],{"alt":90,"src":91},"Manufacturing dashboard efficiently processing standardized Sparkplug B data","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fwith-sparkplug.png",[76,93,94],{},"Standardized format enables reliable data aggregation across heterogeneous devices",[16,96,98],{"id":97},"sparkplug-b-architecture-patterns","Sparkplug B Architecture Patterns",[12,100,101],{},"Several architectural patterns have emerged from production Sparkplug B deployments. Understanding these patterns helps you design scalable, maintainable systems.",[45,103,105],{"id":104},"edge-node-architecture","Edge Node Architecture",[12,107,108],{},"The edge node serves as the gateway between physical devices and the MQTT broker. A single edge node typically manages multiple devices, publishing aggregate birth certificates and handling communication for all attached devices. This centralized approach simplifies device management and reduces broker connections.",[12,110,111],{},"Edge nodes implement store-and-forward buffering to handle temporary connectivity loss. When the broker becomes unreachable, the edge node buffers data locally. After reconnection, it publishes buffered data with historical flags set, allowing applications to distinguish between real-time and historical data.",[12,113,114,115,118],{},"The edge node monitors broker connectivity and automatically publishes ",[53,116,117],{},"NBIRTH"," after reconnection. It manages sequence numbers across all messages from its devices, enabling applications to detect lost messages. Many edge nodes implement local data processing, filtering, and aggregation before publishing to reduce bandwidth and broker load.",[45,120,122],{"id":121},"primary-application-pattern","Primary Application Pattern",[12,124,125],{},"The primary application concept allows edge nodes to adapt their behavior based on application state. A designated primary application publishes STATE messages indicating its operational status. Edge nodes subscribe to these STATE messages and adjust their reporting frequency or metrics based on whether the primary application is online.",[12,127,128],{},"For example, an edge node might publish data every second when the primary SCADA application is connected but reduce to every 60 seconds when no primary application is available. This adaptive behavior conserves bandwidth and broker resources while ensuring data availability when needed.",[45,130,132],{"id":131},"command-and-control-flow","Command and Control Flow",[12,134,135,136,139,140,143,144,147,148,151],{},"Sparkplug B enables bidirectional communication through ",[53,137,138],{},"NCMD"," and ",[53,141,142],{},"DCMD"," messages. Applications publish commands to specific topics, and edge nodes or devices execute the commands and respond with updated metric values in ",[53,145,146],{},"NDATA"," or ",[53,149,150],{},"DDATA"," messages.",[12,153,154],{},"Command messages use the same Protocol Buffer format as data messages but flow in the opposite direction. Applications might send a write command to change a setpoint, a rebirth command to request fresh birth certificates, or a custom command to trigger device-specific actions. The standardized command structure enables generic control applications that work with any Sparkplug-compliant device.",[16,156,158],{"id":157},"the-mqtt-sparkplug-specification-for-iiot","The MQTT Sparkplug Specification for IIoT",[12,160,161],{},"Now that we have an overview of Sparkplug B and its role in standardizing data formats, it’s time to dive deeper into how this protocol structures its payloads and topics. Understanding these details will give you insight into how Sparkplug B efficiently manages data in complex industrial environments and will assist you in implementing it effectively in your own projects.",[12,163,164],{},"Sparkplug B utilizes Google Protocol Buffers (Protobufs) for encoding its messages. Protobufs offer a compact and fast way to serialize structured data, preserving MQTT's lightweight nature while introducing a robust framework for handling complex data.",[45,166,158],{"id":167},"the-mqtt-sparkplug-specification-for-iiot-1",[12,169,170],{},"The Sparkplug B specification addresses critical industrial requirements that standard MQTT implementations typically handle inconsistently. The specification is built around several core concepts that work together to create a robust industrial messaging framework.",[45,172,174],{"id":173},"topic-namespace-architecture","Topic Namespace Architecture",[12,176,177,178,181,182,185],{},"Sparkplug B enforces a hierarchical topic namespace that follows a specific pattern: ",[53,179,180],{},"spBv1.0\u002F{group_id}\u002F{message_type}\u002F{edge_node_id}\u002F{device_id}",". The namespace starts with the protocol version identifier ",[53,183,184],{},"spBv1.0",", ensuring clients can identify Sparkplug messages. The group_id provides logical grouping such as factory, building, or region. The message_type specifies whether this is a birth certificate, data update, death notification, or command. The edge_node_id identifies the gateway or edge node, and optionally, a device_id can specify individual devices under that edge node.",[12,187,188,189,192],{},"For example, a temperature sensor in a manufacturing facility might publish to ",[53,190,191],{},"spBv1.0\u002FManufacturing\u002FDDATA\u002FGateway01\u002FTempSensor05",". This structured approach eliminates ambiguity and enables automatic topic subscription patterns.",[45,194,196],{"id":195},"protocol-buffer-payloads","Protocol Buffer Payloads",[12,198,199,200,204],{},"Rather than using JSON or other text-based formats, Sparkplug B employs ",[24,201,203],{"href":202},"\u002Fblog\u002F2025\u002F12\u002Fnode-red-buffer-parser-industrial-data\u002F","Google Protocol Buffers"," for message encoding. This choice delivers several advantages in industrial environments. The compact binary format produces significantly smaller messages than JSON, reducing bandwidth consumption on constrained networks. Protocol Buffers provide strongly typed data fields, eliminating parsing ambiguities. The format supports backward compatibility, allowing older clients to work with newer message versions. Finally, efficient parsing performance matters when handling thousands of messages per second.",[45,206,208],{"id":207},"state-management-system","State Management System",[12,210,211,212,214,215,218],{},"The specification includes explicit state awareness through birth and death certificates. When an edge node or device connects to the broker, it publishes a birth certificate (",[53,213,117],{}," for nodes, ",[53,216,217],{},"DBIRTH"," for devices) that declares all available metrics, their data types, and initial values. This self-description capability means applications can discover device capabilities automatically without external configuration files.",[12,220,221,222,225,226,229],{},"When devices disconnect, either gracefully or due to network failure, death certificates (",[53,223,224],{},"NDEATH","\u002F",[53,227,228],{},"DDEATH",") signal the disconnection to all subscribers. The MQTT Last Will and Testament feature ensures death certificates publish even when devices lose connectivity unexpectedly. Sequence numbers in every message enable detection of lost messages, while timestamps provide temporal context for all data points.",[45,231,233],{"id":232},"metric-definition-framework","Metric Definition Framework",[12,235,236],{},"Each metric in Sparkplug B carries comprehensive metadata beyond just a name and value. The specification supports a wide range of data types including various integer sizes (Int8 through Int64, both signed and unsigned), floating-point numbers (Float and Double), Boolean values, strings, timestamps, UUIDs, binary data, and complex structures like datasets and templates.",[12,238,239],{},"Every metric includes a timestamp indicating when the value was captured, not just when it was transmitted. Quality flags indicate whether data is historical (stored and forwarded), transient (not to be stored), or null (sensor failure). This rich metadata enables applications to make informed decisions about data processing and storage.",[45,241,243],{"id":242},"message-types-and-their-purposes","Message Types and Their Purposes",[12,245,246,247,249,250,252,253,255,256,258,259,261,262,264,265,139,267,269],{},"Sparkplug B defines specific message types for different communication needs. ",[53,248,117],{}," messages announce edge node connection and available metrics. ",[53,251,146],{}," messages carry periodic metric updates from edge nodes. ",[53,254,224],{}," messages signal edge node disconnection. ",[53,257,217],{},", ",[53,260,150],{},", and ",[53,263,228],{}," provide the same functions for devices under edge nodes.",[53,266,138],{},[53,268,142],{}," enable command and control, allowing applications to send instructions to nodes and devices. STATE messages, published by primary applications, indicate application health and readiness.",[16,271,273],{"id":272},"sparkplug-b-vs-plain-mqtt-understanding-the-differences","Sparkplug B vs Plain MQTT: Understanding the Differences",[12,275,276,277,281,282,286,287,290],{},"While both ",[24,278,280],{"href":279},"\u002Fblog\u002F2024\u002F06\u002Fhow-to-use-mqtt-in-node-red\u002F","plain MQTT"," and Sparkplug B use the same MQTT transport protocol, they solve ",[283,284,285],"strong",{},"very different problems",".\nPlain MQTT focuses on moving messages reliably, whereas Sparkplug B defines ",[283,288,289],{},"how industrial data should be structured, identified, and managed"," across devices and applications.",[12,292,293],{},"The table below highlights the practical differences that matter when designing real-world IIoT and SCADA systems.",[295,296,297,313],"table",{},[298,299,300],"thead",{},[301,302,303,307,310],"tr",{},[304,305,306],"th",{},"Category",[304,308,309],{},"Plain MQTT",[304,311,312],{},"MQTT Sparkplug B",[314,315,316,330,343,360,373,386,399,412,425,438,451,464,477,490,503,516,529,542,555,568,581],"tbody",{},[301,317,318,324,327],{},[319,320,321],"td",{},[283,322,323],{},"What it is",[319,325,326],{},"Messaging protocol",[319,328,329],{},"Industrial IoT specification built on MQTT",[301,331,332,337,340],{},[319,333,334],{},[283,335,336],{},"Primary purpose",[319,338,339],{},"Message transport",[319,341,342],{},"Standardized industrial data exchange",[301,344,345,350,353],{},[319,346,347],{},[283,348,349],{},"Topic structure",[319,351,352],{},"Fully custom, no enforced rules",[319,354,355,356,359],{},"Strict, standardized namespace (",[53,357,358],{},"spBv1.0\u002F...",")",[301,361,362,367,370],{},[319,363,364],{},[283,365,366],{},"Payload format",[319,368,369],{},"JSON, text, or custom binary",[319,371,372],{},"Google Protocol Buffers (binary, compact)",[301,374,375,380,383],{},[319,376,377],{},[283,378,379],{},"Payload consistency",[319,381,382],{},"Varies by device and vendor",[319,384,385],{},"Guaranteed consistent structure",[301,387,388,393,396],{},[319,389,390],{},[283,391,392],{},"Data typing",[319,394,395],{},"Not enforced",[319,397,398],{},"Strongly typed metrics",[301,400,401,406,409],{},[319,402,403],{},[283,404,405],{},"Device discovery",[319,407,408],{},"Manual configuration",[319,410,411],{},"Automatic via NBIRTH \u002F DBIRTH",[301,413,414,419,422],{},[319,415,416],{},[283,417,418],{},"State awareness",[319,420,421],{},"Limited (LWT only)",[319,423,424],{},"Full lifecycle (BIRTH, DATA, DEATH)",[301,426,427,432,435],{},[319,428,429],{},[283,430,431],{},"Message loss detection",[319,433,434],{},"Not supported",[319,436,437],{},"Sequence numbers included",[301,439,440,445,448],{},[319,441,442],{},[283,443,444],{},"Timestamps",[319,446,447],{},"Optional, application-defined",[319,449,450],{},"Mandatory per metric",[301,452,453,458,461],{},[319,454,455],{},[283,456,457],{},"Data quality flags",[319,459,460],{},"Custom implementation",[319,462,463],{},"Built-in (historical, transient, null)",[301,465,466,471,474],{},[319,467,468],{},[283,469,470],{},"Bandwidth efficiency",[319,472,473],{},"Lower (JSON overhead)",[319,475,476],{},"Higher (protobuf + metric aliasing)",[301,478,479,484,487],{},[319,480,481],{},[283,482,483],{},"Metric aliasing",[319,485,486],{},"Not available",[319,488,489],{},"Supported",[301,491,492,497,500],{},[319,493,494],{},[283,495,496],{},"Command & control",[319,498,499],{},"Custom topics and logic",[319,501,502],{},"Standardized NCMD \u002F DCMD",[301,504,505,510,513],{},[319,506,507],{},[283,508,509],{},"Interoperability",[319,511,512],{},"Low (vendor-specific)",[319,514,515],{},"High (vendor-neutral)",[301,517,518,523,526],{},[319,519,520],{},[283,521,522],{},"Human readability",[319,524,525],{},"High",[319,527,528],{},"Low (binary encoded)",[301,530,531,536,539],{},[319,532,533],{},[283,534,535],{},"Debugging effort",[319,537,538],{},"Easy with basic tools",[319,540,541],{},"Requires Sparkplug-aware tools",[301,543,544,549,552],{},[319,545,546],{},[283,547,548],{},"Scalability",[319,550,551],{},"Depends on custom design",[319,553,554],{},"Designed for large-scale IIoT",[301,556,557,562,565],{},[319,558,559],{},[283,560,561],{},"Security",[319,563,564],{},"MQTT-level (TLS, ACLs)",[319,566,567],{},"MQTT-level (same as plain MQTT)",[301,569,570,575,578],{},[319,571,572],{},[283,573,574],{},"Learning curve",[319,576,577],{},"Low",[319,579,580],{},"Medium to high",[301,582,583,588,591],{},[319,584,585],{},[283,586,587],{},"Best fit use cases",[319,589,590],{},"Small systems, prototypes, simple sensors",[319,592,593],{},"SCADA, HMI, multi-vendor industrial systems",[16,595,597],{"id":596},"using-mqtt-sparkplug-b-with-node-red","Using MQTT Sparkplug B with Node-RED",[12,599,600],{},"Now that we understand what Sparkplug B is and how it structures industrial data, let’s see how to use it in practice with Node-RED.",[12,602,603,607],{},[24,604,606],{"href":605},"\u002Fnode-red\u002F","Node-RED"," is a popular low-code tool for building IoT and industrial data flows. It’s widely used at the edge to connect devices, process data, and integrate with MQTT brokers. With dedicated Sparkplug nodes, Node-RED makes it easy to publish and consume Sparkplug B messages without manually handling topics, protobufs, or state management.",[12,609,610,611,614],{},"To run Node-RED reliably in production, especially for industrial and edge deployments, ",[24,612,613],{"href":225},"FlowFuse"," provides a managed platform for deploying, scaling, and managing Node-RED instances. FlowFuse also includes a built-in MQTT broker, making it simple to get started with Sparkplug B without additional infrastructure.",[12,616,617,622],{},[24,618,621],{"href":619,"rel":620},"https:\u002F\u002Fapp.flowfuse.com\u002Faccount\u002Fcreate",[28],"Create a free FlowFuse account"," to deploy Node-RED, connect devices, and start working with MQTT Sparkplug B in minutes.",[12,624,625],{},"In the following example, we’ll configure a Node-RED flow where a factory machine publishes temperature and humidity data using Sparkplug B, and then consumes that data downstream.",[45,627,629],{"id":628},"prerequisite","Prerequisite",[12,631,632],{},"Before you begin, ensure you have the following:",[634,635,636,646],"ul",{},[637,638,639,640,645],"li",{},"node-red-contrib-mqtt-sparkplug-plus: Install this ",[24,641,644],{"href":642,"rel":643},"https:\u002F\u002Fflows.nodered.org\u002Fnode\u002Fnode-red-contrib-mqtt-sparkplug-plus",[28],"Node-RED package for Sparkplug B"," support via palette manager.",[637,647,648,649,653],{},"MQTT Broker: An MQTT broker is required to send and receive data between clients. If you do not already have one, FlowFuse offers a built-in MQTT broker service that simplifies the process of using MQTT with Node-RED, no external setup required. To learn how to use the FlowFuse MQTT Broker and create and manage clients, refer to the ",[24,650,652],{"href":651},"\u002Fdocs\u002Fuser\u002Fteambroker\u002F","FlowFuse MQTT documentation",".",[45,655,657],{"id":656},"configuring-node-red-for-mqtt-sparkplug-b","Configuring Node-RED for MQTT Sparkplug B",[659,660,661,664,667,682,685,688],"ol",{},[637,662,663],{},"Drag any mqtt sparkplug node onto the canvas.",[637,665,666],{},"Double-click the mqtt sparkplug node to open the configuration panel.",[637,668,669,670,673,674,677,678,681],{},"Click the \"+\" icon next to the \"Broker\" field. Enter your MQTT broker's host address (e.g., ",[53,671,672],{},"broker.flowfuse.cloud","), specify the port number (e.g., ",[53,675,676],{},"1883"," for unencrypted or ",[53,679,680],{},"8883"," for TLS), and configure the TLS settings if required. Enter the username and password, enter a Client ID, Set the \"Keep Alive\" interval (default is 60 seconds).",[637,683,684],{},"Switch to the Sparkplug tab by clicking the Sparkplug option in the top-right corner.",[637,686,687],{},"Enter a name in the \"Name\" field (this will be the Edge Node ID). Enter the group name in the \"Group\" field. Select \"No\" for the compression setting. Enable the \"Use Alias for Metrics\" option if you prefer not to send the full metric names every time and use aliases instead.",[637,689,690],{},"Click \"Add\" to save the configuration.",[12,692,693,697,700],{},[71,694],{"alt":695,"src":696,"title":695},"Screenshot showing the configuration of Sparkplug broker config node","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-broker-config.png",[698,699],"br",{},[76,701,695],{},[45,703,705],{"id":704},"sending-data-to-mqtt-with-sparkplug-b","Sending Data to MQTT with Sparkplug B",[659,707,708,868,871],{},[637,709,710,711,714,715],{},"Drag the inject node onto the canvas. Set the ",[53,712,713],{},"msg.payload"," to the metrics you want to send and set the repeat interval according to your preference. This inject node could be any node that triggers the data sending. For testing purpose, you can use the following JSONata expression to simulate temperature and humidly metrics:",[716,717,722],"pre",{"className":718,"code":719,"language":720,"meta":721,"style":721},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n    \"metrics\": [\n        {\n            \"name\": \"sensor\u002Ftemperature\",\n            \"value\": $random() * 100\n        },\n        {\n            \"name\": \"sensor\u002Fhumidity\",\n            \"value\": $random() * 100\n        }\n    ]\n}\n","json","",[53,723,724,733,752,758,784,804,810,815,835,850,856,862],{"__ignoreMap":721},[725,726,729],"span",{"class":727,"line":728},"line",1,[725,730,732],{"class":731},"sMK4o","{\n",[725,734,736,739,743,746,749],{"class":727,"line":735},2,[725,737,738],{"class":731},"    \"",[725,740,742],{"class":741},"spNyl","metrics",[725,744,745],{"class":731},"\"",[725,747,748],{"class":731},":",[725,750,751],{"class":731}," [\n",[725,753,755],{"class":727,"line":754},3,[725,756,757],{"class":731},"        {\n",[725,759,761,764,768,770,772,775,779,781],{"class":727,"line":760},4,[725,762,763],{"class":731},"            \"",[725,765,767],{"class":766},"sBMFI","name",[725,769,745],{"class":731},[725,771,748],{"class":731},[725,773,774],{"class":731}," \"",[725,776,778],{"class":777},"sfazB","sensor\u002Ftemperature",[725,780,745],{"class":731},[725,782,783],{"class":731},",\n",[725,785,787,789,792,794,796,800],{"class":727,"line":786},5,[725,788,763],{"class":731},[725,790,791],{"class":766},"value",[725,793,745],{"class":731},[725,795,748],{"class":731},[725,797,799],{"class":798},"sTEyZ"," $random() * ",[725,801,803],{"class":802},"sbssI","100\n",[725,805,807],{"class":727,"line":806},6,[725,808,809],{"class":731},"        },\n",[725,811,813],{"class":727,"line":812},7,[725,814,757],{"class":731},[725,816,818,820,822,824,826,828,831,833],{"class":727,"line":817},8,[725,819,763],{"class":731},[725,821,767],{"class":766},[725,823,745],{"class":731},[725,825,748],{"class":731},[725,827,774],{"class":731},[725,829,830],{"class":777},"sensor\u002Fhumidity",[725,832,745],{"class":731},[725,834,783],{"class":731},[725,836,838,840,842,844,846,848],{"class":727,"line":837},9,[725,839,763],{"class":731},[725,841,791],{"class":766},[725,843,745],{"class":731},[725,845,748],{"class":731},[725,847,799],{"class":798},[725,849,803],{"class":802},[725,851,853],{"class":727,"line":852},10,[725,854,855],{"class":731},"        }\n",[725,857,859],{"class":727,"line":858},11,[725,860,861],{"class":731},"    ]\n",[725,863,865],{"class":727,"line":864},12,[725,866,867],{"class":731},"}\n",[637,869,870],{},"Drag the mqtt sparkplug device node onto the canvas.",[637,872,873],{},"Double-click the mqtt sparkplug device node to open the configuration panel. Add the metric names that you will be sending by clicking the bottom-left \"Add\" button. Ensure that the names match the metric names in the payload you are sending and specify the data types for each metric.",[12,875,876,881,883],{},[71,877],{"alt":878,"src":879,"title":880},"Screenshot showing the Sparkplug Device node configuration and the \"Add\" button for defining metrics","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-sparkplug-device-node.png","Screenshot showing the Sparkplug Device node configuration and the 'Add' button for defining metrics",[698,882],{},[76,884,878],{},[659,886,887,890],{"start":760},[637,888,889],{},"Switch to the Advanced tab by clicking the \"Advanced\" option at the top-right.",[637,891,892,893,895,896,898],{},"Enable the \"Send Birth Immediately\" option. This ensures that a Birth message (DBIRTH) is sent immediately upon deployment and connection to the MQTT broker. Note that enabling this option will send the ",[53,894,217],{}," message when the device node connects, but an ",[53,897,117],{}," message will be sent successful connection of mqtt sparkplug out node if you are using.",[12,900,901,904,906],{},[71,902],{"alt":878,"src":903,"title":880},"\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-spark-device-advance.png",[698,905],{},[76,907,878],{},[659,909,910,913,916],{"start":806},[637,911,912],{},"Optionally, enable Store and Forward when not connected to ensure that messages are stored and sent once the connection is re-established. To use this option, make sure you have enabled it in the mqtt sparkplug broker config node and specified the destination.",[637,914,915],{},"Connect the inject node's output to the mqtt sparkplug device node's input.",[637,917,918],{},"Deploy the flow by clicking the top-right \"Deploy\" button.",[12,920,921,922,924],{},"Once you deploy the flow and all devices connect to the MQTT broker, the system automatically send a ",[53,923,217],{}," message as soon as each device within the node connects, signalling that the device is ready for data transmission.",[926,927,928],"render-flow",{},[716,929,931],{"className":718,"code":930,"language":720,"meta":721,"style":721},"[{\"id\":\"f2864f2b830e3590\",\"type\":\"mqtt sparkplug device\",\"z\":\"239c9025714089d3\",\"name\":\"Machine1\",\"metrics\":{\"sensor\u002Ftemperature\":{\"dataType\":\"Float\",\"name\":\"sensor\u002Ftemperature\"},\"sensor\u002Fhumidity\":{\"dataType\":\"Float\",\"name\":\"sensor\u002Fhumidity\"}},\"broker\":\"0d831bd9ba588536\",\"birthImmediately\":true,\"bufferDevice\":false,\"x\":380,\"y\":320,\"wires\":[[\"3dfc9b74f5e36bec\"]]},{\"id\":\"90cc413f58871fc1\",\"type\":\"inject\",\"z\":\"239c9025714089d3\",\"name\":\"Send Metrics\",\"props\":[{\"p\":\"payload\"},{\"p\":\"topic\",\"vt\":\"str\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"{    \\\"metrics\\\": [        {            \\\"name\\\": \\\"sensor\u002Ftemperature\\\",            \\\"value\\\": $random()*100        },        {            \\\"name\\\": \\\"sensor\u002Fhumidity\\\",            \\\"value\\\": $random()*100        }    ]}\",\"payloadType\":\"jsonata\",\"x\":130,\"y\":320,\"wires\":[[\"f2864f2b830e3590\"]]},{\"id\":\"3dfc9b74f5e36bec\",\"type\":\"debug\",\"z\":\"239c9025714089d3\",\"name\":\"\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"payload\",\"targetType\":\"msg\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":650,\"y\":320,\"wires\":[]},{\"id\":\"0d831bd9ba588536\",\"type\":\"mqtt-sparkplug-broker\",\"name\":\"Local Host\",\"deviceGroup\":\"My Devices\",\"eonName\":\"Node-Red\",\"broker\":\"localhost\",\"port\":\"1883\",\"tls\":\"\",\"clientid\":\"\",\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"enableStoreForward\":false,\"compressAlgorithm\":\"\",\"aliasMetrics\":true,\"manualEoNBirth\":false,\"primaryScada\":\"\"}]\n",[53,932,933],{"__ignoreMap":721},[725,934,935,938,940,943,945,947,949,952,954,957,959,962,964,966,968,971,973,975,977,980,982,984,986,989,991,993,995,997,999,1001,1003,1006,1008,1010,1012,1014,1016,1019,1021,1023,1025,1027,1029,1032,1034,1036,1038,1041,1043,1045,1047,1049,1051,1053,1055,1057,1059,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1103,1105,1108,1110,1112,1114,1117,1119,1121,1123,1126,1128,1131,1133,1136,1138,1141,1143,1146,1148,1150,1153,1155,1157,1160,1162,1164,1167,1169,1171,1174,1176,1179,1181,1184,1186,1189,1191,1193,1195,1197,1199,1202,1204,1206,1208,1210,1212,1214,1216,1219,1221,1223,1225,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1247,1249,1252,1254,1256,1258,1261,1263,1266,1268,1270,1272,1274,1276,1279,1281,1284,1286,1288,1290,1292,1294,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1325,1327,1329,1332,1334,1336,1339,1341,1343,1345,1347,1349,1352,1354,1356,1358,1361,1363,1365,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1395,1398,1400,1402,1405,1407,1409,1411,1414,1416,1418,1420,1423,1425,1427,1429,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1457,1459,1461,1463,1466,1468,1470,1472,1475,1477,1479,1481,1483,1485,1487,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1549,1551,1553,1555,1557,1559,1561,1563,1565,1567,1569,1571,1573,1575,1577,1579,1581,1583,1586,1588,1590,1592,1595,1597,1599,1601,1604,1606,1608,1610,1613,1615,1617,1619,1622,1624,1626,1628,1630,1632,1634,1636,1639,1641,1643,1645,1648,1650,1652,1654,1657,1659,1661,1663,1665,1667,1670,1672,1674,1676,1679,1681,1683,1685,1687,1689,1691,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1717,1719,1721,1723,1725,1727,1729,1731,1733,1735,1737,1739,1741,1743,1746,1748,1750,1752,1754,1756,1758,1760,1763,1765,1767,1769,1772,1774,1776,1778,1781,1783,1785,1787,1790,1792,1794,1796,1799,1801,1803,1805,1807,1809,1811,1813,1816,1818,1820,1822,1825,1827,1829,1831,1833,1835,1837,1839,1842,1844,1846,1848,1850,1852,1855,1857,1859,1861,1863,1865,1868,1870,1872,1874,1877,1879,1881,1883,1886,1888,1890,1892,1895,1897,1899,1901,1904,1906,1908,1910,1913,1915,1917,1919,1922,1924,1926,1928,1931,1933,1935,1937,1939,1941,1944,1946,1948,1950,1953,1955,1957,1959,1962,1964,1966,1968],{"class":727,"line":728},[725,936,937],{"class":731},"[{",[725,939,745],{"class":731},[725,941,942],{"class":741},"id",[725,944,745],{"class":731},[725,946,748],{"class":731},[725,948,745],{"class":731},[725,950,951],{"class":777},"f2864f2b830e3590",[725,953,745],{"class":731},[725,955,956],{"class":731},",",[725,958,745],{"class":731},[725,960,961],{"class":741},"type",[725,963,745],{"class":731},[725,965,748],{"class":731},[725,967,745],{"class":731},[725,969,970],{"class":777},"mqtt sparkplug device",[725,972,745],{"class":731},[725,974,956],{"class":731},[725,976,745],{"class":731},[725,978,979],{"class":741},"z",[725,981,745],{"class":731},[725,983,748],{"class":731},[725,985,745],{"class":731},[725,987,988],{"class":777},"239c9025714089d3",[725,990,745],{"class":731},[725,992,956],{"class":731},[725,994,745],{"class":731},[725,996,767],{"class":741},[725,998,745],{"class":731},[725,1000,748],{"class":731},[725,1002,745],{"class":731},[725,1004,1005],{"class":777},"Machine1",[725,1007,745],{"class":731},[725,1009,956],{"class":731},[725,1011,745],{"class":731},[725,1013,742],{"class":741},[725,1015,745],{"class":731},[725,1017,1018],{"class":731},":{",[725,1020,745],{"class":731},[725,1022,778],{"class":766},[725,1024,745],{"class":731},[725,1026,1018],{"class":731},[725,1028,745],{"class":731},[725,1030,1031],{"class":802},"dataType",[725,1033,745],{"class":731},[725,1035,748],{"class":731},[725,1037,745],{"class":731},[725,1039,1040],{"class":777},"Float",[725,1042,745],{"class":731},[725,1044,956],{"class":731},[725,1046,745],{"class":731},[725,1048,767],{"class":802},[725,1050,745],{"class":731},[725,1052,748],{"class":731},[725,1054,745],{"class":731},[725,1056,778],{"class":777},[725,1058,745],{"class":731},[725,1060,1061],{"class":731},"},",[725,1063,745],{"class":731},[725,1065,830],{"class":766},[725,1067,745],{"class":731},[725,1069,1018],{"class":731},[725,1071,745],{"class":731},[725,1073,1031],{"class":802},[725,1075,745],{"class":731},[725,1077,748],{"class":731},[725,1079,745],{"class":731},[725,1081,1040],{"class":777},[725,1083,745],{"class":731},[725,1085,956],{"class":731},[725,1087,745],{"class":731},[725,1089,767],{"class":802},[725,1091,745],{"class":731},[725,1093,748],{"class":731},[725,1095,745],{"class":731},[725,1097,830],{"class":777},[725,1099,745],{"class":731},[725,1101,1102],{"class":731},"}},",[725,1104,745],{"class":731},[725,1106,1107],{"class":741},"broker",[725,1109,745],{"class":731},[725,1111,748],{"class":731},[725,1113,745],{"class":731},[725,1115,1116],{"class":777},"0d831bd9ba588536",[725,1118,745],{"class":731},[725,1120,956],{"class":731},[725,1122,745],{"class":731},[725,1124,1125],{"class":741},"birthImmediately",[725,1127,745],{"class":731},[725,1129,1130],{"class":731},":true,",[725,1132,745],{"class":731},[725,1134,1135],{"class":741},"bufferDevice",[725,1137,745],{"class":731},[725,1139,1140],{"class":731},":false,",[725,1142,745],{"class":731},[725,1144,1145],{"class":741},"x",[725,1147,745],{"class":731},[725,1149,748],{"class":731},[725,1151,1152],{"class":802},"380",[725,1154,956],{"class":731},[725,1156,745],{"class":731},[725,1158,1159],{"class":741},"y",[725,1161,745],{"class":731},[725,1163,748],{"class":731},[725,1165,1166],{"class":802},"320",[725,1168,956],{"class":731},[725,1170,745],{"class":731},[725,1172,1173],{"class":741},"wires",[725,1175,745],{"class":731},[725,1177,1178],{"class":731},":[[",[725,1180,745],{"class":731},[725,1182,1183],{"class":777},"3dfc9b74f5e36bec",[725,1185,745],{"class":731},[725,1187,1188],{"class":731},"]]},{",[725,1190,745],{"class":731},[725,1192,942],{"class":741},[725,1194,745],{"class":731},[725,1196,748],{"class":731},[725,1198,745],{"class":731},[725,1200,1201],{"class":777},"90cc413f58871fc1",[725,1203,745],{"class":731},[725,1205,956],{"class":731},[725,1207,745],{"class":731},[725,1209,961],{"class":741},[725,1211,745],{"class":731},[725,1213,748],{"class":731},[725,1215,745],{"class":731},[725,1217,1218],{"class":777},"inject",[725,1220,745],{"class":731},[725,1222,956],{"class":731},[725,1224,745],{"class":731},[725,1226,979],{"class":741},[725,1228,745],{"class":731},[725,1230,748],{"class":731},[725,1232,745],{"class":731},[725,1234,988],{"class":777},[725,1236,745],{"class":731},[725,1238,956],{"class":731},[725,1240,745],{"class":731},[725,1242,767],{"class":741},[725,1244,745],{"class":731},[725,1246,748],{"class":731},[725,1248,745],{"class":731},[725,1250,1251],{"class":777},"Send Metrics",[725,1253,745],{"class":731},[725,1255,956],{"class":731},[725,1257,745],{"class":731},[725,1259,1260],{"class":741},"props",[725,1262,745],{"class":731},[725,1264,1265],{"class":731},":[{",[725,1267,745],{"class":731},[725,1269,12],{"class":766},[725,1271,745],{"class":731},[725,1273,748],{"class":731},[725,1275,745],{"class":731},[725,1277,1278],{"class":777},"payload",[725,1280,745],{"class":731},[725,1282,1283],{"class":731},"},{",[725,1285,745],{"class":731},[725,1287,12],{"class":766},[725,1289,745],{"class":731},[725,1291,748],{"class":731},[725,1293,745],{"class":731},[725,1295,1296],{"class":777},"topic",[725,1298,745],{"class":731},[725,1300,956],{"class":731},[725,1302,745],{"class":731},[725,1304,1305],{"class":766},"vt",[725,1307,745],{"class":731},[725,1309,748],{"class":731},[725,1311,745],{"class":731},[725,1313,1314],{"class":777},"str",[725,1316,745],{"class":731},[725,1318,1319],{"class":731},"}],",[725,1321,745],{"class":731},[725,1323,1324],{"class":741},"repeat",[725,1326,745],{"class":731},[725,1328,748],{"class":731},[725,1330,1331],{"class":731},"\"\"",[725,1333,956],{"class":731},[725,1335,745],{"class":731},[725,1337,1338],{"class":741},"crontab",[725,1340,745],{"class":731},[725,1342,748],{"class":731},[725,1344,1331],{"class":731},[725,1346,956],{"class":731},[725,1348,745],{"class":731},[725,1350,1351],{"class":741},"once",[725,1353,745],{"class":731},[725,1355,1140],{"class":731},[725,1357,745],{"class":731},[725,1359,1360],{"class":741},"onceDelay",[725,1362,745],{"class":731},[725,1364,748],{"class":731},[725,1366,1367],{"class":802},"0.1",[725,1369,956],{"class":731},[725,1371,745],{"class":731},[725,1373,1296],{"class":741},[725,1375,745],{"class":731},[725,1377,748],{"class":731},[725,1379,1331],{"class":731},[725,1381,956],{"class":731},[725,1383,745],{"class":731},[725,1385,1278],{"class":741},[725,1387,745],{"class":731},[725,1389,748],{"class":731},[725,1391,745],{"class":731},[725,1393,1394],{"class":777},"{    ",[725,1396,1397],{"class":798},"\\\"",[725,1399,742],{"class":777},[725,1401,1397],{"class":798},[725,1403,1404],{"class":777},": [        {            ",[725,1406,1397],{"class":798},[725,1408,767],{"class":777},[725,1410,1397],{"class":798},[725,1412,1413],{"class":777},": ",[725,1415,1397],{"class":798},[725,1417,778],{"class":777},[725,1419,1397],{"class":798},[725,1421,1422],{"class":777},",            ",[725,1424,1397],{"class":798},[725,1426,791],{"class":777},[725,1428,1397],{"class":798},[725,1430,1431],{"class":777},": $random()*100        },        {            ",[725,1433,1397],{"class":798},[725,1435,767],{"class":777},[725,1437,1397],{"class":798},[725,1439,1413],{"class":777},[725,1441,1397],{"class":798},[725,1443,830],{"class":777},[725,1445,1397],{"class":798},[725,1447,1422],{"class":777},[725,1449,1397],{"class":798},[725,1451,791],{"class":777},[725,1453,1397],{"class":798},[725,1455,1456],{"class":777},": $random()*100        }    ]}",[725,1458,745],{"class":731},[725,1460,956],{"class":731},[725,1462,745],{"class":731},[725,1464,1465],{"class":741},"payloadType",[725,1467,745],{"class":731},[725,1469,748],{"class":731},[725,1471,745],{"class":731},[725,1473,1474],{"class":777},"jsonata",[725,1476,745],{"class":731},[725,1478,956],{"class":731},[725,1480,745],{"class":731},[725,1482,1145],{"class":741},[725,1484,745],{"class":731},[725,1486,748],{"class":731},[725,1488,1489],{"class":802},"130",[725,1491,956],{"class":731},[725,1493,745],{"class":731},[725,1495,1159],{"class":741},[725,1497,745],{"class":731},[725,1499,748],{"class":731},[725,1501,1166],{"class":802},[725,1503,956],{"class":731},[725,1505,745],{"class":731},[725,1507,1173],{"class":741},[725,1509,745],{"class":731},[725,1511,1178],{"class":731},[725,1513,745],{"class":731},[725,1515,951],{"class":777},[725,1517,745],{"class":731},[725,1519,1188],{"class":731},[725,1521,745],{"class":731},[725,1523,942],{"class":741},[725,1525,745],{"class":731},[725,1527,748],{"class":731},[725,1529,745],{"class":731},[725,1531,1183],{"class":777},[725,1533,745],{"class":731},[725,1535,956],{"class":731},[725,1537,745],{"class":731},[725,1539,961],{"class":741},[725,1541,745],{"class":731},[725,1543,748],{"class":731},[725,1545,745],{"class":731},[725,1547,1548],{"class":777},"debug",[725,1550,745],{"class":731},[725,1552,956],{"class":731},[725,1554,745],{"class":731},[725,1556,979],{"class":741},[725,1558,745],{"class":731},[725,1560,748],{"class":731},[725,1562,745],{"class":731},[725,1564,988],{"class":777},[725,1566,745],{"class":731},[725,1568,956],{"class":731},[725,1570,745],{"class":731},[725,1572,767],{"class":741},[725,1574,745],{"class":731},[725,1576,748],{"class":731},[725,1578,1331],{"class":731},[725,1580,956],{"class":731},[725,1582,745],{"class":731},[725,1584,1585],{"class":741},"active",[725,1587,745],{"class":731},[725,1589,1130],{"class":731},[725,1591,745],{"class":731},[725,1593,1594],{"class":741},"tosidebar",[725,1596,745],{"class":731},[725,1598,1130],{"class":731},[725,1600,745],{"class":731},[725,1602,1603],{"class":741},"console",[725,1605,745],{"class":731},[725,1607,1140],{"class":731},[725,1609,745],{"class":731},[725,1611,1612],{"class":741},"tostatus",[725,1614,745],{"class":731},[725,1616,1140],{"class":731},[725,1618,745],{"class":731},[725,1620,1621],{"class":741},"complete",[725,1623,745],{"class":731},[725,1625,748],{"class":731},[725,1627,745],{"class":731},[725,1629,1278],{"class":777},[725,1631,745],{"class":731},[725,1633,956],{"class":731},[725,1635,745],{"class":731},[725,1637,1638],{"class":741},"targetType",[725,1640,745],{"class":731},[725,1642,748],{"class":731},[725,1644,745],{"class":731},[725,1646,1647],{"class":777},"msg",[725,1649,745],{"class":731},[725,1651,956],{"class":731},[725,1653,745],{"class":731},[725,1655,1656],{"class":741},"statusVal",[725,1658,745],{"class":731},[725,1660,748],{"class":731},[725,1662,1331],{"class":731},[725,1664,956],{"class":731},[725,1666,745],{"class":731},[725,1668,1669],{"class":741},"statusType",[725,1671,745],{"class":731},[725,1673,748],{"class":731},[725,1675,745],{"class":731},[725,1677,1678],{"class":777},"auto",[725,1680,745],{"class":731},[725,1682,956],{"class":731},[725,1684,745],{"class":731},[725,1686,1145],{"class":741},[725,1688,745],{"class":731},[725,1690,748],{"class":731},[725,1692,1693],{"class":802},"650",[725,1695,956],{"class":731},[725,1697,745],{"class":731},[725,1699,1159],{"class":741},[725,1701,745],{"class":731},[725,1703,748],{"class":731},[725,1705,1166],{"class":802},[725,1707,956],{"class":731},[725,1709,745],{"class":731},[725,1711,1173],{"class":741},[725,1713,745],{"class":731},[725,1715,1716],{"class":731},":[]},{",[725,1718,745],{"class":731},[725,1720,942],{"class":741},[725,1722,745],{"class":731},[725,1724,748],{"class":731},[725,1726,745],{"class":731},[725,1728,1116],{"class":777},[725,1730,745],{"class":731},[725,1732,956],{"class":731},[725,1734,745],{"class":731},[725,1736,961],{"class":741},[725,1738,745],{"class":731},[725,1740,748],{"class":731},[725,1742,745],{"class":731},[725,1744,1745],{"class":777},"mqtt-sparkplug-broker",[725,1747,745],{"class":731},[725,1749,956],{"class":731},[725,1751,745],{"class":731},[725,1753,767],{"class":741},[725,1755,745],{"class":731},[725,1757,748],{"class":731},[725,1759,745],{"class":731},[725,1761,1762],{"class":777},"Local Host",[725,1764,745],{"class":731},[725,1766,956],{"class":731},[725,1768,745],{"class":731},[725,1770,1771],{"class":741},"deviceGroup",[725,1773,745],{"class":731},[725,1775,748],{"class":731},[725,1777,745],{"class":731},[725,1779,1780],{"class":777},"My Devices",[725,1782,745],{"class":731},[725,1784,956],{"class":731},[725,1786,745],{"class":731},[725,1788,1789],{"class":741},"eonName",[725,1791,745],{"class":731},[725,1793,748],{"class":731},[725,1795,745],{"class":731},[725,1797,1798],{"class":777},"Node-Red",[725,1800,745],{"class":731},[725,1802,956],{"class":731},[725,1804,745],{"class":731},[725,1806,1107],{"class":741},[725,1808,745],{"class":731},[725,1810,748],{"class":731},[725,1812,745],{"class":731},[725,1814,1815],{"class":777},"localhost",[725,1817,745],{"class":731},[725,1819,956],{"class":731},[725,1821,745],{"class":731},[725,1823,1824],{"class":741},"port",[725,1826,745],{"class":731},[725,1828,748],{"class":731},[725,1830,745],{"class":731},[725,1832,676],{"class":777},[725,1834,745],{"class":731},[725,1836,956],{"class":731},[725,1838,745],{"class":731},[725,1840,1841],{"class":741},"tls",[725,1843,745],{"class":731},[725,1845,748],{"class":731},[725,1847,1331],{"class":731},[725,1849,956],{"class":731},[725,1851,745],{"class":731},[725,1853,1854],{"class":741},"clientid",[725,1856,745],{"class":731},[725,1858,748],{"class":731},[725,1860,1331],{"class":731},[725,1862,956],{"class":731},[725,1864,745],{"class":731},[725,1866,1867],{"class":741},"usetls",[725,1869,745],{"class":731},[725,1871,1140],{"class":731},[725,1873,745],{"class":731},[725,1875,1876],{"class":741},"protocolVersion",[725,1878,745],{"class":731},[725,1880,748],{"class":731},[725,1882,745],{"class":731},[725,1884,1885],{"class":777},"4",[725,1887,745],{"class":731},[725,1889,956],{"class":731},[725,1891,745],{"class":731},[725,1893,1894],{"class":741},"keepalive",[725,1896,745],{"class":731},[725,1898,748],{"class":731},[725,1900,745],{"class":731},[725,1902,1903],{"class":777},"60",[725,1905,745],{"class":731},[725,1907,956],{"class":731},[725,1909,745],{"class":731},[725,1911,1912],{"class":741},"cleansession",[725,1914,745],{"class":731},[725,1916,1130],{"class":731},[725,1918,745],{"class":731},[725,1920,1921],{"class":741},"enableStoreForward",[725,1923,745],{"class":731},[725,1925,1140],{"class":731},[725,1927,745],{"class":731},[725,1929,1930],{"class":741},"compressAlgorithm",[725,1932,745],{"class":731},[725,1934,748],{"class":731},[725,1936,1331],{"class":731},[725,1938,956],{"class":731},[725,1940,745],{"class":731},[725,1942,1943],{"class":741},"aliasMetrics",[725,1945,745],{"class":731},[725,1947,1130],{"class":731},[725,1949,745],{"class":731},[725,1951,1952],{"class":741},"manualEoNBirth",[725,1954,745],{"class":731},[725,1956,1140],{"class":731},[725,1958,745],{"class":731},[725,1960,1961],{"class":741},"primaryScada",[725,1963,745],{"class":731},[725,1965,748],{"class":731},[725,1967,1331],{"class":731},[725,1969,1970],{"class":731},"}]\n",[45,1972,1974],{"id":1973},"receiving-data-from-mqtt-with-sparkplug-b","Receiving Data from MQTT with Sparkplug B",[659,1976,1977,1980,1983,1997,2000,2003,2006],{},[637,1978,1979],{},"Drag the mqtt sparkplug in node onto the canvas.",[637,1981,1982],{},"Double-click the node and configure the broker settings.",[637,1984,1985,1986,1989,1990,1992,1993,1996],{},"Enter the topic in the \"Topic\" field in the format ",[53,1987,1988],{},"namespace\u002Fgroup_id\u002Fmessage_type\u002Fedge_node_id\u002F[device_id]",". Use ",[53,1991,150],{}," for receiving metrics you are sending using device node or a wildcard like ",[53,1994,1995],{},"spBv1.0\u002Fgroup_id\u002F+\u002F+\u002F[device_id]"," to listen to all message types from a specific device.",[637,1998,1999],{},"Select the desired \"QoS\" level.",[637,2001,2002],{},"Drag a debug node onto the canvas.",[637,2004,2005],{},"Connect the mqtt sparkplug in node’s output to the debug node’s input.",[637,2007,2008],{},"Click \"Deploy\" to save and run the flow.",[12,2010,2011,2012,261,2014,2016],{},"Now you will be able to see the ",[53,2013,217],{},[53,2015,150],{}," messages printed on the debug panel.",[926,2018,2019],{},[716,2020,2022],{"className":718,"code":2021,"language":720,"meta":721,"style":721},"[{\"id\":\"a98c49d80bb5c4ee\",\"type\":\"mqtt sparkplug in\",\"z\":\"239c9025714089d3\",\"name\":\"\",\"topic\":\"spBv1.0\u002FMy Devices\u002FDDATA\u002FNode-RED\u002FMachine1\",\"qos\":\"2\",\"broker\":\"0d831bd9ba588536\",\"x\":330,\"y\":120,\"wires\":[[\"655761fb21409216\"]]},{\"id\":\"655761fb21409216\",\"type\":\"debug\",\"z\":\"239c9025714089d3\",\"name\":\"debug 1\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"payload\",\"targetType\":\"msg\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":800,\"y\":120,\"wires\":[]},{\"id\":\"0d831bd9ba588536\",\"type\":\"mqtt-sparkplug-broker\",\"name\":\"Local Host\",\"deviceGroup\":\"My Devices\",\"eonName\":\"Node-Red\",\"broker\":\"localhost\",\"port\":\"1883\",\"tls\":\"\",\"clientid\":\"\",\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"enableStoreForward\":false,\"compressAlgorithm\":\"\",\"aliasMetrics\":true,\"manualEoNBirth\":false,\"primaryScada\":\"\"}]\n",[53,2023,2024],{"__ignoreMap":721},[725,2025,2026,2028,2030,2032,2034,2036,2038,2041,2043,2045,2047,2049,2051,2053,2055,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2103,2105,2107,2109,2112,2114,2116,2118,2121,2123,2125,2127,2129,2131,2133,2135,2137,2139,2141,2143,2145,2147,2149,2152,2154,2156,2158,2160,2162,2165,2167,2169,2171,2173,2175,2177,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2245,2247,2249,2251,2253,2255,2257,2259,2261,2263,2265,2267,2269,2271,2273,2275,2277,2279,2281,2283,2285,2287,2289,2291,2293,2295,2297,2299,2301,2303,2305,2307,2309,2311,2313,2315,2317,2319,2321,2323,2325,2327,2329,2331,2333,2335,2337,2339,2341,2343,2345,2347,2349,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604],{"class":727,"line":728},[725,2027,937],{"class":731},[725,2029,745],{"class":731},[725,2031,942],{"class":741},[725,2033,745],{"class":731},[725,2035,748],{"class":731},[725,2037,745],{"class":731},[725,2039,2040],{"class":777},"a98c49d80bb5c4ee",[725,2042,745],{"class":731},[725,2044,956],{"class":731},[725,2046,745],{"class":731},[725,2048,961],{"class":741},[725,2050,745],{"class":731},[725,2052,748],{"class":731},[725,2054,745],{"class":731},[725,2056,2057],{"class":777},"mqtt sparkplug in",[725,2059,745],{"class":731},[725,2061,956],{"class":731},[725,2063,745],{"class":731},[725,2065,979],{"class":741},[725,2067,745],{"class":731},[725,2069,748],{"class":731},[725,2071,745],{"class":731},[725,2073,988],{"class":777},[725,2075,745],{"class":731},[725,2077,956],{"class":731},[725,2079,745],{"class":731},[725,2081,767],{"class":741},[725,2083,745],{"class":731},[725,2085,748],{"class":731},[725,2087,1331],{"class":731},[725,2089,956],{"class":731},[725,2091,745],{"class":731},[725,2093,1296],{"class":741},[725,2095,745],{"class":731},[725,2097,748],{"class":731},[725,2099,745],{"class":731},[725,2101,2102],{"class":777},"spBv1.0\u002FMy Devices\u002FDDATA\u002FNode-RED\u002FMachine1",[725,2104,745],{"class":731},[725,2106,956],{"class":731},[725,2108,745],{"class":731},[725,2110,2111],{"class":741},"qos",[725,2113,745],{"class":731},[725,2115,748],{"class":731},[725,2117,745],{"class":731},[725,2119,2120],{"class":777},"2",[725,2122,745],{"class":731},[725,2124,956],{"class":731},[725,2126,745],{"class":731},[725,2128,1107],{"class":741},[725,2130,745],{"class":731},[725,2132,748],{"class":731},[725,2134,745],{"class":731},[725,2136,1116],{"class":777},[725,2138,745],{"class":731},[725,2140,956],{"class":731},[725,2142,745],{"class":731},[725,2144,1145],{"class":741},[725,2146,745],{"class":731},[725,2148,748],{"class":731},[725,2150,2151],{"class":802},"330",[725,2153,956],{"class":731},[725,2155,745],{"class":731},[725,2157,1159],{"class":741},[725,2159,745],{"class":731},[725,2161,748],{"class":731},[725,2163,2164],{"class":802},"120",[725,2166,956],{"class":731},[725,2168,745],{"class":731},[725,2170,1173],{"class":741},[725,2172,745],{"class":731},[725,2174,1178],{"class":731},[725,2176,745],{"class":731},[725,2178,2179],{"class":777},"655761fb21409216",[725,2181,745],{"class":731},[725,2183,1188],{"class":731},[725,2185,745],{"class":731},[725,2187,942],{"class":741},[725,2189,745],{"class":731},[725,2191,748],{"class":731},[725,2193,745],{"class":731},[725,2195,2179],{"class":777},[725,2197,745],{"class":731},[725,2199,956],{"class":731},[725,2201,745],{"class":731},[725,2203,961],{"class":741},[725,2205,745],{"class":731},[725,2207,748],{"class":731},[725,2209,745],{"class":731},[725,2211,1548],{"class":777},[725,2213,745],{"class":731},[725,2215,956],{"class":731},[725,2217,745],{"class":731},[725,2219,979],{"class":741},[725,2221,745],{"class":731},[725,2223,748],{"class":731},[725,2225,745],{"class":731},[725,2227,988],{"class":777},[725,2229,745],{"class":731},[725,2231,956],{"class":731},[725,2233,745],{"class":731},[725,2235,767],{"class":741},[725,2237,745],{"class":731},[725,2239,748],{"class":731},[725,2241,745],{"class":731},[725,2243,2244],{"class":777},"debug 1",[725,2246,745],{"class":731},[725,2248,956],{"class":731},[725,2250,745],{"class":731},[725,2252,1585],{"class":741},[725,2254,745],{"class":731},[725,2256,1130],{"class":731},[725,2258,745],{"class":731},[725,2260,1594],{"class":741},[725,2262,745],{"class":731},[725,2264,1130],{"class":731},[725,2266,745],{"class":731},[725,2268,1603],{"class":741},[725,2270,745],{"class":731},[725,2272,1140],{"class":731},[725,2274,745],{"class":731},[725,2276,1612],{"class":741},[725,2278,745],{"class":731},[725,2280,1140],{"class":731},[725,2282,745],{"class":731},[725,2284,1621],{"class":741},[725,2286,745],{"class":731},[725,2288,748],{"class":731},[725,2290,745],{"class":731},[725,2292,1278],{"class":777},[725,2294,745],{"class":731},[725,2296,956],{"class":731},[725,2298,745],{"class":731},[725,2300,1638],{"class":741},[725,2302,745],{"class":731},[725,2304,748],{"class":731},[725,2306,745],{"class":731},[725,2308,1647],{"class":777},[725,2310,745],{"class":731},[725,2312,956],{"class":731},[725,2314,745],{"class":731},[725,2316,1656],{"class":741},[725,2318,745],{"class":731},[725,2320,748],{"class":731},[725,2322,1331],{"class":731},[725,2324,956],{"class":731},[725,2326,745],{"class":731},[725,2328,1669],{"class":741},[725,2330,745],{"class":731},[725,2332,748],{"class":731},[725,2334,745],{"class":731},[725,2336,1678],{"class":777},[725,2338,745],{"class":731},[725,2340,956],{"class":731},[725,2342,745],{"class":731},[725,2344,1145],{"class":741},[725,2346,745],{"class":731},[725,2348,748],{"class":731},[725,2350,2351],{"class":802},"800",[725,2353,956],{"class":731},[725,2355,745],{"class":731},[725,2357,1159],{"class":741},[725,2359,745],{"class":731},[725,2361,748],{"class":731},[725,2363,2164],{"class":802},[725,2365,956],{"class":731},[725,2367,745],{"class":731},[725,2369,1173],{"class":741},[725,2371,745],{"class":731},[725,2373,1716],{"class":731},[725,2375,745],{"class":731},[725,2377,942],{"class":741},[725,2379,745],{"class":731},[725,2381,748],{"class":731},[725,2383,745],{"class":731},[725,2385,1116],{"class":777},[725,2387,745],{"class":731},[725,2389,956],{"class":731},[725,2391,745],{"class":731},[725,2393,961],{"class":741},[725,2395,745],{"class":731},[725,2397,748],{"class":731},[725,2399,745],{"class":731},[725,2401,1745],{"class":777},[725,2403,745],{"class":731},[725,2405,956],{"class":731},[725,2407,745],{"class":731},[725,2409,767],{"class":741},[725,2411,745],{"class":731},[725,2413,748],{"class":731},[725,2415,745],{"class":731},[725,2417,1762],{"class":777},[725,2419,745],{"class":731},[725,2421,956],{"class":731},[725,2423,745],{"class":731},[725,2425,1771],{"class":741},[725,2427,745],{"class":731},[725,2429,748],{"class":731},[725,2431,745],{"class":731},[725,2433,1780],{"class":777},[725,2435,745],{"class":731},[725,2437,956],{"class":731},[725,2439,745],{"class":731},[725,2441,1789],{"class":741},[725,2443,745],{"class":731},[725,2445,748],{"class":731},[725,2447,745],{"class":731},[725,2449,1798],{"class":777},[725,2451,745],{"class":731},[725,2453,956],{"class":731},[725,2455,745],{"class":731},[725,2457,1107],{"class":741},[725,2459,745],{"class":731},[725,2461,748],{"class":731},[725,2463,745],{"class":731},[725,2465,1815],{"class":777},[725,2467,745],{"class":731},[725,2469,956],{"class":731},[725,2471,745],{"class":731},[725,2473,1824],{"class":741},[725,2475,745],{"class":731},[725,2477,748],{"class":731},[725,2479,745],{"class":731},[725,2481,676],{"class":777},[725,2483,745],{"class":731},[725,2485,956],{"class":731},[725,2487,745],{"class":731},[725,2489,1841],{"class":741},[725,2491,745],{"class":731},[725,2493,748],{"class":731},[725,2495,1331],{"class":731},[725,2497,956],{"class":731},[725,2499,745],{"class":731},[725,2501,1854],{"class":741},[725,2503,745],{"class":731},[725,2505,748],{"class":731},[725,2507,1331],{"class":731},[725,2509,956],{"class":731},[725,2511,745],{"class":731},[725,2513,1867],{"class":741},[725,2515,745],{"class":731},[725,2517,1140],{"class":731},[725,2519,745],{"class":731},[725,2521,1876],{"class":741},[725,2523,745],{"class":731},[725,2525,748],{"class":731},[725,2527,745],{"class":731},[725,2529,1885],{"class":777},[725,2531,745],{"class":731},[725,2533,956],{"class":731},[725,2535,745],{"class":731},[725,2537,1894],{"class":741},[725,2539,745],{"class":731},[725,2541,748],{"class":731},[725,2543,745],{"class":731},[725,2545,1903],{"class":777},[725,2547,745],{"class":731},[725,2549,956],{"class":731},[725,2551,745],{"class":731},[725,2553,1912],{"class":741},[725,2555,745],{"class":731},[725,2557,1130],{"class":731},[725,2559,745],{"class":731},[725,2561,1921],{"class":741},[725,2563,745],{"class":731},[725,2565,1140],{"class":731},[725,2567,745],{"class":731},[725,2569,1930],{"class":741},[725,2571,745],{"class":731},[725,2573,748],{"class":731},[725,2575,1331],{"class":731},[725,2577,956],{"class":731},[725,2579,745],{"class":731},[725,2581,1943],{"class":741},[725,2583,745],{"class":731},[725,2585,1130],{"class":731},[725,2587,745],{"class":731},[725,2589,1952],{"class":741},[725,2591,745],{"class":731},[725,2593,1140],{"class":731},[725,2595,745],{"class":731},[725,2597,1961],{"class":741},[725,2599,745],{"class":731},[725,2601,748],{"class":731},[725,2603,1331],{"class":731},[725,2605,1970],{"class":731},[45,2607,2609],{"id":2608},"sending-commands-for-devices-and-eon-nodes","Sending Commands for devices and EoN nodes",[12,2611,2612],{},"Beyond data exchange, MQTT Sparkplug B allows you to send commands for managing devices and Edge of Network (EoN) nodes, such as initiating a device's rebirth or signalling its death.",[659,2614,2615,2618],{},[637,2616,2617],{},"Drag inject node onto the canvas.",[637,2619,2620,2621,2624],{},"Set the ",[53,2622,2623],{},"msg.command"," in the inject node to the desired command. For instance, you can use the following JSON object to send a command that triggers a device's death:",[716,2626,2628],{"className":718,"code":2627,"language":720,"meta":721,"style":721},"    {\n        \"device\" : {\n            \"death\" : true\n        }\n    }   \n",[53,2629,2630,2635,2651,2665,2669],{"__ignoreMap":721},[725,2631,2632],{"class":727,"line":728},[725,2633,2634],{"class":731},"    {\n",[725,2636,2637,2640,2643,2645,2648],{"class":727,"line":735},[725,2638,2639],{"class":731},"        \"",[725,2641,2642],{"class":741},"device",[725,2644,745],{"class":731},[725,2646,2647],{"class":731}," :",[725,2649,2650],{"class":731}," {\n",[725,2652,2653,2655,2658,2660,2662],{"class":727,"line":754},[725,2654,763],{"class":731},[725,2656,2657],{"class":766},"death",[725,2659,745],{"class":731},[725,2661,2647],{"class":731},[725,2663,2664],{"class":731}," true\n",[725,2666,2667],{"class":727,"line":760},[725,2668,855],{"class":731},[725,2670,2671],{"class":727,"line":786},[725,2672,2673],{"class":731},"    }\n",[12,2675,2676],{},"Alternatively, to send a command that triggers a device's rebirth, use:",[716,2678,2680],{"className":718,"code":2679,"language":720,"meta":721,"style":721},"    {\n        \"device\" : {\n            \"rebirth\" : true\n        }\n    }   \n",[53,2681,2682,2686,2698,2711,2715],{"__ignoreMap":721},[725,2683,2684],{"class":727,"line":728},[725,2685,2634],{"class":731},[725,2687,2688,2690,2692,2694,2696],{"class":727,"line":735},[725,2689,2639],{"class":731},[725,2691,2642],{"class":741},[725,2693,745],{"class":731},[725,2695,2647],{"class":731},[725,2697,2650],{"class":731},[725,2699,2700,2702,2705,2707,2709],{"class":727,"line":754},[725,2701,763],{"class":731},[725,2703,2704],{"class":766},"rebirth",[725,2706,745],{"class":731},[725,2708,2647],{"class":731},[725,2710,2664],{"class":731},[725,2712,2713],{"class":727,"line":760},[725,2714,855],{"class":731},[725,2716,2717],{"class":727,"line":786},[725,2718,2673],{"class":731},[659,2720,2721,2724,2727],{"start":754},[637,2722,2723],{},"Connect the output of the inject node to the input of the relevant mqtt sparkplug device node.",[637,2725,2726],{},"Deploy the flow by clicking the Deploy button at the top-right of the Node-RED interface.",[637,2728,2729],{},"Click the inject node’s button to send the command.",[12,2731,2732,2733,653],{},"In this example, we've used an inject node to manually send commands, but you can also trigger these commands based on other inputs or conditions within your flow, such as device status or sensor data. For more information on available commands and advanced configurations, refer to the ",[24,2734,2736],{"href":642,"rel":2735},[28],"MQTT Sparkplug nodes documentation",[926,2738,2739],{},[716,2740,2742],{"className":718,"code":2741,"language":720,"meta":721,"style":721},"[{\"id\":\"f2864f2b830e3590\",\"type\":\"mqtt sparkplug device\",\"z\":\"239c9025714089d3\",\"name\":\"Machine1\",\"metrics\":{\"sensor\u002Ftemperature\":{\"dataType\":\"Float\"},\"sensor\u002Fhumidity\":{\"dataType\":\"Float\"}},\"broker\":\"0d831bd9ba588536\",\"birthImmediately\":true,\"bufferDevice\":false,\"x\":440,\"y\":320,\"wires\":[[\"3dfc9b74f5e36bec\"]]},{\"id\":\"90cc413f58871fc1\",\"type\":\"inject\",\"z\":\"239c9025714089d3\",\"name\":\"Send connect command\",\"props\":[{\"p\":\"command\",\"v\":\"{\\\"node\\\":{\\\"connect\\\":true}}\",\"vt\":\"jsonata\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"x\":170,\"y\":260,\"wires\":[[\"f2864f2b830e3590\"]]},{\"id\":\"3dfc9b74f5e36bec\",\"type\":\"debug\",\"z\":\"239c9025714089d3\",\"name\":\"\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"payload\",\"targetType\":\"msg\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":650,\"y\":320,\"wires\":[]},{\"id\":\"915ca0772eebee04\",\"type\":\"inject\",\"z\":\"239c9025714089d3\",\"name\":\"Send rebirth command\",\"props\":[{\"p\":\"command\",\"v\":\"{\\\"device\\\":{\\\"rebirth\\\":true}}\",\"vt\":\"json\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"x\":160,\"y\":320,\"wires\":[[\"f2864f2b830e3590\"]]},{\"id\":\"696db58cc9eb029d\",\"type\":\"inject\",\"z\":\"239c9025714089d3\",\"name\":\"Send death command\",\"props\":[{\"p\":\"command\",\"v\":\"{\\\"device\\\":{\\\"death\\\":true}}\",\"vt\":\"json\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"x\":160,\"y\":380,\"wires\":[[\"f2864f2b830e3590\"]]},{\"id\":\"0d831bd9ba588536\",\"type\":\"mqtt-sparkplug-broker\",\"name\":\"Local Host\",\"deviceGroup\":\"My Devices\",\"eonName\":\"Node-Red\",\"broker\":\"localhost\",\"port\":\"1883\",\"tls\":\"\",\"clientid\":\"\",\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"enableStoreForward\":false,\"compressAlgorithm\":\"\",\"aliasMetrics\":true,\"manualEoNBirth\":true,\"primaryScada\":\"\"}]\n",[53,2743,2744],{"__ignoreMap":721},[725,2745,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2911,2913,2915,2917,2919,2921,2923,2925,2927,2929,2931,2933,2935,2937,2939,2941,2943,2945,2947,2949,2951,2953,2955,2957,2959,2961,2963,2965,2967,2969,2971,2973,2975,2977,2979,2981,2983,2985,2987,2989,2991,2993,2995,2997,2999,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3027,3029,3031,3033,3036,3038,3040,3042,3045,3047,3050,3052,3054,3056,3059,3061,3064,3066,3068,3070,3072,3074,3076,3078,3080,3082,3084,3086,3088,3090,3092,3094,3096,3098,3100,3102,3104,3106,3108,3110,3112,3114,3116,3118,3120,3122,3124,3126,3128,3130,3132,3134,3136,3138,3140,3142,3144,3146,3148,3151,3153,3155,3157,3159,3161,3164,3166,3168,3170,3172,3174,3176,3178,3180,3182,3184,3186,3188,3190,3192,3194,3196,3198,3200,3202,3204,3206,3208,3210,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3254,3256,3258,3260,3262,3264,3266,3268,3270,3272,3274,3276,3278,3280,3282,3284,3286,3288,3290,3292,3294,3296,3298,3300,3302,3304,3306,3308,3310,3312,3314,3316,3318,3320,3322,3324,3326,3328,3330,3332,3334,3336,3338,3340,3342,3344,3346,3348,3350,3352,3354,3356,3358,3360,3362,3364,3366,3368,3370,3372,3374,3376,3379,3381,3383,3385,3387,3389,3391,3393,3395,3397,3399,3401,3403,3405,3407,3409,3411,3413,3415,3417,3419,3421,3423,3425,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3454,3456,3458,3460,3462,3464,3466,3468,3470,3472,3474,3476,3478,3480,3482,3484,3486,3488,3490,3492,3494,3496,3498,3500,3502,3504,3506,3508,3510,3512,3514,3516,3518,3520,3522,3524,3526,3528,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3558,3560,3562,3564,3566,3568,3571,3573,3575,3577,3579,3581,3583,3585,3587,3589,3591,3593,3595,3597,3599,3601,3603,3605,3607,3609,3611,3614,3616,3618,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3663,3665,3667,3669,3671,3673,3675,3677,3679,3681,3683,3685,3687,3689,3691,3693,3695,3697,3699,3701,3703,3705,3707,3709,3711,3713,3715,3717,3719,3721,3723,3725,3727,3729,3731,3733,3735,3737,3739,3741,3743,3745,3747,3749,3751,3753,3755,3757,3759,3761,3763,3765,3767,3769,3771,3773,3775,3777,3779,3781,3783,3785,3787,3789,3791,3793,3795,3797,3799,3801,3803,3805,3807,3809,3811,3813,3815,3817,3819,3821,3823,3825,3827,3829,3831,3833,3835,3837,3839,3841,3843,3845,3847,3849,3851,3853,3855,3857,3859,3861,3863,3865,3867,3869,3871,3873,3875,3877,3879,3881,3883,3885,3887,3889,3891,3893,3895,3897,3899,3901,3903,3905,3907,3909,3911,3913,3915,3917,3919,3921,3923,3925,3927,3929,3931,3933,3935,3937,3939,3941,3943,3945,3947,3949,3951,3953,3955,3957,3959,3961,3963,3965,3967,3969,3971,3973,3975,3977,3979,3981,3983,3985,3987,3989,3991,3993,3995,3997,3999,4001,4003,4005,4007,4009,4011,4013,4015,4017,4019,4021,4023,4025,4027,4029,4031,4033,4035,4037,4039,4041,4043,4045,4047,4049,4051,4053,4055,4057,4059,4061,4063,4065],{"class":727,"line":728},[725,2747,937],{"class":731},[725,2749,745],{"class":731},[725,2751,942],{"class":741},[725,2753,745],{"class":731},[725,2755,748],{"class":731},[725,2757,745],{"class":731},[725,2759,951],{"class":777},[725,2761,745],{"class":731},[725,2763,956],{"class":731},[725,2765,745],{"class":731},[725,2767,961],{"class":741},[725,2769,745],{"class":731},[725,2771,748],{"class":731},[725,2773,745],{"class":731},[725,2775,970],{"class":777},[725,2777,745],{"class":731},[725,2779,956],{"class":731},[725,2781,745],{"class":731},[725,2783,979],{"class":741},[725,2785,745],{"class":731},[725,2787,748],{"class":731},[725,2789,745],{"class":731},[725,2791,988],{"class":777},[725,2793,745],{"class":731},[725,2795,956],{"class":731},[725,2797,745],{"class":731},[725,2799,767],{"class":741},[725,2801,745],{"class":731},[725,2803,748],{"class":731},[725,2805,745],{"class":731},[725,2807,1005],{"class":777},[725,2809,745],{"class":731},[725,2811,956],{"class":731},[725,2813,745],{"class":731},[725,2815,742],{"class":741},[725,2817,745],{"class":731},[725,2819,1018],{"class":731},[725,2821,745],{"class":731},[725,2823,778],{"class":766},[725,2825,745],{"class":731},[725,2827,1018],{"class":731},[725,2829,745],{"class":731},[725,2831,1031],{"class":802},[725,2833,745],{"class":731},[725,2835,748],{"class":731},[725,2837,745],{"class":731},[725,2839,1040],{"class":777},[725,2841,745],{"class":731},[725,2843,1061],{"class":731},[725,2845,745],{"class":731},[725,2847,830],{"class":766},[725,2849,745],{"class":731},[725,2851,1018],{"class":731},[725,2853,745],{"class":731},[725,2855,1031],{"class":802},[725,2857,745],{"class":731},[725,2859,748],{"class":731},[725,2861,745],{"class":731},[725,2863,1040],{"class":777},[725,2865,745],{"class":731},[725,2867,1102],{"class":731},[725,2869,745],{"class":731},[725,2871,1107],{"class":741},[725,2873,745],{"class":731},[725,2875,748],{"class":731},[725,2877,745],{"class":731},[725,2879,1116],{"class":777},[725,2881,745],{"class":731},[725,2883,956],{"class":731},[725,2885,745],{"class":731},[725,2887,1125],{"class":741},[725,2889,745],{"class":731},[725,2891,1130],{"class":731},[725,2893,745],{"class":731},[725,2895,1135],{"class":741},[725,2897,745],{"class":731},[725,2899,1140],{"class":731},[725,2901,745],{"class":731},[725,2903,1145],{"class":741},[725,2905,745],{"class":731},[725,2907,748],{"class":731},[725,2909,2910],{"class":802},"440",[725,2912,956],{"class":731},[725,2914,745],{"class":731},[725,2916,1159],{"class":741},[725,2918,745],{"class":731},[725,2920,748],{"class":731},[725,2922,1166],{"class":802},[725,2924,956],{"class":731},[725,2926,745],{"class":731},[725,2928,1173],{"class":741},[725,2930,745],{"class":731},[725,2932,1178],{"class":731},[725,2934,745],{"class":731},[725,2936,1183],{"class":777},[725,2938,745],{"class":731},[725,2940,1188],{"class":731},[725,2942,745],{"class":731},[725,2944,942],{"class":741},[725,2946,745],{"class":731},[725,2948,748],{"class":731},[725,2950,745],{"class":731},[725,2952,1201],{"class":777},[725,2954,745],{"class":731},[725,2956,956],{"class":731},[725,2958,745],{"class":731},[725,2960,961],{"class":741},[725,2962,745],{"class":731},[725,2964,748],{"class":731},[725,2966,745],{"class":731},[725,2968,1218],{"class":777},[725,2970,745],{"class":731},[725,2972,956],{"class":731},[725,2974,745],{"class":731},[725,2976,979],{"class":741},[725,2978,745],{"class":731},[725,2980,748],{"class":731},[725,2982,745],{"class":731},[725,2984,988],{"class":777},[725,2986,745],{"class":731},[725,2988,956],{"class":731},[725,2990,745],{"class":731},[725,2992,767],{"class":741},[725,2994,745],{"class":731},[725,2996,748],{"class":731},[725,2998,745],{"class":731},[725,3000,3001],{"class":777},"Send connect command",[725,3003,745],{"class":731},[725,3005,956],{"class":731},[725,3007,745],{"class":731},[725,3009,1260],{"class":741},[725,3011,745],{"class":731},[725,3013,1265],{"class":731},[725,3015,745],{"class":731},[725,3017,12],{"class":766},[725,3019,745],{"class":731},[725,3021,748],{"class":731},[725,3023,745],{"class":731},[725,3025,3026],{"class":777},"command",[725,3028,745],{"class":731},[725,3030,956],{"class":731},[725,3032,745],{"class":731},[725,3034,3035],{"class":766},"v",[725,3037,745],{"class":731},[725,3039,748],{"class":731},[725,3041,745],{"class":731},[725,3043,3044],{"class":777},"{",[725,3046,1397],{"class":798},[725,3048,3049],{"class":777},"node",[725,3051,1397],{"class":798},[725,3053,1018],{"class":777},[725,3055,1397],{"class":798},[725,3057,3058],{"class":777},"connect",[725,3060,1397],{"class":798},[725,3062,3063],{"class":777},":true}}",[725,3065,745],{"class":731},[725,3067,956],{"class":731},[725,3069,745],{"class":731},[725,3071,1305],{"class":766},[725,3073,745],{"class":731},[725,3075,748],{"class":731},[725,3077,745],{"class":731},[725,3079,1474],{"class":777},[725,3081,745],{"class":731},[725,3083,1319],{"class":731},[725,3085,745],{"class":731},[725,3087,1324],{"class":741},[725,3089,745],{"class":731},[725,3091,748],{"class":731},[725,3093,1331],{"class":731},[725,3095,956],{"class":731},[725,3097,745],{"class":731},[725,3099,1338],{"class":741},[725,3101,745],{"class":731},[725,3103,748],{"class":731},[725,3105,1331],{"class":731},[725,3107,956],{"class":731},[725,3109,745],{"class":731},[725,3111,1351],{"class":741},[725,3113,745],{"class":731},[725,3115,1140],{"class":731},[725,3117,745],{"class":731},[725,3119,1360],{"class":741},[725,3121,745],{"class":731},[725,3123,748],{"class":731},[725,3125,1367],{"class":802},[725,3127,956],{"class":731},[725,3129,745],{"class":731},[725,3131,1296],{"class":741},[725,3133,745],{"class":731},[725,3135,748],{"class":731},[725,3137,1331],{"class":731},[725,3139,956],{"class":731},[725,3141,745],{"class":731},[725,3143,1145],{"class":741},[725,3145,745],{"class":731},[725,3147,748],{"class":731},[725,3149,3150],{"class":802},"170",[725,3152,956],{"class":731},[725,3154,745],{"class":731},[725,3156,1159],{"class":741},[725,3158,745],{"class":731},[725,3160,748],{"class":731},[725,3162,3163],{"class":802},"260",[725,3165,956],{"class":731},[725,3167,745],{"class":731},[725,3169,1173],{"class":741},[725,3171,745],{"class":731},[725,3173,1178],{"class":731},[725,3175,745],{"class":731},[725,3177,951],{"class":777},[725,3179,745],{"class":731},[725,3181,1188],{"class":731},[725,3183,745],{"class":731},[725,3185,942],{"class":741},[725,3187,745],{"class":731},[725,3189,748],{"class":731},[725,3191,745],{"class":731},[725,3193,1183],{"class":777},[725,3195,745],{"class":731},[725,3197,956],{"class":731},[725,3199,745],{"class":731},[725,3201,961],{"class":741},[725,3203,745],{"class":731},[725,3205,748],{"class":731},[725,3207,745],{"class":731},[725,3209,1548],{"class":777},[725,3211,745],{"class":731},[725,3213,956],{"class":731},[725,3215,745],{"class":731},[725,3217,979],{"class":741},[725,3219,745],{"class":731},[725,3221,748],{"class":731},[725,3223,745],{"class":731},[725,3225,988],{"class":777},[725,3227,745],{"class":731},[725,3229,956],{"class":731},[725,3231,745],{"class":731},[725,3233,767],{"class":741},[725,3235,745],{"class":731},[725,3237,748],{"class":731},[725,3239,1331],{"class":731},[725,3241,956],{"class":731},[725,3243,745],{"class":731},[725,3245,1585],{"class":741},[725,3247,745],{"class":731},[725,3249,1130],{"class":731},[725,3251,745],{"class":731},[725,3253,1594],{"class":741},[725,3255,745],{"class":731},[725,3257,1130],{"class":731},[725,3259,745],{"class":731},[725,3261,1603],{"class":741},[725,3263,745],{"class":731},[725,3265,1140],{"class":731},[725,3267,745],{"class":731},[725,3269,1612],{"class":741},[725,3271,745],{"class":731},[725,3273,1140],{"class":731},[725,3275,745],{"class":731},[725,3277,1621],{"class":741},[725,3279,745],{"class":731},[725,3281,748],{"class":731},[725,3283,745],{"class":731},[725,3285,1278],{"class":777},[725,3287,745],{"class":731},[725,3289,956],{"class":731},[725,3291,745],{"class":731},[725,3293,1638],{"class":741},[725,3295,745],{"class":731},[725,3297,748],{"class":731},[725,3299,745],{"class":731},[725,3301,1647],{"class":777},[725,3303,745],{"class":731},[725,3305,956],{"class":731},[725,3307,745],{"class":731},[725,3309,1656],{"class":741},[725,3311,745],{"class":731},[725,3313,748],{"class":731},[725,3315,1331],{"class":731},[725,3317,956],{"class":731},[725,3319,745],{"class":731},[725,3321,1669],{"class":741},[725,3323,745],{"class":731},[725,3325,748],{"class":731},[725,3327,745],{"class":731},[725,3329,1678],{"class":777},[725,3331,745],{"class":731},[725,3333,956],{"class":731},[725,3335,745],{"class":731},[725,3337,1145],{"class":741},[725,3339,745],{"class":731},[725,3341,748],{"class":731},[725,3343,1693],{"class":802},[725,3345,956],{"class":731},[725,3347,745],{"class":731},[725,3349,1159],{"class":741},[725,3351,745],{"class":731},[725,3353,748],{"class":731},[725,3355,1166],{"class":802},[725,3357,956],{"class":731},[725,3359,745],{"class":731},[725,3361,1173],{"class":741},[725,3363,745],{"class":731},[725,3365,1716],{"class":731},[725,3367,745],{"class":731},[725,3369,942],{"class":741},[725,3371,745],{"class":731},[725,3373,748],{"class":731},[725,3375,745],{"class":731},[725,3377,3378],{"class":777},"915ca0772eebee04",[725,3380,745],{"class":731},[725,3382,956],{"class":731},[725,3384,745],{"class":731},[725,3386,961],{"class":741},[725,3388,745],{"class":731},[725,3390,748],{"class":731},[725,3392,745],{"class":731},[725,3394,1218],{"class":777},[725,3396,745],{"class":731},[725,3398,956],{"class":731},[725,3400,745],{"class":731},[725,3402,979],{"class":741},[725,3404,745],{"class":731},[725,3406,748],{"class":731},[725,3408,745],{"class":731},[725,3410,988],{"class":777},[725,3412,745],{"class":731},[725,3414,956],{"class":731},[725,3416,745],{"class":731},[725,3418,767],{"class":741},[725,3420,745],{"class":731},[725,3422,748],{"class":731},[725,3424,745],{"class":731},[725,3426,3427],{"class":777},"Send rebirth command",[725,3429,745],{"class":731},[725,3431,956],{"class":731},[725,3433,745],{"class":731},[725,3435,1260],{"class":741},[725,3437,745],{"class":731},[725,3439,1265],{"class":731},[725,3441,745],{"class":731},[725,3443,12],{"class":766},[725,3445,745],{"class":731},[725,3447,748],{"class":731},[725,3449,745],{"class":731},[725,3451,3026],{"class":777},[725,3453,745],{"class":731},[725,3455,956],{"class":731},[725,3457,745],{"class":731},[725,3459,3035],{"class":766},[725,3461,745],{"class":731},[725,3463,748],{"class":731},[725,3465,745],{"class":731},[725,3467,3044],{"class":777},[725,3469,1397],{"class":798},[725,3471,2642],{"class":777},[725,3473,1397],{"class":798},[725,3475,1018],{"class":777},[725,3477,1397],{"class":798},[725,3479,2704],{"class":777},[725,3481,1397],{"class":798},[725,3483,3063],{"class":777},[725,3485,745],{"class":731},[725,3487,956],{"class":731},[725,3489,745],{"class":731},[725,3491,1305],{"class":766},[725,3493,745],{"class":731},[725,3495,748],{"class":731},[725,3497,745],{"class":731},[725,3499,720],{"class":777},[725,3501,745],{"class":731},[725,3503,1319],{"class":731},[725,3505,745],{"class":731},[725,3507,1324],{"class":741},[725,3509,745],{"class":731},[725,3511,748],{"class":731},[725,3513,1331],{"class":731},[725,3515,956],{"class":731},[725,3517,745],{"class":731},[725,3519,1338],{"class":741},[725,3521,745],{"class":731},[725,3523,748],{"class":731},[725,3525,1331],{"class":731},[725,3527,956],{"class":731},[725,3529,745],{"class":731},[725,3531,1351],{"class":741},[725,3533,745],{"class":731},[725,3535,1140],{"class":731},[725,3537,745],{"class":731},[725,3539,1360],{"class":741},[725,3541,745],{"class":731},[725,3543,748],{"class":731},[725,3545,1367],{"class":802},[725,3547,956],{"class":731},[725,3549,745],{"class":731},[725,3551,1296],{"class":741},[725,3553,745],{"class":731},[725,3555,748],{"class":731},[725,3557,1331],{"class":731},[725,3559,956],{"class":731},[725,3561,745],{"class":731},[725,3563,1145],{"class":741},[725,3565,745],{"class":731},[725,3567,748],{"class":731},[725,3569,3570],{"class":802},"160",[725,3572,956],{"class":731},[725,3574,745],{"class":731},[725,3576,1159],{"class":741},[725,3578,745],{"class":731},[725,3580,748],{"class":731},[725,3582,1166],{"class":802},[725,3584,956],{"class":731},[725,3586,745],{"class":731},[725,3588,1173],{"class":741},[725,3590,745],{"class":731},[725,3592,1178],{"class":731},[725,3594,745],{"class":731},[725,3596,951],{"class":777},[725,3598,745],{"class":731},[725,3600,1188],{"class":731},[725,3602,745],{"class":731},[725,3604,942],{"class":741},[725,3606,745],{"class":731},[725,3608,748],{"class":731},[725,3610,745],{"class":731},[725,3612,3613],{"class":777},"696db58cc9eb029d",[725,3615,745],{"class":731},[725,3617,956],{"class":731},[725,3619,745],{"class":731},[725,3621,961],{"class":741},[725,3623,745],{"class":731},[725,3625,748],{"class":731},[725,3627,745],{"class":731},[725,3629,1218],{"class":777},[725,3631,745],{"class":731},[725,3633,956],{"class":731},[725,3635,745],{"class":731},[725,3637,979],{"class":741},[725,3639,745],{"class":731},[725,3641,748],{"class":731},[725,3643,745],{"class":731},[725,3645,988],{"class":777},[725,3647,745],{"class":731},[725,3649,956],{"class":731},[725,3651,745],{"class":731},[725,3653,767],{"class":741},[725,3655,745],{"class":731},[725,3657,748],{"class":731},[725,3659,745],{"class":731},[725,3661,3662],{"class":777},"Send death command",[725,3664,745],{"class":731},[725,3666,956],{"class":731},[725,3668,745],{"class":731},[725,3670,1260],{"class":741},[725,3672,745],{"class":731},[725,3674,1265],{"class":731},[725,3676,745],{"class":731},[725,3678,12],{"class":766},[725,3680,745],{"class":731},[725,3682,748],{"class":731},[725,3684,745],{"class":731},[725,3686,3026],{"class":777},[725,3688,745],{"class":731},[725,3690,956],{"class":731},[725,3692,745],{"class":731},[725,3694,3035],{"class":766},[725,3696,745],{"class":731},[725,3698,748],{"class":731},[725,3700,745],{"class":731},[725,3702,3044],{"class":777},[725,3704,1397],{"class":798},[725,3706,2642],{"class":777},[725,3708,1397],{"class":798},[725,3710,1018],{"class":777},[725,3712,1397],{"class":798},[725,3714,2657],{"class":777},[725,3716,1397],{"class":798},[725,3718,3063],{"class":777},[725,3720,745],{"class":731},[725,3722,956],{"class":731},[725,3724,745],{"class":731},[725,3726,1305],{"class":766},[725,3728,745],{"class":731},[725,3730,748],{"class":731},[725,3732,745],{"class":731},[725,3734,720],{"class":777},[725,3736,745],{"class":731},[725,3738,1319],{"class":731},[725,3740,745],{"class":731},[725,3742,1324],{"class":741},[725,3744,745],{"class":731},[725,3746,748],{"class":731},[725,3748,1331],{"class":731},[725,3750,956],{"class":731},[725,3752,745],{"class":731},[725,3754,1338],{"class":741},[725,3756,745],{"class":731},[725,3758,748],{"class":731},[725,3760,1331],{"class":731},[725,3762,956],{"class":731},[725,3764,745],{"class":731},[725,3766,1351],{"class":741},[725,3768,745],{"class":731},[725,3770,1140],{"class":731},[725,3772,745],{"class":731},[725,3774,1360],{"class":741},[725,3776,745],{"class":731},[725,3778,748],{"class":731},[725,3780,1367],{"class":802},[725,3782,956],{"class":731},[725,3784,745],{"class":731},[725,3786,1296],{"class":741},[725,3788,745],{"class":731},[725,3790,748],{"class":731},[725,3792,1331],{"class":731},[725,3794,956],{"class":731},[725,3796,745],{"class":731},[725,3798,1145],{"class":741},[725,3800,745],{"class":731},[725,3802,748],{"class":731},[725,3804,3570],{"class":802},[725,3806,956],{"class":731},[725,3808,745],{"class":731},[725,3810,1159],{"class":741},[725,3812,745],{"class":731},[725,3814,748],{"class":731},[725,3816,1152],{"class":802},[725,3818,956],{"class":731},[725,3820,745],{"class":731},[725,3822,1173],{"class":741},[725,3824,745],{"class":731},[725,3826,1178],{"class":731},[725,3828,745],{"class":731},[725,3830,951],{"class":777},[725,3832,745],{"class":731},[725,3834,1188],{"class":731},[725,3836,745],{"class":731},[725,3838,942],{"class":741},[725,3840,745],{"class":731},[725,3842,748],{"class":731},[725,3844,745],{"class":731},[725,3846,1116],{"class":777},[725,3848,745],{"class":731},[725,3850,956],{"class":731},[725,3852,745],{"class":731},[725,3854,961],{"class":741},[725,3856,745],{"class":731},[725,3858,748],{"class":731},[725,3860,745],{"class":731},[725,3862,1745],{"class":777},[725,3864,745],{"class":731},[725,3866,956],{"class":731},[725,3868,745],{"class":731},[725,3870,767],{"class":741},[725,3872,745],{"class":731},[725,3874,748],{"class":731},[725,3876,745],{"class":731},[725,3878,1762],{"class":777},[725,3880,745],{"class":731},[725,3882,956],{"class":731},[725,3884,745],{"class":731},[725,3886,1771],{"class":741},[725,3888,745],{"class":731},[725,3890,748],{"class":731},[725,3892,745],{"class":731},[725,3894,1780],{"class":777},[725,3896,745],{"class":731},[725,3898,956],{"class":731},[725,3900,745],{"class":731},[725,3902,1789],{"class":741},[725,3904,745],{"class":731},[725,3906,748],{"class":731},[725,3908,745],{"class":731},[725,3910,1798],{"class":777},[725,3912,745],{"class":731},[725,3914,956],{"class":731},[725,3916,745],{"class":731},[725,3918,1107],{"class":741},[725,3920,745],{"class":731},[725,3922,748],{"class":731},[725,3924,745],{"class":731},[725,3926,1815],{"class":777},[725,3928,745],{"class":731},[725,3930,956],{"class":731},[725,3932,745],{"class":731},[725,3934,1824],{"class":741},[725,3936,745],{"class":731},[725,3938,748],{"class":731},[725,3940,745],{"class":731},[725,3942,676],{"class":777},[725,3944,745],{"class":731},[725,3946,956],{"class":731},[725,3948,745],{"class":731},[725,3950,1841],{"class":741},[725,3952,745],{"class":731},[725,3954,748],{"class":731},[725,3956,1331],{"class":731},[725,3958,956],{"class":731},[725,3960,745],{"class":731},[725,3962,1854],{"class":741},[725,3964,745],{"class":731},[725,3966,748],{"class":731},[725,3968,1331],{"class":731},[725,3970,956],{"class":731},[725,3972,745],{"class":731},[725,3974,1867],{"class":741},[725,3976,745],{"class":731},[725,3978,1140],{"class":731},[725,3980,745],{"class":731},[725,3982,1876],{"class":741},[725,3984,745],{"class":731},[725,3986,748],{"class":731},[725,3988,745],{"class":731},[725,3990,1885],{"class":777},[725,3992,745],{"class":731},[725,3994,956],{"class":731},[725,3996,745],{"class":731},[725,3998,1894],{"class":741},[725,4000,745],{"class":731},[725,4002,748],{"class":731},[725,4004,745],{"class":731},[725,4006,1903],{"class":777},[725,4008,745],{"class":731},[725,4010,956],{"class":731},[725,4012,745],{"class":731},[725,4014,1912],{"class":741},[725,4016,745],{"class":731},[725,4018,1130],{"class":731},[725,4020,745],{"class":731},[725,4022,1921],{"class":741},[725,4024,745],{"class":731},[725,4026,1140],{"class":731},[725,4028,745],{"class":731},[725,4030,1930],{"class":741},[725,4032,745],{"class":731},[725,4034,748],{"class":731},[725,4036,1331],{"class":731},[725,4038,956],{"class":731},[725,4040,745],{"class":731},[725,4042,1943],{"class":741},[725,4044,745],{"class":731},[725,4046,1130],{"class":731},[725,4048,745],{"class":731},[725,4050,1952],{"class":741},[725,4052,745],{"class":731},[725,4054,1130],{"class":731},[725,4056,745],{"class":731},[725,4058,1961],{"class":741},[725,4060,745],{"class":731},[725,4062,748],{"class":731},[725,4064,1331],{"class":731},[725,4066,1970],{"class":731},[12,4068,4069],{},"If you need more flexibility in defining topic names when sending data, you can use the mqtt sparkplug out node. It’s quite similar to the standard mqtt out node but is designed to handle Sparkplug-encoded messages. Below is an example showing how to use the mqtt sparkplug out node with in nodes.",[926,4071,4072],{},[716,4073,4075],{"className":718,"code":4074,"language":720,"meta":721,"style":721},"[{\"id\":\"bbe3765e67eed956\",\"type\":\"mqtt sparkplug in\",\"z\":\"f098830cc10afc2f\",\"name\":\"\",\"topic\":\"spBv1.0\u002F+\u002F+\u002F#\",\"qos\":\"2\",\"broker\":\"0d831bd9ba588536\",\"x\":150,\"y\":100,\"wires\":[[\"d45ff4446380beaa\"]]},{\"id\":\"3b2b9788c51d5c3b\",\"type\":\"mqtt sparkplug out\",\"z\":\"f098830cc10afc2f\",\"name\":\"\",\"topic\":\"spBv1.0\u002FMy Devices\u002FNDATA\u002FNode-Red\",\"qos\":\"\",\"retain\":\"\",\"broker\":\"0d831bd9ba588536\",\"x\":510,\"y\":200,\"wires\":[]},{\"id\":\"d45ff4446380beaa\",\"type\":\"debug\",\"z\":\"f098830cc10afc2f\",\"name\":\"\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"false\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":410,\"y\":100,\"wires\":[]},{\"id\":\"dc73048fd385783a\",\"type\":\"inject\",\"z\":\"f098830cc10afc2f\",\"name\":\"Send Metrics\",\"props\":[{\"p\":\"payload\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":0.1,\"topic\":\"\",\"payload\":\"{    \\\"metrics\\\": [        {            \\\"name\\\": \\\"sensor\u002Ftemperature\\\",            \\\"value\\\": $random(),            \\\"type\\\": \\\"Float\\\"        },        {            \\\"name\\\": \\\"sensor\u002Fhumidity\\\",            \\\"value\\\": $random(),            \\\"type\\\": \\\"Float\\\"        }    ]}\",\"payloadType\":\"jsonata\",\"x\":170,\"y\":220,\"wires\":[[\"3b2b9788c51d5c3b\"]]},{\"id\":\"0d831bd9ba588536\",\"type\":\"mqtt-sparkplug-broker\",\"name\":\"Local Host\",\"deviceGroup\":\"My Devices\",\"eonName\":\"Node-Red\",\"broker\":\"localhost\",\"port\":\"1883\",\"tls\":\"\",\"clientid\":\"\",\"usetls\":false,\"protocolVersion\":\"4\",\"keepalive\":\"60\",\"cleansession\":true,\"enableStoreForward\":false,\"compressAlgorithm\":\"\",\"aliasMetrics\":true,\"manualEoNBirth\":false,\"primaryScada\":\"\"}]\n",[53,4076,4077],{"__ignoreMap":721},[725,4078,4079,4081,4083,4085,4087,4089,4091,4094,4096,4098,4100,4102,4104,4106,4108,4110,4112,4114,4116,4118,4120,4122,4124,4127,4129,4131,4133,4135,4137,4139,4141,4143,4145,4147,4149,4151,4153,4156,4158,4160,4162,4164,4166,4168,4170,4172,4174,4176,4178,4180,4182,4184,4186,4188,4190,4192,4194,4196,4198,4200,4203,4205,4207,4209,4211,4213,4216,4218,4220,4222,4224,4226,4228,4231,4233,4235,4237,4239,4241,4243,4245,4248,4250,4252,4254,4256,4258,4260,4262,4265,4267,4269,4271,4273,4275,4277,4279,4281,4283,4285,4287,4289,4291,4293,4295,4297,4299,4301,4303,4305,4307,4310,4312,4314,4316,4318,4320,4322,4324,4326,4328,4331,4333,4335,4337,4339,4341,4343,4345,4347,4349,4351,4353,4355,4357,4359,4361,4363,4366,4368,4370,4372,4374,4376,4379,4381,4383,4385,4387,4389,4391,4393,4395,4397,4399,4401,4403,4405,4407,4409,4411,4413,4415,4417,4419,4421,4423,4425,4427,4429,4431,4433,4435,4437,4439,4441,4443,4445,4447,4449,4451,4453,4455,4457,4459,4461,4463,4465,4467,4469,4471,4473,4475,4477,4479,4481,4483,4485,4487,4489,4491,4494,4496,4498,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4526,4528,4530,4532,4534,4537,4539,4541,4543,4545,4547,4549,4551,4553,4555,4557,4559,4561,4563,4565,4567,4569,4572,4574,4576,4578,4580,4582,4584,4586,4588,4590,4592,4594,4596,4598,4600,4602,4604,4606,4608,4610,4612,4614,4616,4618,4620,4622,4624,4626,4628,4630,4632,4634,4636,4638,4640,4642,4644,4646,4648,4650,4652,4654,4656,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4678,4680,4682,4684,4686,4688,4690,4692,4694,4696,4698,4700,4702,4704,4706,4708,4710,4712,4714,4716,4718,4720,4722,4724,4726,4728,4730,4732,4734,4736,4738,4740,4742,4744,4746,4749,4751,4753,4755,4757,4759,4761,4763,4766,4768,4770,4772,4774,4776,4778,4780,4782,4784,4786,4788,4790,4792,4794,4796,4798,4800,4802,4804,4807,4809,4811,4813,4815,4817,4819,4821,4823,4825,4827,4829,4831,4833,4835,4837,4839,4841,4843,4845,4847,4850,4852,4854,4856,4858,4860,4862,4864,4866,4868,4870,4872,4874,4876,4878,4880,4882,4884,4886,4888,4890,4892,4894,4896,4898,4900,4902,4904,4906,4908,4910,4912,4914,4916,4918,4920,4922,4924,4926,4928,4930,4932,4934,4936,4938,4940,4942,4944,4946,4948,4950,4952,4954,4956,4958,4960,4962,4964,4966,4968,4970,4972,4974,4976,4978,4980,4982,4984,4986,4988,4990,4992,4994,4996,4998,5000,5002,5004,5006,5008,5010,5012,5014,5016,5018,5020,5022,5024,5026,5028,5030,5032,5034,5036,5038,5040,5042,5044,5046,5048,5050,5052,5054,5056,5058,5060,5062,5064,5066,5068,5070,5072,5074,5076,5078,5080,5082,5084,5086,5088,5090,5092,5094,5096,5098],{"class":727,"line":728},[725,4080,937],{"class":731},[725,4082,745],{"class":731},[725,4084,942],{"class":741},[725,4086,745],{"class":731},[725,4088,748],{"class":731},[725,4090,745],{"class":731},[725,4092,4093],{"class":777},"bbe3765e67eed956",[725,4095,745],{"class":731},[725,4097,956],{"class":731},[725,4099,745],{"class":731},[725,4101,961],{"class":741},[725,4103,745],{"class":731},[725,4105,748],{"class":731},[725,4107,745],{"class":731},[725,4109,2057],{"class":777},[725,4111,745],{"class":731},[725,4113,956],{"class":731},[725,4115,745],{"class":731},[725,4117,979],{"class":741},[725,4119,745],{"class":731},[725,4121,748],{"class":731},[725,4123,745],{"class":731},[725,4125,4126],{"class":777},"f098830cc10afc2f",[725,4128,745],{"class":731},[725,4130,956],{"class":731},[725,4132,745],{"class":731},[725,4134,767],{"class":741},[725,4136,745],{"class":731},[725,4138,748],{"class":731},[725,4140,1331],{"class":731},[725,4142,956],{"class":731},[725,4144,745],{"class":731},[725,4146,1296],{"class":741},[725,4148,745],{"class":731},[725,4150,748],{"class":731},[725,4152,745],{"class":731},[725,4154,4155],{"class":777},"spBv1.0\u002F+\u002F+\u002F#",[725,4157,745],{"class":731},[725,4159,956],{"class":731},[725,4161,745],{"class":731},[725,4163,2111],{"class":741},[725,4165,745],{"class":731},[725,4167,748],{"class":731},[725,4169,745],{"class":731},[725,4171,2120],{"class":777},[725,4173,745],{"class":731},[725,4175,956],{"class":731},[725,4177,745],{"class":731},[725,4179,1107],{"class":741},[725,4181,745],{"class":731},[725,4183,748],{"class":731},[725,4185,745],{"class":731},[725,4187,1116],{"class":777},[725,4189,745],{"class":731},[725,4191,956],{"class":731},[725,4193,745],{"class":731},[725,4195,1145],{"class":741},[725,4197,745],{"class":731},[725,4199,748],{"class":731},[725,4201,4202],{"class":802},"150",[725,4204,956],{"class":731},[725,4206,745],{"class":731},[725,4208,1159],{"class":741},[725,4210,745],{"class":731},[725,4212,748],{"class":731},[725,4214,4215],{"class":802},"100",[725,4217,956],{"class":731},[725,4219,745],{"class":731},[725,4221,1173],{"class":741},[725,4223,745],{"class":731},[725,4225,1178],{"class":731},[725,4227,745],{"class":731},[725,4229,4230],{"class":777},"d45ff4446380beaa",[725,4232,745],{"class":731},[725,4234,1188],{"class":731},[725,4236,745],{"class":731},[725,4238,942],{"class":741},[725,4240,745],{"class":731},[725,4242,748],{"class":731},[725,4244,745],{"class":731},[725,4246,4247],{"class":777},"3b2b9788c51d5c3b",[725,4249,745],{"class":731},[725,4251,956],{"class":731},[725,4253,745],{"class":731},[725,4255,961],{"class":741},[725,4257,745],{"class":731},[725,4259,748],{"class":731},[725,4261,745],{"class":731},[725,4263,4264],{"class":777},"mqtt sparkplug out",[725,4266,745],{"class":731},[725,4268,956],{"class":731},[725,4270,745],{"class":731},[725,4272,979],{"class":741},[725,4274,745],{"class":731},[725,4276,748],{"class":731},[725,4278,745],{"class":731},[725,4280,4126],{"class":777},[725,4282,745],{"class":731},[725,4284,956],{"class":731},[725,4286,745],{"class":731},[725,4288,767],{"class":741},[725,4290,745],{"class":731},[725,4292,748],{"class":731},[725,4294,1331],{"class":731},[725,4296,956],{"class":731},[725,4298,745],{"class":731},[725,4300,1296],{"class":741},[725,4302,745],{"class":731},[725,4304,748],{"class":731},[725,4306,745],{"class":731},[725,4308,4309],{"class":777},"spBv1.0\u002FMy Devices\u002FNDATA\u002FNode-Red",[725,4311,745],{"class":731},[725,4313,956],{"class":731},[725,4315,745],{"class":731},[725,4317,2111],{"class":741},[725,4319,745],{"class":731},[725,4321,748],{"class":731},[725,4323,1331],{"class":731},[725,4325,956],{"class":731},[725,4327,745],{"class":731},[725,4329,4330],{"class":741},"retain",[725,4332,745],{"class":731},[725,4334,748],{"class":731},[725,4336,1331],{"class":731},[725,4338,956],{"class":731},[725,4340,745],{"class":731},[725,4342,1107],{"class":741},[725,4344,745],{"class":731},[725,4346,748],{"class":731},[725,4348,745],{"class":731},[725,4350,1116],{"class":777},[725,4352,745],{"class":731},[725,4354,956],{"class":731},[725,4356,745],{"class":731},[725,4358,1145],{"class":741},[725,4360,745],{"class":731},[725,4362,748],{"class":731},[725,4364,4365],{"class":802},"510",[725,4367,956],{"class":731},[725,4369,745],{"class":731},[725,4371,1159],{"class":741},[725,4373,745],{"class":731},[725,4375,748],{"class":731},[725,4377,4378],{"class":802},"200",[725,4380,956],{"class":731},[725,4382,745],{"class":731},[725,4384,1173],{"class":741},[725,4386,745],{"class":731},[725,4388,1716],{"class":731},[725,4390,745],{"class":731},[725,4392,942],{"class":741},[725,4394,745],{"class":731},[725,4396,748],{"class":731},[725,4398,745],{"class":731},[725,4400,4230],{"class":777},[725,4402,745],{"class":731},[725,4404,956],{"class":731},[725,4406,745],{"class":731},[725,4408,961],{"class":741},[725,4410,745],{"class":731},[725,4412,748],{"class":731},[725,4414,745],{"class":731},[725,4416,1548],{"class":777},[725,4418,745],{"class":731},[725,4420,956],{"class":731},[725,4422,745],{"class":731},[725,4424,979],{"class":741},[725,4426,745],{"class":731},[725,4428,748],{"class":731},[725,4430,745],{"class":731},[725,4432,4126],{"class":777},[725,4434,745],{"class":731},[725,4436,956],{"class":731},[725,4438,745],{"class":731},[725,4440,767],{"class":741},[725,4442,745],{"class":731},[725,4444,748],{"class":731},[725,4446,1331],{"class":731},[725,4448,956],{"class":731},[725,4450,745],{"class":731},[725,4452,1585],{"class":741},[725,4454,745],{"class":731},[725,4456,1130],{"class":731},[725,4458,745],{"class":731},[725,4460,1594],{"class":741},[725,4462,745],{"class":731},[725,4464,1130],{"class":731},[725,4466,745],{"class":731},[725,4468,1603],{"class":741},[725,4470,745],{"class":731},[725,4472,1140],{"class":731},[725,4474,745],{"class":731},[725,4476,1612],{"class":741},[725,4478,745],{"class":731},[725,4480,1140],{"class":731},[725,4482,745],{"class":731},[725,4484,1621],{"class":741},[725,4486,745],{"class":731},[725,4488,748],{"class":731},[725,4490,745],{"class":731},[725,4492,4493],{"class":777},"false",[725,4495,745],{"class":731},[725,4497,956],{"class":731},[725,4499,745],{"class":731},[725,4501,1656],{"class":741},[725,4503,745],{"class":731},[725,4505,748],{"class":731},[725,4507,1331],{"class":731},[725,4509,956],{"class":731},[725,4511,745],{"class":731},[725,4513,1669],{"class":741},[725,4515,745],{"class":731},[725,4517,748],{"class":731},[725,4519,745],{"class":731},[725,4521,1678],{"class":777},[725,4523,745],{"class":731},[725,4525,956],{"class":731},[725,4527,745],{"class":731},[725,4529,1145],{"class":741},[725,4531,745],{"class":731},[725,4533,748],{"class":731},[725,4535,4536],{"class":802},"410",[725,4538,956],{"class":731},[725,4540,745],{"class":731},[725,4542,1159],{"class":741},[725,4544,745],{"class":731},[725,4546,748],{"class":731},[725,4548,4215],{"class":802},[725,4550,956],{"class":731},[725,4552,745],{"class":731},[725,4554,1173],{"class":741},[725,4556,745],{"class":731},[725,4558,1716],{"class":731},[725,4560,745],{"class":731},[725,4562,942],{"class":741},[725,4564,745],{"class":731},[725,4566,748],{"class":731},[725,4568,745],{"class":731},[725,4570,4571],{"class":777},"dc73048fd385783a",[725,4573,745],{"class":731},[725,4575,956],{"class":731},[725,4577,745],{"class":731},[725,4579,961],{"class":741},[725,4581,745],{"class":731},[725,4583,748],{"class":731},[725,4585,745],{"class":731},[725,4587,1218],{"class":777},[725,4589,745],{"class":731},[725,4591,956],{"class":731},[725,4593,745],{"class":731},[725,4595,979],{"class":741},[725,4597,745],{"class":731},[725,4599,748],{"class":731},[725,4601,745],{"class":731},[725,4603,4126],{"class":777},[725,4605,745],{"class":731},[725,4607,956],{"class":731},[725,4609,745],{"class":731},[725,4611,767],{"class":741},[725,4613,745],{"class":731},[725,4615,748],{"class":731},[725,4617,745],{"class":731},[725,4619,1251],{"class":777},[725,4621,745],{"class":731},[725,4623,956],{"class":731},[725,4625,745],{"class":731},[725,4627,1260],{"class":741},[725,4629,745],{"class":731},[725,4631,1265],{"class":731},[725,4633,745],{"class":731},[725,4635,12],{"class":766},[725,4637,745],{"class":731},[725,4639,748],{"class":731},[725,4641,745],{"class":731},[725,4643,1278],{"class":777},[725,4645,745],{"class":731},[725,4647,1319],{"class":731},[725,4649,745],{"class":731},[725,4651,1324],{"class":741},[725,4653,745],{"class":731},[725,4655,748],{"class":731},[725,4657,1331],{"class":731},[725,4659,956],{"class":731},[725,4661,745],{"class":731},[725,4663,1338],{"class":741},[725,4665,745],{"class":731},[725,4667,748],{"class":731},[725,4669,1331],{"class":731},[725,4671,956],{"class":731},[725,4673,745],{"class":731},[725,4675,1351],{"class":741},[725,4677,745],{"class":731},[725,4679,1140],{"class":731},[725,4681,745],{"class":731},[725,4683,1360],{"class":741},[725,4685,745],{"class":731},[725,4687,748],{"class":731},[725,4689,1367],{"class":802},[725,4691,956],{"class":731},[725,4693,745],{"class":731},[725,4695,1296],{"class":741},[725,4697,745],{"class":731},[725,4699,748],{"class":731},[725,4701,1331],{"class":731},[725,4703,956],{"class":731},[725,4705,745],{"class":731},[725,4707,1278],{"class":741},[725,4709,745],{"class":731},[725,4711,748],{"class":731},[725,4713,745],{"class":731},[725,4715,1394],{"class":777},[725,4717,1397],{"class":798},[725,4719,742],{"class":777},[725,4721,1397],{"class":798},[725,4723,1404],{"class":777},[725,4725,1397],{"class":798},[725,4727,767],{"class":777},[725,4729,1397],{"class":798},[725,4731,1413],{"class":777},[725,4733,1397],{"class":798},[725,4735,778],{"class":777},[725,4737,1397],{"class":798},[725,4739,1422],{"class":777},[725,4741,1397],{"class":798},[725,4743,791],{"class":777},[725,4745,1397],{"class":798},[725,4747,4748],{"class":777},": $random(),            ",[725,4750,1397],{"class":798},[725,4752,961],{"class":777},[725,4754,1397],{"class":798},[725,4756,1413],{"class":777},[725,4758,1397],{"class":798},[725,4760,1040],{"class":777},[725,4762,1397],{"class":798},[725,4764,4765],{"class":777},"        },        {            ",[725,4767,1397],{"class":798},[725,4769,767],{"class":777},[725,4771,1397],{"class":798},[725,4773,1413],{"class":777},[725,4775,1397],{"class":798},[725,4777,830],{"class":777},[725,4779,1397],{"class":798},[725,4781,1422],{"class":777},[725,4783,1397],{"class":798},[725,4785,791],{"class":777},[725,4787,1397],{"class":798},[725,4789,4748],{"class":777},[725,4791,1397],{"class":798},[725,4793,961],{"class":777},[725,4795,1397],{"class":798},[725,4797,1413],{"class":777},[725,4799,1397],{"class":798},[725,4801,1040],{"class":777},[725,4803,1397],{"class":798},[725,4805,4806],{"class":777},"        }    ]}",[725,4808,745],{"class":731},[725,4810,956],{"class":731},[725,4812,745],{"class":731},[725,4814,1465],{"class":741},[725,4816,745],{"class":731},[725,4818,748],{"class":731},[725,4820,745],{"class":731},[725,4822,1474],{"class":777},[725,4824,745],{"class":731},[725,4826,956],{"class":731},[725,4828,745],{"class":731},[725,4830,1145],{"class":741},[725,4832,745],{"class":731},[725,4834,748],{"class":731},[725,4836,3150],{"class":802},[725,4838,956],{"class":731},[725,4840,745],{"class":731},[725,4842,1159],{"class":741},[725,4844,745],{"class":731},[725,4846,748],{"class":731},[725,4848,4849],{"class":802},"220",[725,4851,956],{"class":731},[725,4853,745],{"class":731},[725,4855,1173],{"class":741},[725,4857,745],{"class":731},[725,4859,1178],{"class":731},[725,4861,745],{"class":731},[725,4863,4247],{"class":777},[725,4865,745],{"class":731},[725,4867,1188],{"class":731},[725,4869,745],{"class":731},[725,4871,942],{"class":741},[725,4873,745],{"class":731},[725,4875,748],{"class":731},[725,4877,745],{"class":731},[725,4879,1116],{"class":777},[725,4881,745],{"class":731},[725,4883,956],{"class":731},[725,4885,745],{"class":731},[725,4887,961],{"class":741},[725,4889,745],{"class":731},[725,4891,748],{"class":731},[725,4893,745],{"class":731},[725,4895,1745],{"class":777},[725,4897,745],{"class":731},[725,4899,956],{"class":731},[725,4901,745],{"class":731},[725,4903,767],{"class":741},[725,4905,745],{"class":731},[725,4907,748],{"class":731},[725,4909,745],{"class":731},[725,4911,1762],{"class":777},[725,4913,745],{"class":731},[725,4915,956],{"class":731},[725,4917,745],{"class":731},[725,4919,1771],{"class":741},[725,4921,745],{"class":731},[725,4923,748],{"class":731},[725,4925,745],{"class":731},[725,4927,1780],{"class":777},[725,4929,745],{"class":731},[725,4931,956],{"class":731},[725,4933,745],{"class":731},[725,4935,1789],{"class":741},[725,4937,745],{"class":731},[725,4939,748],{"class":731},[725,4941,745],{"class":731},[725,4943,1798],{"class":777},[725,4945,745],{"class":731},[725,4947,956],{"class":731},[725,4949,745],{"class":731},[725,4951,1107],{"class":741},[725,4953,745],{"class":731},[725,4955,748],{"class":731},[725,4957,745],{"class":731},[725,4959,1815],{"class":777},[725,4961,745],{"class":731},[725,4963,956],{"class":731},[725,4965,745],{"class":731},[725,4967,1824],{"class":741},[725,4969,745],{"class":731},[725,4971,748],{"class":731},[725,4973,745],{"class":731},[725,4975,676],{"class":777},[725,4977,745],{"class":731},[725,4979,956],{"class":731},[725,4981,745],{"class":731},[725,4983,1841],{"class":741},[725,4985,745],{"class":731},[725,4987,748],{"class":731},[725,4989,1331],{"class":731},[725,4991,956],{"class":731},[725,4993,745],{"class":731},[725,4995,1854],{"class":741},[725,4997,745],{"class":731},[725,4999,748],{"class":731},[725,5001,1331],{"class":731},[725,5003,956],{"class":731},[725,5005,745],{"class":731},[725,5007,1867],{"class":741},[725,5009,745],{"class":731},[725,5011,1140],{"class":731},[725,5013,745],{"class":731},[725,5015,1876],{"class":741},[725,5017,745],{"class":731},[725,5019,748],{"class":731},[725,5021,745],{"class":731},[725,5023,1885],{"class":777},[725,5025,745],{"class":731},[725,5027,956],{"class":731},[725,5029,745],{"class":731},[725,5031,1894],{"class":741},[725,5033,745],{"class":731},[725,5035,748],{"class":731},[725,5037,745],{"class":731},[725,5039,1903],{"class":777},[725,5041,745],{"class":731},[725,5043,956],{"class":731},[725,5045,745],{"class":731},[725,5047,1912],{"class":741},[725,5049,745],{"class":731},[725,5051,1130],{"class":731},[725,5053,745],{"class":731},[725,5055,1921],{"class":741},[725,5057,745],{"class":731},[725,5059,1140],{"class":731},[725,5061,745],{"class":731},[725,5063,1930],{"class":741},[725,5065,745],{"class":731},[725,5067,748],{"class":731},[725,5069,1331],{"class":731},[725,5071,956],{"class":731},[725,5073,745],{"class":731},[725,5075,1943],{"class":741},[725,5077,745],{"class":731},[725,5079,1130],{"class":731},[725,5081,745],{"class":731},[725,5083,1952],{"class":741},[725,5085,745],{"class":731},[725,5087,1140],{"class":731},[725,5089,745],{"class":731},[725,5091,1961],{"class":741},[725,5093,745],{"class":731},[725,5095,748],{"class":731},[725,5097,1331],{"class":731},[725,5099,1970],{"class":731},[12,5101,5102,5107],{},[71,5103],{"alt":5104,"src":5105,"title":5106},"\"Images of some Sparkplug messages printed on debug panel\"","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fsparkplug-messages.png","Images of some Sparkplug messages printed on debug panel",[76,5108,5106],{},[16,5110,5112],{"id":5111},"best-practices-for-production-deployments","Best Practices for Production Deployments",[12,5114,5115],{},"Getting Sparkplug B working is only the first step. Running it reliably in production means thinking about naming, state, performance, and failure handling from day one. The best practices below focus on the things that matter most once your system is live, keeping data trustworthy, networks efficient, and recovery predictable.",[634,5117,5118,5124,5135,5141,5151,5157,5163],{},[637,5119,5120,5123],{},[283,5121,5122],{},"Name things like you mean it","\nUse clear group, edge, and device names that match your factory or system layout. Future you will thank you.",[637,5125,5126,5129,5130,139,5132,5134],{},[283,5127,5128],{},"Birth messages are non-negotiable","\nAlways send ",[53,5131,117],{},[53,5133,217],{}," on start and reconnect. If apps don’t see a birth, they don’t trust the data.",[637,5136,5137,5140],{},[283,5138,5139],{},"Alias your metrics","\nTurn on metric aliasing to cut payload size and keep networks fast and efficient.",[637,5142,5143,5146,139,5148,5150],{},[283,5144,5145],{},"Listen for Death messages",[53,5147,224],{},[53,5149,228],{}," are early warning signals. Use them to detect failures instantly.",[637,5152,5153,5156],{},[283,5154,5155],{},"Buffer with intent","\nStore-and-forward is great for flaky networks, just don’t let backlogs pile up unchecked.",[637,5158,5159,5162],{},[283,5160,5161],{},"Lock down MQTT early","\nUse TLS, authentication, and topic permissions from day one. Security is easier before go-live.",[637,5164,5165,5168],{},[283,5166,5167],{},"Break it on purpose","\nRestart brokers and edge nodes during testing. A system that recovers cleanly is production-ready.",[16,5170,5172],{"id":5171},"conclusion","Conclusion",[12,5174,5175],{},"MQTT Sparkplug B transforms MQTT from a simple messaging protocol into a robust, standardized framework for industrial IoT. By enforcing structured topics, typed metrics, state awareness, and efficient payloads, it makes integrating heterogeneous devices predictable, scalable, and reliable.",[12,5177,5178],{},"Following best practices (clear naming, birth\u002Fdeath messages, metric aliasing, buffering, security, and deliberate testing) ensures your system runs smoothly in production and avoids costly downtime.",[12,5180,5181,5182,5185],{},"For teams looking to get Sparkplug B up and running quickly, ",[24,5183,613],{"href":619,"rel":5184},[28]," provides a production-ready, easy-to-use platform. With minimal setup and no advanced skills required, you can deploy, scale, and monitor industrial flows in minutes. Start building your reliable, standardized IIoT solution today.",[5187,5188,5189],"style",{},"html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html pre.shiki code .sbssI, html code.shiki .sbssI{--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":721,"searchDepth":760,"depth":760,"links":5191},[5192,5195,5200,5208,5209,5216,5217],{"id":18,"depth":735,"text":19,"children":5193},[5194],{"id":47,"depth":754,"text":48},{"id":97,"depth":735,"text":98,"children":5196},[5197,5198,5199],{"id":104,"depth":754,"text":105},{"id":121,"depth":754,"text":122},{"id":131,"depth":754,"text":132},{"id":157,"depth":735,"text":158,"children":5201},[5202,5203,5204,5205,5206,5207],{"id":167,"depth":754,"text":158},{"id":173,"depth":754,"text":174},{"id":195,"depth":754,"text":196},{"id":207,"depth":754,"text":208},{"id":232,"depth":754,"text":233},{"id":242,"depth":754,"text":243},{"id":272,"depth":735,"text":273},{"id":596,"depth":735,"text":597,"children":5210},[5211,5212,5213,5214,5215],{"id":628,"depth":754,"text":629},{"id":656,"depth":754,"text":657},{"id":704,"depth":754,"text":705},{"id":1973,"depth":754,"text":1974},{"id":2608,"depth":754,"text":2609},{"id":5111,"depth":735,"text":5112},{"id":5171,"depth":735,"text":5172},null,"2024-08-22","Learn how to implement MQTT Sparkplug B with Node-RED for standardized, reliable Industrial IoT data flows and scalable production deployments.","md","2025-12-22",{"keywords":5224,"excerpt":5225},"node red, mqtt sparkplug, industrial IoT",{"type":9,"value":5226},[5227],[12,5228,14],{},true,"\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red",{"title":5,"description":5220},{"loc":5230},"blog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red","Standardize and manage industrial IoT data with MQTT Sparkplug B",[5236,5237,5238],"posts","node-red","mqtt","MQTT Sparkplug B extends plain MQTT with standardized topic namespaces, Protocol Buffer payloads, and lifecycle state messages (birth\u002Fdeath) to solve the integration chaos common in industrial IoT. This guide explains the specification and shows how to use the node-red-contrib-mqtt-sparkplug-plus package to publish and receive Sparkplug B messages in Node-RED.","2pWxgoEMAlkUPr4Ohoh4PHN1VIx9g2igK7-dU7dMJ0c",{"id":5242,"extension":5243,"meta":5244,"sections":5245,"stem":5633,"__hash__":5634},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[5246,5297,5398,5459,5536,5615],{"id":5247,"title":5248,"features":5249},"ai-automation","AI & Automation",[5250,5260,5270,5280,5286,5292],{"id":5251,"title":5252,"description":5253,"docsLink":5254,"changelog":5255,"tiers":5259},"flowfuse-expert-ai","FlowFuse Expert AI","Build industrial apps with agents, and query the state of the factory with an agent. Adapt your current hardware and machines so agentic work can be done against them, without ripping and replacing what's already on the plant floor.","\u002Fdocs\u002Fuser\u002Fexpert\u002F",[5256],{"url":5257,"release":5258},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":5229,"hub":5229,"fleet":5229},{"id":5261,"title":5262,"description":5263,"docsLink":5264,"changelog":5265,"subfeature":5229,"showOnPricing":5268,"tiers":5269},"flowfuse-expert-support-mode","Support Mode","Chat-based assistance for FlowFuse and Node-RED, including Node-RED instance management through natural language.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#support-mode",[5266],{"url":5267,"release":5258},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":5229,"hub":5229,"fleet":5229},{"id":5271,"title":5272,"description":5273,"docsLink":5274,"changelog":5275,"subfeature":5229,"showOnPricing":5268,"tiers":5279},"flowfuse-expert-application-building","Application Building","Describe what you want to build and FlowFuse Expert assembles it on your workspace, adding tabs, wiring nodes, and configuring properties.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F",[5276],{"url":5277,"release":5278},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":5229,"hub":5229,"fleet":5229},{"id":5281,"title":5282,"description":5283,"docsLink":5284,"subfeature":5229,"beta":5229,"showOnPricing":5268,"tiers":5285},"flowfuse-expert-insights-mode","Insights Mode","Connects FlowFuse Expert to MCP servers in your Node-RED instances, enabling real-time data queries and actions through a single chat interface.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#insights-mode",{"edge":5229,"hub":5229,"fleet":5229},{"id":5287,"title":5288,"description":5289,"docsLink":5290,"tiers":5291},"mcp-servers","Agentic Operations","Expose your Node-RED flows as tools an AI agent can call directly, so agents can query the state of the factory or trigger actions without custom integration work.","\u002Fnode-red\u002Fflowfuse\u002Fmcp\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5293,"title":5294,"description":5295,"tiers":5296},"onnx-integration","ONNX Integration","Run trained machine learning models directly in your flows, including on edge hardware, without sending data out to an external inference service.",{"edge":5229,"hub":5229,"fleet":5229},{"id":5298,"title":5299,"features":5300},"build","Build",[5301,5307,5313,5323,5329,5335,5339,5345,5351,5359,5365,5369,5373,5382,5390],{"id":5302,"title":5303,"description":5304,"docsLink":5305,"tiers":5306},"edge-development","Edge Development","Develop and test Node-RED flows directly on edge devices with a remote editor proxy.","\u002Fdocs\u002Fdevice-agent\u002Fquickstart\u002F",{"edge":5229,"hub":5268,"fleet":5229},{"id":5308,"title":5309,"description":5310,"docsLink":5311,"tiers":5312},"private-npm-registry","Custom Node-RED Nodes","Create and manage your own private npm registry for Node-RED nodes, so you can share custom nodes across your team and devices without publishing them publicly.","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5314,"title":5315,"description":5316,"docsLink":5317,"changelog":5318,"tiers":5322},"flowfuse-tables","FlowFuse Tables","A managed PostgreSQL database for every application, so you can store and query structured data without standing up and maintaining your own database.","\u002Fdocs\u002Fuser\u002Fff-tables\u002F",[5319],{"url":5320,"release":5321},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":5229,"hub":5229,"fleet":5229},{"id":5324,"title":5325,"description":5326,"docsLink":5327,"tiers":5328},"persistent-files","File Storage","Store and retrieve files from your Node-RED flows, with automatic replication and backup across your devices and hosted instances.","\u002Fdocs\u002Finstall\u002Ffile-storage\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5330,"title":5331,"description":5332,"docsLink":5333,"showOnPricing":5268,"tiers":5334},"persistent-context","Persistent Context","In-memory values defined in a Node-RED flow persist across project restarts and upgrades.","\u002Fdocs\u002Fuser\u002Fpersistent-context\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5336,"title":5337,"showOnPricing":5268,"tiers":5338},"static-assets","Static Assets",{"edge":5229,"hub":5229,"fleet":5229},{"id":5340,"title":5341,"description":5342,"docsLink":5343,"tiers":5344},"team-library","Team Library","Set up standard nodes and flows that can be shared with all team members across your organisation.","\u002Fdocs\u002Fuser\u002Fshared-library\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5346,"title":5347,"description":5348,"docsLink":5349,"tiers":5350},"personalised-multi-user-dashboards","Personalised Multi-User Dashboards","Build applications that provide unique data to each logged-in user using personalised multi-user dashboards.","https:\u002F\u002Fdashboard.flowfuse.com\u002Fuser\u002Fmulti-tenancy.html",{"edge":5229,"hub":5229,"fleet":5229},{"id":5352,"title":5353,"description":5354,"changelog":5355,"subfeature":5229,"showOnPricing":5268,"tiers":5358},"dashboards-view","Dashboards View","Browse and open every dashboard across your team from a dedicated Dashboards view, at both team and application level, without leaving FlowFuse.",[5356],{"url":5357,"release":5321},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5360,"title":5361,"description":5362,"docsLink":5363,"tiers":5364},"blueprints-converge","Blueprints","Ready-made starting points for your apps, from cross-team Converge templates to OT and IT specific blueprints.","\u002Fdocs\u002Fuser\u002Fconcepts\u002F#blueprint",{"edge":5229,"hub":5229,"fleet":5229},{"id":5366,"title":5367,"subfeature":5229,"showOnPricing":5268,"tiers":5368},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":5229,"hub":5268,"fleet":5229},{"id":5370,"title":5371,"subfeature":5229,"showOnPricing":5268,"tiers":5372},"blueprints-it-apps","Blueprints - IT APPS",{"edge":5268,"hub":5229,"fleet":5268},{"id":5374,"title":5375,"description":5376,"changelog":5377,"showOnPricing":5268,"tiers":5381},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[5378],{"url":5379,"release":5380},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":5229,"hub":5229,"fleet":5229},{"id":5383,"title":5384,"description":5385,"changelog":5386,"showOnPricing":5268,"tiers":5389},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[5387],{"url":5388,"release":5278},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5391,"title":5392,"description":5393,"changelog":5394,"showOnPricing":5268,"tiers":5397},"embedded-editor-tab-title","Embedded Editor Browser Tab Title","The browser tab title updates to reflect the active Node-RED canvas tab when working in the embedded editor.",[5395],{"url":5396,"release":5380},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5399,"title":5400,"features":5401},"deploy","Deploy",[5402,5408,5417,5423,5428,5434,5440,5446,5451],{"id":5403,"title":5404,"description":5405,"docsLink":5406,"tiers":5407},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":5229,"hub":5229,"fleet":5229},{"id":5409,"title":5410,"description":5411,"docsLink":5412,"changelog":5413,"tiers":5416},"edge-devices","Edge Instances","Deploy and mange your Node-RED instances on edge PLCs and gateways, with full visibility and control from the cloud.","\u002Fdocs\u002Fdevice-agent\u002Fintroduction\u002F",[5414],{"url":5415,"release":5258},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":5229,"hub":5268,"fleet":5229},{"id":5418,"title":5419,"description":5420,"docsLink":5421,"tiers":5422},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":5268,"hub":5229,"fleet":5268},{"id":5424,"title":5425,"description":5426,"docsLink":651,"tiers":5427},"mqtt-broker","MQTT Broker","Manage and create MQTT clients to transport data for efficient messaging and communication within your applications.",{"edge":5229,"hub":5268,"fleet":5229},{"id":5429,"title":5430,"description":5431,"docsLink":5432,"showOnPricing":5268,"tiers":5433},"project-nodes","Project Nodes aka seamless project comms","FlowFuse Project Nodes enable the passing of data and messages between your Node-RED projects.","\u002Fdocs\u002Fuser\u002Fprojectnodes\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5435,"title":5436,"description":5437,"docsLink":5438,"tiers":5439},"devops-pipelines","DevOps Pipelines","Set up different environments for development, testing, and production Node-RED instances to support a full software delivery lifecycle.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5441,"title":5442,"description":5443,"docsLink":5444,"tiers":5445},"git-integration","Git Integration","Back up your flows to a remote Git repository through a DevOps Pipeline. Supports GitHub and Azure DevOps repositories.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F#git-repository-stage",{"edge":5268,"hub":5229,"fleet":5268},{"id":5447,"title":5448,"description":5449,"docsLink":5444,"subfeature":5229,"showOnPricing":5268,"tiers":5450},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":5268,"hub":5229,"fleet":5268},{"id":5452,"title":5453,"description":5454,"docsLink":5444,"changelog":5455,"subfeature":5229,"showOnPricing":5268,"tiers":5458},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[5456],{"url":5457,"release":5380},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":5268,"hub":5229,"fleet":5268},{"id":5460,"title":5461,"features":5462},"operate-maintain","Operate & Maintain",[5463,5469,5475,5480,5488,5492,5496,5501,5507,5513,5518,5524,5528,5532],{"id":5464,"title":5465,"description":5466,"docsLink":5467,"tiers":5468},"snapshots","Snapshots & Version History","Automatic snapshots on remote devices and hosted instances, plus a full version history timeline so you can roll back to any prior state.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5470,"title":5471,"description":5472,"docsLink":5473,"subfeature":5229,"showOnPricing":5268,"tiers":5474},"auto-snapshot-remote","Auto Snapshot (Remote)","Automatically capture a snapshot every time a remote instance is deployed, so you always have a recoverable history of what was running on each device.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F#auto-snapshots",{"edge":5229,"hub":5229,"fleet":5229},{"id":5476,"title":5477,"description":5478,"docsLink":5473,"subfeature":5229,"showOnPricing":5268,"tiers":5479},"auto-snapshot-hosted","Auto Snapshot (Hosted)","Automatically capture a snapshot every time a hosted instance is deployed, so you always have a recoverable history of what was running.",{"edge":5229,"hub":5229,"fleet":5229},{"id":5481,"title":5482,"description":5483,"changelog":5484,"subfeature":5229,"showOnPricing":5268,"tiers":5487},"snapshot-comparison","Snapshot Comparison","Compare two snapshots side-by-side with a navigable diff view. Step through every changed, added, or deleted node and see property and code diffs.",[5485],{"url":5486,"release":5380},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5489,"title":5490,"subfeature":5229,"showOnPricing":5268,"tiers":5491},"version-history-timeline","Version History Timeline",{"edge":5229,"hub":5229,"fleet":5229},{"id":5493,"title":5494,"tiers":5495},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":5229,"hub":5229,"fleet":5229},{"id":5497,"title":5498,"description":5499,"tiers":5500},"device-fleet-updates","Device Fleet Updates","Connect to edge devices to quickly assess and update logic. Debug one device and roll out improvements to your fleet in minutes, securely without requiring full device access for your whole organisation.",{"edge":5229,"hub":5268,"fleet":5229},{"id":5502,"title":5503,"description":5504,"docsLink":5505,"tiers":5506},"device-group-management","Device Group Management","Logically group devices assigned to an application and integrate device groups into your DevOps Pipeline for coordinated fleet updates.","\u002Fdocs\u002Fuser\u002Fdevice-groups\u002F",{"edge":5229,"hub":5268,"fleet":5229},{"id":5508,"title":5509,"description":5510,"docsLink":5511,"tiers":5512},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":5268,"hub":5229,"fleet":5268},{"id":5514,"title":5515,"description":5516,"tiers":5517},"performance-monitoring","Performance Monitoring & Alerts","Track CPU, memory, and event loop performance across your instances and devices, with email alerts when something needs your attention.",{"edge":5229,"hub":5229,"fleet":5229},{"id":5519,"title":5520,"description":5521,"docsLink":5522,"subfeature":5229,"showOnPricing":5268,"tiers":5523},"instance-monitoring","Instance Monitoring","Enable alerts to be sent via email when your Node-RED instances encounter issues.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#alerts",{"edge":5229,"hub":5229,"fleet":5229},{"id":5525,"title":5526,"subfeature":5229,"showOnPricing":5268,"tiers":5527},"email-alerts","Email Alerts",{"edge":5229,"hub":5229,"fleet":5229},{"id":5529,"title":5530,"showOnPricing":5268,"tiers":5531},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":5229,"hub":5229,"fleet":5229},{"id":5533,"title":5534,"tiers":5535},"protected-instances","Protected Instances",{"edge":5268,"hub":5229,"fleet":5268},{"id":5537,"title":5538,"features":5539},"govern-secure","Govern and Secure",[5540,5549,5555,5561,5566,5572,5578,5584,5592,5598,5604,5610],{"id":5541,"title":5542,"description":5543,"docsLink":5544,"changelog":5545,"tiers":5548},"single-sign-on","Single Sign-On (SSO)","Configure FlowFuse to work with your own SSO provider, allowing users to access FlowFuse with a single set of login credentials.","\u002Fdocs\u002Fadmin\u002Fsso\u002F",[5546],{"url":5547,"release":5321},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5550,"title":5551,"description":5552,"docsLink":5553,"tiers":5554},"two-factor-authentication","Two-Factor Authentication","Two-factor authentication adds an extra layer of security to your FlowFuse account.","\u002Fdocs\u002Fuser\u002Fuser-settings\u002F#two-factor-authentication",{"edge":5229,"hub":5229,"fleet":5229},{"id":5556,"title":5557,"description":5558,"docsLink":5559,"tiers":5560},"certified-nodes-it","Certified Nodes - IT","IT certified node bundle includes: Redis, MQTT, HTTP Request, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server","\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2\u002F",{"edge":5268,"hub":5229,"fleet":5229},{"id":5562,"title":5563,"description":5564,"tiers":5565},"certified-nodes-ot","Certified OT Connections - OPC-UA, Modbus, etc.","OT certified node bundle includes: OPC-UA, Modbus TCP & RTU, RTSP, EtherNet\u002FIP, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server",{"edge":5229,"hub":5268,"fleet":5268},{"id":5567,"title":5568,"description":5569,"docsLink":5570,"tiers":5571},"audit-log","Audit Log","Keep track of everything going on in your Node-RED instances and FlowFuse. Audit Logs provide details on what actions have taken place, when they happened, and who did them.","\u002Fdocs\u002Fuser\u002Flogs\u002F#audit-log",{"edge":5229,"hub":5229,"fleet":5229},{"id":5573,"title":5574,"description":5575,"docsLink":5576,"tiers":5577},"role-based-access-control","Role-Based Access Control","Control who can do what at both the team and application level, from viewers to admins.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5579,"title":5580,"description":5581,"docsLink":5582,"subfeature":5229,"showOnPricing":5268,"tiers":5583},"application-level-rbac","Application-Level RBAC","Fine-grained access control per application, allowing team members to have different permission levels across different applications without requiring separate teams.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F#application-level-rbac",{"edge":5229,"hub":5229,"fleet":5229},{"id":5585,"title":5586,"description":5587,"changelog":5588,"subfeature":5229,"showOnPricing":5268,"tiers":5591},"scoped-personal-access-tokens","Scoped Personal Access Tokens","Restrict a Personal Access Token to specific teams, limit it to read-only operations, or control whether it carries admin privileges.",[5589],{"url":5590,"release":5321},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":5229,"hub":5229,"fleet":5229},{"id":5593,"title":5594,"description":5595,"docsLink":5596,"showOnPricing":5268,"tiers":5597},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":5229,"hub":5229,"fleet":5229},{"id":5599,"title":5600,"description":5601,"docsLink":5602,"showOnPricing":5268,"tiers":5603},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":5229,"hub":5229,"fleet":5229},{"id":5605,"title":5606,"description":5607,"docsLink":5608,"tiers":5609},"baa-for-hipaa","BAA for HIPAA","FlowFuse can sign a Business Associate Agreement to ensure proper safeguarding of protected health information handled on your behalf.","\u002Fhandbook\u002Fsales\u002Fsubscription-agreement-1.5\u002F",{"edge":5268,"hub":5229,"fleet":5268},{"id":5611,"title":5612,"description":5613,"tiers":5614},"sbom","Software Bill of Materials","A complete list of all software components used in your Node-RED instances and hosted applications, including version numbers and license information.",{"edge":5268,"hub":5229,"fleet":5268},{"id":5616,"title":5617,"features":5618},"support","Support",[5619,5624,5628],{"id":5620,"title":5621,"docsLink":5622,"tiers":5623},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":5229,"hub":5229,"fleet":5229},{"id":5625,"title":5626,"showOnPricing":5268,"tiers":5627},"live-chat-support","Live Chat Support",{"edge":5229,"hub":5229,"fleet":5229},{"id":5629,"title":5630,"docsLink":5631,"tiers":5632},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":5229,"hub":5229,"fleet":5229},"feature-catalog","0AnkhTIPCECCwP9NmbTWP5HvRYx4FTSao4lG93-HaWM",[5636,5639,5642,5645,5648,5651,5653,5656,5659,5662,5665,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697,5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5733,5736,5739,5742,5745,5748,5751,5754,5757,5760,5763,5766,5769,5772,5775,5778,5780,5783,5786,5789,5792,5795,5798,5801,5803,5806,5809,5812,5815,5818,5820,5823,5826,5829,5832,5835,5838,5841,5844,5847,5850,5852,5855,5858,5861,5864,5867,5870,5873,5876,5879,5882,5885,5888,5891,5894,5896,5899,5902,5905,5908,5911,5914,5917,5920,5923,5926,5929,5932,5935,5938,5941,5944,5947,5950,5952,5955,5958,5961,5964,5967,5970,5973,5975,5978,5981,5984,5987,5990,5993,5996,5999,6002,6005,6008,6011,6014,6017,6020,6023,6026,6029,6032,6035,6038,6041,6044,6047,6050,6053,6056,6059,6062,6065,6068,6071,6074,6077,6080,6083,6086,6089,6092,6095,6098,6101,6104,6107,6110,6113,6116,6119,6122,6125,6127,6130,6133,6136,6139,6142,6145,6148,6151,6154,6157,6160,6163,6166],{"path":5637,"title":5638},"\u002Fchangelog\u002F2023\u002F09\u002Fcustom-node-support","Custom Node Support",{"path":5640,"title":5641},"\u002Fchangelog\u002F2023\u002F09\u002Fdevops-actions","DevOps Pipeline with action selection",{"path":5643,"title":5644},"\u002Fchangelog\u002F2023\u002F09\u002Fintroduction-enterprise-tier","Introducing the Enterprise Tier",{"path":5646,"title":5647},"\u002Fchangelog\u002F2023\u002F09\u002Fpipeline-api","API Endpoint for DevOps Pipeline",{"path":5649,"title":5650},"\u002Fchangelog\u002F2023\u002F09\u002Fsnapshots-devices","Usability improvements to Device Management",{"path":5652,"title":5361},"\u002Fchangelog\u002F2023\u002F10\u002Fblueprints",{"path":5654,"title":5655},"\u002Fchangelog\u002F2023\u002F10\u002Fcertified-nodes","Certified Nodes",{"path":5657,"title":5658},"\u002Fchangelog\u002F2023\u002F10\u002Fdevice-snapshot-selection","Enhanced Snapshot Selection",{"path":5660,"title":5661},"\u002Fchangelog\u002F2023\u002F10\u002Fpath-bug-fix","Device Agent path bug fix",{"path":5663,"title":5664},"\u002Fchangelog\u002F2023\u002F10\u002Fresource-alerts","Resource Monitoring in Audit Log",{"path":5666,"title":5551},"\u002Fchangelog\u002F2023\u002F11\u002F2fa",{"path":5668,"title":5669},"\u002Fchangelog\u002F2023\u002F11\u002Fdefault-editor","Device Editor enabled by default",{"path":5671,"title":5672},"\u002Fchangelog\u002F2023\u002F11\u002Fdevices-in-pipelines","Devices in DevOps Pipelines",{"path":5674,"title":5675},"\u002Fchangelog\u002F2023\u002F11\u002Fproject-nodes-devices","Project Nodes for Devices",{"path":5677,"title":5678},"\u002Fchangelog\u002F2023\u002F12\u002Fbilling","No Credit Card required for billing",{"path":5680,"title":5681},"\u002Fchangelog\u002F2023\u002F12\u002Fblueprint-selection","Blueprint Selection Update",{"path":5683,"title":5684},"\u002Fchangelog\u002F2023\u002F12\u002Fdevice-groups","Device Groups",{"path":5686,"title":5687},"\u002Fchangelog\u002F2023\u002F12\u002Femail-alerting-node-red-crash","Email Alerts for Audit Log Events",{"path":5689,"title":5690},"\u002Fchangelog\u002F2023\u002F12\u002Fnode-red-updated","Node-RED 3.1.3 now available",{"path":5692,"title":5693},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-audit-log","Introducing the Device Auditlog Feature",{"path":5695,"title":5696},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-groups-snapshot","Device Groups - Automatic snapshot assignment",{"path":5698,"title":5699},"\u002Fchangelog\u002F2024\u002F01\u002Ffleet-mode","Renaming \"Default Device Mode\" to \"Fleet Mode\"",{"path":5701,"title":5702},"\u002Fchangelog\u002F2024\u002F01\u002Fhelm-v2","Helm Chart v2.0",{"path":5704,"title":5705},"\u002Fchangelog\u002F2024\u002F01\u002Fnew-blueprints","New Blueprints added",{"path":5707,"title":5708},"\u002Fchangelog\u002F2024\u002F01\u002Fsecurity-updates","Security Updates",{"path":5710,"title":5711},"\u002Fchangelog\u002F2024\u002F01\u002Fsso-team-membership","Managing Team Membership via SSO",{"path":5713,"title":5714},"\u002Fchangelog\u002F2024\u002F01\u002Fstreamlined-device-assignment","Streamlined Device assignment",{"path":5716,"title":5717},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-auto-snapshot","Device Auto Snapshots",{"path":5719,"title":5720},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-instance-audit-logs","Device Instance Audit Logging",{"path":5722,"title":5723},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-onboarding-improvements","Device Onboarding Improvements",{"path":5725,"title":5726},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-pricing-change","Pricing change for Devices",{"path":5728,"title":5729},"\u002Fchangelog\u002F2024\u002F02\u002Finstance-auto-snapshots","Instance Auto Snapshots",{"path":5731,"title":5732},"\u002Fchangelog\u002F2024\u002F02\u002Fpostgresql-upgrade","PostgreSQL Version update",{"path":5734,"title":5735},"\u002Fchangelog\u002F2024\u002F03\u002Fbearer-token-authentication","Bearer Token Authentication for Node-RED Instances",{"path":5737,"title":5738},"\u002Fchangelog\u002F2024\u002F03\u002Finstance-protection-mode","Instance Protection Mode",{"path":5740,"title":5741},"\u002Fchangelog\u002F2024\u002F03\u002Flimits-debug-payload","Configure HTTP Payload and Debug Message size",{"path":5743,"title":5744},"\u002Fchangelog\u002F2024\u002F03\u002Frestart-devices-remotly","Remote Device Restart",{"path":5746,"title":5747},"\u002Fchangelog\u002F2024\u002F04\u002Fcustom-nodes-on-devices","Custom Nodes Support on Devices",{"path":5749,"title":5750},"\u002Fchangelog\u002F2024\u002F04\u002Fdevice-auto-snapshot","Direct Dashboard Access",{"path":5752,"title":5753},"\u002Fchangelog\u002F2024\u002F04\u002Fimproving-device-groups","Improving Device Groups",{"path":5755,"title":5756},"\u002Fchangelog\u002F2024\u002F04\u002Fpricing-change","Pricing change Enterprise & Teams Tier",{"path":5758,"title":5759},"\u002Fchangelog\u002F2024\u002F04\u002Ftougher-rate-limiting","Tougher Rate Limiting on Public Routes",{"path":5761,"title":5762},"\u002Fchangelog\u002F2024\u002F05\u002Finstance-healthcheck","Customizing instance health-check settings",{"path":5764,"title":5765},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-blueprints","Blueprints added to Library",{"path":5767,"title":5768},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-flowviewer","Team Library - Flow Viewer",{"path":5770,"title":5771},"\u002Fchangelog\u002F2024\u002F05\u002Fmanaging-node-red-version-on-devices","Managing Node-RED versions on Devices",{"path":5773,"title":5774},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements","Snapshot Improvements",{"path":5776,"title":5777},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements-pt3","Snapshot Upload",{"path":5779,"title":5777},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-upload",{"path":5781,"title":5782},"\u002Fchangelog\u002F2024\u002F06\u002Fdevice-agent-proxy-support","Running the Device Agent behind an HTTP proxy",{"path":5784,"title":5785},"\u002Fchangelog\u002F2024\u002F06\u002Flibrary-blueprints","Custom hostnames for your instances",{"path":5787,"title":5788},"\u002Fchangelog\u002F2024\u002F06\u002Fmultiline-env-vars","Multi-line Environment Variables",{"path":5790,"title":5791},"\u002Fchangelog\u002F2024\u002F06\u002Fsnapshot-flow-compare","Compare Snapshots flows",{"path":5793,"title":5794},"\u002Fchangelog\u002F2024\u002F07\u002Fapplications-search","Applications Search",{"path":5796,"title":5797},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-group-clear-snapshot","Device Groups Snapshots",{"path":5799,"title":5800},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-delete","Managing devices",{"path":5802,"title":5800},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-move",{"path":5804,"title":5805},"\u002Fchangelog\u002F2024\u002F07\u002Fedit-snapshots","Edit Snapshots",{"path":5807,"title":5808},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant","The FlowFuse Expert",{"path":5810,"title":5811},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant-json","FlowFuse Expert Writes JSON",{"path":5813,"title":5814},"\u002Fchangelog\u002F2024\u002F07\u002Fimmersive-editor","Immersive Editor Experience",{"path":5816,"title":5817},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-inbox","Notifications Inbox",{"path":5819,"title":5817},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-update",{"path":5821,"title":5822},"\u002Fchangelog\u002F2024\u002F07\u002Fpersistent-storage","Persistent Storage on FlowFuse Cloud",{"path":5824,"title":5825},"\u002Fchangelog\u002F2024\u002F07\u002Fsso","Single Sign On Updates",{"path":5827,"title":5828},"\u002Fchangelog\u002F2024\u002F08\u002Fbill-of-materials","Bill of Materials",{"path":5830,"title":5831},"\u002Fchangelog\u002F2024\u002F08\u002Fenterprise-license-update","Enforcing Enterprise Restrictions",{"path":5833,"title":5834},"\u002Fchangelog\u002F2024\u002F08\u002Fldap-sso-groups","LDAP Single Sign On Updates",{"path":5836,"title":5837},"\u002Fchangelog\u002F2024\u002F08\u002Fstatic-file-service-navigation-visibility","Static File Service Navigation and Visibility",{"path":5839,"title":5840},"\u002Fchangelog\u002F2024\u002F10\u002Fdevice-group-env-vars","Environment Variables for your Device Groups",{"path":5842,"title":5843},"\u002Fchangelog\u002F2024\u002F10\u002Fmqtt-service","MQTT Broker Service",{"path":5845,"title":5846},"\u002Fchangelog\u002F2024\u002F10\u002Fnotifications-bulk-actions","Managing Notifications",{"path":5848,"title":5849},"\u002Fchangelog\u002F2024\u002F10\u002Fsnapshot-download-upload-options","Snapshot Upload and Download Improvements",{"path":5851,"title":5490},"\u002Fchangelog\u002F2024\u002F10\u002Fversion-history-timeline",{"path":5853,"title":5854},"\u002Fchangelog\u002F2024\u002F11\u002Faudit-log-hierarchy","Audit logs show hierarchical events",{"path":5856,"title":5857},"\u002Fchangelog\u002F2024\u002F11\u002Fdevice-agent-release","Device Agent 3.0 released",{"path":5859,"title":5860},"\u002Fchangelog\u002F2024\u002F11\u002Fmqtt-topic-hierarchy","MQTT Topic Hierarchy view",{"path":5862,"title":5863},"\u002Fchangelog\u002F2024\u002F11\u002Fteam-search","Team-wide search",{"path":5865,"title":5866},"\u002Fchangelog\u002F2024\u002F12\u002Fdashboad-iframe","Allow Dashboards to be embedded in iFrames",{"path":5868,"title":5869},"\u002Fchangelog\u002F2024\u002F12\u002Fdevice-editor-cache","Device Editor Access Speed Up",{"path":5871,"title":5872},"\u002Fchangelog\u002F2024\u002F12\u002Fteam-bom-timeline","Team BOM and Pipeline Views",{"path":5874,"title":5875},"\u002Fchangelog\u002F2025\u002F01\u002Ffree-tier-onboarding","New Onboarding Tour for Free Tier Users",{"path":5877,"title":5878},"\u002Fchangelog\u002F2025\u002F01\u002Fhidden-env-vars","Hidden Environment Variables",{"path":5880,"title":5881},"\u002Fchangelog\u002F2025\u002F01\u002Fimproved-diagnostics","Improved Diagnostics",{"path":5883,"title":5884},"\u002Fchangelog\u002F2025\u002F01\u002Fteam-level-groups","Team level view of Groups",{"path":5886,"title":5887},"\u002Fchangelog\u002F2025\u002F02\u002Fadditional-device-version-history-events","New Remote Instances Version History Events",{"path":5889,"title":5890},"\u002Fchangelog\u002F2025\u002F02\u002Fbroker-error-feedback","Improved Broker Connection Feedback",{"path":5892,"title":5893},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-agent-updates","FlowFuse User Authentication on Remote Instances",{"path":5895,"title":5490},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-version-history-timeline",{"path":5897,"title":5898},"\u002Fchangelog\u002F2025\u002F02\u002Fexternal-brokers","External MQTT Brokers",{"path":5900,"title":5901},"\u002Fchangelog\u002F2025\u002F02\u002Fmqtt-schema-suggestions","MQTT Smart Schema Suggestions",{"path":5903,"title":5904},"\u002Fchangelog\u002F2025\u002F02\u002Fresend-and-extend-team-invitation-expiration","Re-send Team Invitations",{"path":5906,"title":5907},"\u002Fchangelog\u002F2025\u002F02\u002Fschema-docs","Personalized Schema Documentation",{"path":5909,"title":5910},"\u002Fchangelog\u002F2025\u002F02\u002Ftopic-hierarchy-search","Search & Filter for Topic Hierarchy List",{"path":5912,"title":5913},"\u002Fchangelog\u002F2025\u002F03\u002Fcontainer-tags","Changes to tags for flowfuse\u002Fnode-red",{"path":5915,"title":5916},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-groups","Multiple Device Groups in a pipeline",{"path":5918,"title":5919},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-local-login","Local Login for Remote Instances",{"path":5921,"title":5922},"\u002Fchangelog\u002F2025\u002F03\u002Ffree-tier","Free Tier now more accessible to all",{"path":5924,"title":5925},"\u002Fchangelog\u002F2025\u002F03\u002Fresource-notifications","Resource Alerts",{"path":5927,"title":5928},"\u002Fchangelog\u002F2025\u002F03\u002Fsnapshot-filter","Filtering Snapshots",{"path":5930,"title":5931},"\u002Fchangelog\u002F2025\u002F03\u002Fteam-npm-registry","NPM Package Hosting",{"path":5933,"title":5934},"\u002Fchangelog\u002F2025\u002F03\u002Ftopic-deletion","MQTT Topic Management",{"path":5936,"title":5937},"\u002Fchangelog\u002F2025\u002F04\u002Fdevice-provisioning","Remote Instance Provisioning",{"path":5939,"title":5940},"\u002Fchangelog\u002F2025\u002F04\u002Fgit-integration","Git Integration with Pipelines",{"path":5942,"title":5943},"\u002Fchangelog\u002F2025\u002F04\u002Finstance-log-browsing","Better Node-RED log handling",{"path":5945,"title":5946},"\u002Fchangelog\u002F2025\u002F05\u002Fimport-node-red-flows","Import Node-RED Flows During Remote Instance Setup",{"path":5948,"title":5949},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant","FlowFuse Expert just got smarter",{"path":5951,"title":5949},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant-2",{"path":5953,"title":5954},"\u002Fchangelog\u002F2025\u002F06\u002Fgit-integration","Pulling snapshots from Git with Pipelines",{"path":5956,"title":5957},"\u002Fchangelog\u002F2025\u002F06\u002Finstance-performance-memory","Memory Metrics in Instance Performance View",{"path":5959,"title":5960},"\u002Fchangelog\u002F2025\u002F06\u002Fnew-home-page","Introducing the New Home Page Experience",{"path":5962,"title":5963},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance","Team Performance Feature",{"path":5965,"title":5966},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance-view","Instance Performance View",{"path":5968,"title":5969},"\u002Fchangelog\u002F2025\u002F06\u002Fui-refresh","Navigation UI Refresh",{"path":5971,"title":5972},"\u002Fchangelog\u002F2025\u002F07\u002Fbrowse-node-red-flows","Browse for Node-RED Flows During Remote Instance Setup",{"path":5974,"title":5315},"\u002Fchangelog\u002F2025\u002F07\u002Fflowfuse-tables",{"path":5976,"title":5977},"\u002Fchangelog\u002F2025\u002F07\u002Fimport-blueprints","Import blueprints directly into your existing instances",{"path":5979,"title":5980},"\u002Fchangelog\u002F2025\u002F07\u002Fsimplified-applications-overview","Simplified Applications Page with Summary Tiles",{"path":5982,"title":5983},"\u002Fchangelog\u002F2025\u002F07\u002Fsmart-suggestions","Smart Suggestions",{"path":5985,"title":5986},"\u002Fchangelog\u002F2025\u002F07\u002Fteam-to-pro-plan-rename","Team Plan Renamed to Pro Plan",{"path":5988,"title":5989},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-hosted","Generate snapshot descriptions with AI",{"path":5991,"title":5992},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-remote","AI Snapshot Descriptions Now Work with Remote Instances",{"path":5994,"title":5995},"\u002Fchangelog\u002F2025\u002F08\u002Fdevice-performance","FlowFuse Remote Instance Performance Data",{"path":5997,"title":5998},"\u002Fchangelog\u002F2025\u002F08\u002Fdirect-sso","Direct SSO Login",{"path":6000,"title":6001},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-assistant","FlowFuse Expert documents your flows",{"path":6003,"title":6004},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-mqtt","FlowFuse MQTT",{"path":6006,"title":6007},"\u002Fchangelog\u002F2025\u002F08\u002Fhttp-cors","Configure HTTP CORS",{"path":6009,"title":6010},"\u002Fchangelog\u002F2025\u002F08\u002Fsubflow-export","Export SubFlow as Node-RED module",{"path":6012,"title":6013},"\u002Fchangelog\u002F2025\u002F08\u002Ftables-assistant","FlowFuse Tables with a little help from the Assistant",{"path":6015,"title":6016},"\u002Fchangelog\u002F2025\u002F09\u002Fexpose-saml-groups-to-dashboard","Allow SSO groups to be shared with the Node-RED Dashboard",{"path":6018,"title":6019},"\u002Fchangelog\u002F2025\u002F09\u002Finline-assist","FlowFuse Expert can help you write code",{"path":6021,"title":6022},"\u002Fchangelog\u002F2025\u002F09\u002Fretiring-flowforge-device-agent","No more @flowforge\u002Fflowforge-device-agent releases",{"path":6024,"title":6025},"\u002Fchangelog\u002F2025\u002F09\u002Frevised-instance-snapshot-ui","Streamlined Snapshot Management",{"path":6027,"title":6028},"\u002Fchangelog\u002F2025\u002F09\u002Fteam-broker-async-api","Capture Async API data from FlowFuse Team Broker",{"path":6030,"title":6031},"\u002Fchangelog\u002F2025\u002F10\u002Fapplication-level-rbac","Application-level access control for Enterprise teams",{"path":6033,"title":6034},"\u002Fchangelog\u002F2025\u002F10\u002Fbulk-device-group-assignment","Easier Access to Bulk Device Group Management",{"path":6036,"title":6037},"\u002Fchangelog\u002F2025\u002F10\u002Fduplicate-instances-across-applications","Duplicate Instances Across Different Applications",{"path":6039,"title":6040},"\u002Fchangelog\u002F2025\u002F10\u002Fimport-flows-on-instance-creation","Import flows during instance creation",{"path":6042,"title":6043},"\u002Fchangelog\u002F2025\u002F10\u002Fmcp-nodes","FlowFuse MCP Server Nodes",{"path":6045,"title":6046},"\u002Fchangelog\u002F2025\u002F10\u002Fonnx-nodes","FlowFuse AI Nodes",{"path":6048,"title":6049},"\u002Fchangelog\u002F2025\u002F10\u002Fsettings-page-device-group-management","Device Group Management from Settings Page",{"path":6051,"title":6052},"\u002Fchangelog\u002F2025\u002F11\u002Fff-expert-update","FlowFuse Expert Update",{"path":6054,"title":6055},"\u002Fchangelog\u002F2025\u002F11\u002Fminimum-nodejs-version","Node.js v20 Minimum Version Requirement",{"path":6057,"title":6058},"\u002Fchangelog\u002F2025\u002F11\u002Fsso-session","SSO control over Session life",{"path":6060,"title":6061},"\u002Fchangelog\u002F2025\u002F12\u002Fff-expert-mcp-insights","FlowFuse Expert: Now with MCP-Powered Insights",{"path":6063,"title":6064},"\u002Fchangelog\u002F2025\u002F12\u002Fscheduled-maintenance","Scheduled Maintenance Mode",{"path":6066,"title":6067},"\u002Fchangelog\u002F2026\u002F01\u002Fdevice-agent-containers","Device Agent Docker Containers updated",{"path":6069,"title":6070},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-manage-palette","FlowFuse Expert: Enhanced Palette Integration",{"path":6072,"title":6073},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-nr-actions","FlowFuse Expert: Integration with Node-RED",{"path":6075,"title":6076},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-palette-queries","FlowFuse Expert: Palette Queries",{"path":6078,"title":6079},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-select-flows","FlowFuse Expert: Ask about your flows",{"path":6081,"title":6082},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-rbacs","FlowFuse Expert: MCP-Powered Insights with RBACs",{"path":6084,"title":6085},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-security","FlowFuse Expert: MCP-Powered Insights",{"path":6087,"title":6088},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options","Set Node.js Options for Remote Instances",{"path":6090,"title":6091},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context","FlowFuse Expert: Helping you make sense of your debug log",{"path":6093,"title":6094},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner","FlowFuse Expert: Never Miss an Update",{"path":6096,"title":6097},"\u002Fchangelog\u002F2026\u002F02\u002Fha-instance-rolling-restart","HA Hosted Instance Rolling Restart",{"path":6099,"title":6100},"\u002Fchangelog\u002F2026\u002F02\u002Fremote-instances-immersive-editor","Immersive Mode for Remote Instances",{"path":6102,"title":6103},"\u002Fchangelog\u002F2026\u002F02\u002Frestoring-snapshots-to-remote-instances","Restoring snapshots to developer-mode Remote Instances",{"path":6105,"title":6106},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops","Azure DevOps Pipeline support",{"path":6108,"title":6109},"\u002Fchangelog\u002F2026\u002F03\u002Fdeveloper-mode-in-immersive-editor","Developer Mode Now Accessible from the Immersive Editor",{"path":6111,"title":6112},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title","Embedded Editor Now Shows Active Tab",{"path":6114,"title":6115},"\u002Fchangelog\u002F2026\u002F03\u002Fmarch-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on March 28th, 2026",{"path":6117,"title":6118},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor","View Snapshot Details in the Immersive Editor",{"path":6120,"title":6121},"\u002Fchangelog\u002F2026\u002F04\u002Fexpert-action-links","FlowFuse expert action links",{"path":6123,"title":6124},"\u002Fchangelog\u002F2026\u002F04\u002Fhosted-instance-url-env-var","Hosted Instances know their own URL",{"path":6126,"title":5384},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer",{"path":6128,"title":6129},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer","Richer snapshot comparison view",{"path":6131,"title":6132},"\u002Fchangelog\u002F2026\u002F05\u002Fai-opt-out","AI Feature Opt-Out for Teams",{"path":6134,"title":6135},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building","FlowFuse Expert Builds Your Application",{"path":6137,"title":6138},"\u002Fchangelog\u002F2026\u002F05\u002Fsingle-sso-provider","Single SSO provider for all users",{"path":6140,"title":6141},"\u002Fchangelog\u002F2026\u002F06\u002Fdark-mode","Dark Mode",{"path":6143,"title":6144},"\u002Fchangelog\u002F2026\u002F06\u002Fdevice-agent-v4-released","Device Agent v4 released",{"path":6146,"title":6147},"\u002Fchangelog\u002F2026\u002F06\u002Fgeneric-git-server-support","Connect Pipelines to Any Git Server",{"path":6149,"title":6150},"\u002Fchangelog\u002F2026\u002F06\u002Fjuly-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on July 11th, 2026",{"path":6152,"title":6153},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups","Application Roles from SSO Groups",{"path":6155,"title":6156},"\u002Fchangelog\u002F2026\u002F07\u002Fdevice-agent-onboarding","Getting started with FlowFuse straight from the terminal",{"path":6158,"title":6159},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-enhancements","FlowFuse Expert Enhancements",{"path":6161,"title":6162},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation","FlowFuse Expert Can Now Work With Your Tables",{"path":6164,"title":6165},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats","Team Scoped Personal Access Tokens",{"path":6167,"title":6168},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards","A Dedicated Home for Your Dashboards",[],1786105887984]