[{"data":1,"prerenderedAt":8265},["ShallowReactive",2],{"blog-\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red":3,"featureCatalog":5246,"changelog-titles":5640,"blog-all-for-related":6174},{"id":4,"title":5,"authors":6,"body":8,"cta":5224,"date":5225,"description":5226,"extension":5227,"features":5224,"image":5224,"lastUpdated":5228,"meta":5229,"navigation":5235,"path":5236,"release":5224,"seo":5237,"stem":5238,"subtitle":5239,"tags":5240,"tldr":5244,"video":5224,"__hash__":5245},"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":5196},"minimark",[11,15,20,41,44,49,65,68,79,86,95,99,102,106,109,112,119,123,126,129,133,152,155,161,165,168,171,174,177,181,192,199,203,211,215,225,236,240,243,246,250,276,280,297,300,600,604,607,614,621,629,632,636,639,660,664,697,708,712,880,891,905,914,925,931,1977,1981,2015,2023,2612,2616,2619,2631,2680,2683,2725,2736,2743,4073,4076,5106,5115,5119,5122,5175,5179,5182,5185,5192],[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},"\u002Fuse-cases\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.",[156,157],"cta-image",{"alt":158,"cta":159,"src":160},"Arch Systems scales automation across complex manufacturing environments with FlowFuse - book a demo","demo","\u002Fimages\u002Fcta\u002Farch-systems-book-demo.png",[16,162,164],{"id":163},"the-mqtt-sparkplug-specification-for-iiot","The MQTT Sparkplug Specification for IIoT",[12,166,167],{},"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,169,170],{},"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,172,164],{"id":173},"the-mqtt-sparkplug-specification-for-iiot-1",[12,175,176],{},"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,178,180],{"id":179},"topic-namespace-architecture","Topic Namespace Architecture",[12,182,183,184,187,188,191],{},"Sparkplug B enforces a hierarchical topic namespace that follows a specific pattern: ",[53,185,186],{},"spBv1.0\u002F{group_id}\u002F{message_type}\u002F{edge_node_id}\u002F{device_id}",". The namespace starts with the protocol version identifier ",[53,189,190],{},"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,193,194,195,198],{},"For example, a temperature sensor in a manufacturing facility might publish to ",[53,196,197],{},"spBv1.0\u002FManufacturing\u002FDDATA\u002FGateway01\u002FTempSensor05",". This structured approach eliminates ambiguity and enables automatic topic subscription patterns.",[45,200,202],{"id":201},"protocol-buffer-payloads","Protocol Buffer Payloads",[12,204,205,206,210],{},"Rather than using JSON or other text-based formats, Sparkplug B employs ",[24,207,209],{"href":208},"\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,212,214],{"id":213},"state-management-system","State Management System",[12,216,217,218,220,221,224],{},"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,219,117],{}," for nodes, ",[53,222,223],{},"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,226,227,228,231,232,235],{},"When devices disconnect, either gracefully or due to network failure, death certificates (",[53,229,230],{},"NDEATH","\u002F",[53,233,234],{},"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,237,239],{"id":238},"metric-definition-framework","Metric Definition Framework",[12,241,242],{},"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,244,245],{},"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,247,249],{"id":248},"message-types-and-their-purposes","Message Types and Their Purposes",[12,251,252,253,255,256,258,259,261,262,264,265,267,268,270,271,139,273,275],{},"Sparkplug B defines specific message types for different communication needs. ",[53,254,117],{}," messages announce edge node connection and available metrics. ",[53,257,146],{}," messages carry periodic metric updates from edge nodes. ",[53,260,230],{}," messages signal edge node disconnection. ",[53,263,223],{},", ",[53,266,150],{},", and ",[53,269,234],{}," provide the same functions for devices under edge nodes.",[53,272,138],{},[53,274,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,277,279],{"id":278},"sparkplug-b-vs-plain-mqtt-understanding-the-differences","Sparkplug B vs Plain MQTT: Understanding the Differences",[12,281,282,283,287,288,292,293,296],{},"While both ",[24,284,286],{"href":285},"\u002Fblog\u002F2024\u002F06\u002Fhow-to-use-mqtt-in-node-red\u002F","plain MQTT"," and Sparkplug B use the same MQTT transport protocol, they solve ",[289,290,291],"strong",{},"very different problems",".\nPlain MQTT focuses on moving messages reliably, whereas Sparkplug B defines ",[289,294,295],{},"how industrial data should be structured, identified, and managed"," across devices and applications.",[12,298,299],{},"The table below highlights the practical differences that matter when designing real-world IIoT and SCADA systems.",[301,302,303,319],"table",{},[304,305,306],"thead",{},[307,308,309,313,316],"tr",{},[310,311,312],"th",{},"Category",[310,314,315],{},"Plain MQTT",[310,317,318],{},"MQTT Sparkplug B",[320,321,322,336,349,366,379,392,405,418,431,444,457,470,483,496,509,522,535,548,561,574,587],"tbody",{},[307,323,324,330,333],{},[325,326,327],"td",{},[289,328,329],{},"What it is",[325,331,332],{},"Messaging protocol",[325,334,335],{},"Industrial IoT specification built on MQTT",[307,337,338,343,346],{},[325,339,340],{},[289,341,342],{},"Primary purpose",[325,344,345],{},"Message transport",[325,347,348],{},"Standardized industrial data exchange",[307,350,351,356,359],{},[325,352,353],{},[289,354,355],{},"Topic structure",[325,357,358],{},"Fully custom, no enforced rules",[325,360,361,362,365],{},"Strict, standardized namespace (",[53,363,364],{},"spBv1.0\u002F...",")",[307,367,368,373,376],{},[325,369,370],{},[289,371,372],{},"Payload format",[325,374,375],{},"JSON, text, or custom binary",[325,377,378],{},"Google Protocol Buffers (binary, compact)",[307,380,381,386,389],{},[325,382,383],{},[289,384,385],{},"Payload consistency",[325,387,388],{},"Varies by device and vendor",[325,390,391],{},"Guaranteed consistent structure",[307,393,394,399,402],{},[325,395,396],{},[289,397,398],{},"Data typing",[325,400,401],{},"Not enforced",[325,403,404],{},"Strongly typed metrics",[307,406,407,412,415],{},[325,408,409],{},[289,410,411],{},"Device discovery",[325,413,414],{},"Manual configuration",[325,416,417],{},"Automatic via NBIRTH \u002F DBIRTH",[307,419,420,425,428],{},[325,421,422],{},[289,423,424],{},"State awareness",[325,426,427],{},"Limited (LWT only)",[325,429,430],{},"Full lifecycle (BIRTH, DATA, DEATH)",[307,432,433,438,441],{},[325,434,435],{},[289,436,437],{},"Message loss detection",[325,439,440],{},"Not supported",[325,442,443],{},"Sequence numbers included",[307,445,446,451,454],{},[325,447,448],{},[289,449,450],{},"Timestamps",[325,452,453],{},"Optional, application-defined",[325,455,456],{},"Mandatory per metric",[307,458,459,464,467],{},[325,460,461],{},[289,462,463],{},"Data quality flags",[325,465,466],{},"Custom implementation",[325,468,469],{},"Built-in (historical, transient, null)",[307,471,472,477,480],{},[325,473,474],{},[289,475,476],{},"Bandwidth efficiency",[325,478,479],{},"Lower (JSON overhead)",[325,481,482],{},"Higher (protobuf + metric aliasing)",[307,484,485,490,493],{},[325,486,487],{},[289,488,489],{},"Metric aliasing",[325,491,492],{},"Not available",[325,494,495],{},"Supported",[307,497,498,503,506],{},[325,499,500],{},[289,501,502],{},"Command & control",[325,504,505],{},"Custom topics and logic",[325,507,508],{},"Standardized NCMD \u002F DCMD",[307,510,511,516,519],{},[325,512,513],{},[289,514,515],{},"Interoperability",[325,517,518],{},"Low (vendor-specific)",[325,520,521],{},"High (vendor-neutral)",[307,523,524,529,532],{},[325,525,526],{},[289,527,528],{},"Human readability",[325,530,531],{},"High",[325,533,534],{},"Low (binary encoded)",[307,536,537,542,545],{},[325,538,539],{},[289,540,541],{},"Debugging effort",[325,543,544],{},"Easy with basic tools",[325,546,547],{},"Requires Sparkplug-aware tools",[307,549,550,555,558],{},[325,551,552],{},[289,553,554],{},"Scalability",[325,556,557],{},"Depends on custom design",[325,559,560],{},"Designed for large-scale IIoT",[307,562,563,568,571],{},[325,564,565],{},[289,566,567],{},"Security",[325,569,570],{},"MQTT-level (TLS, ACLs)",[325,572,573],{},"MQTT-level (same as plain MQTT)",[307,575,576,581,584],{},[325,577,578],{},[289,579,580],{},"Learning curve",[325,582,583],{},"Low",[325,585,586],{},"Medium to high",[307,588,589,594,597],{},[325,590,591],{},[289,592,593],{},"Best fit use cases",[325,595,596],{},"Small systems, prototypes, simple sensors",[325,598,599],{},"SCADA, HMI, multi-vendor industrial systems",[16,601,603],{"id":602},"using-mqtt-sparkplug-b-with-node-red","Using MQTT Sparkplug B with Node-RED",[12,605,606],{},"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,608,609,613],{},[24,610,612],{"href":611},"\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,615,616,617,620],{},"To run Node-RED reliably in production, especially for industrial and edge deployments, ",[24,618,619],{"href":231},"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,622,623,628],{},[24,624,627],{"href":625,"rel":626},"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,630,631],{},"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,633,635],{"id":634},"prerequisite","Prerequisite",[12,637,638],{},"Before you begin, ensure you have the following:",[640,641,642,652],"ul",{},[643,644,645,646,651],"li",{},"node-red-contrib-mqtt-sparkplug-plus: Install this ",[24,647,650],{"href":648,"rel":649},"https:\u002F\u002Fflows.nodered.org\u002Fnode\u002Fnode-red-contrib-mqtt-sparkplug-plus",[28],"Node-RED package for Sparkplug B"," support via palette manager.",[643,653,654,655,659],{},"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,656,658],{"href":657},"\u002Fdocs\u002Fuser\u002Fteambroker\u002F","FlowFuse MQTT documentation",".",[45,661,663],{"id":662},"configuring-node-red-for-mqtt-sparkplug-b","Configuring Node-RED for MQTT Sparkplug B",[665,666,667,670,673,688,691,694],"ol",{},[643,668,669],{},"Drag any mqtt sparkplug node onto the canvas.",[643,671,672],{},"Double-click the mqtt sparkplug node to open the configuration panel.",[643,674,675,676,679,680,683,684,687],{},"Click the \"+\" icon next to the \"Broker\" field. Enter your MQTT broker's host address (e.g., ",[53,677,678],{},"broker.flowfuse.cloud","), specify the port number (e.g., ",[53,681,682],{},"1883"," for unencrypted or ",[53,685,686],{},"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).",[643,689,690],{},"Switch to the Sparkplug tab by clicking the Sparkplug option in the top-right corner.",[643,692,693],{},"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.",[643,695,696],{},"Click \"Add\" to save the configuration.",[12,698,699,703,706],{},[71,700],{"alt":701,"src":702,"title":701},"Screenshot showing the configuration of Sparkplug broker config node","\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-broker-config.png",[704,705],"br",{},[76,707,701],{},[45,709,711],{"id":710},"sending-data-to-mqtt-with-sparkplug-b","Sending Data to MQTT with Sparkplug B",[665,713,714,874,877],{},[643,715,716,717,720,721],{},"Drag the inject node onto the canvas. Set the ",[53,718,719],{},"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:",[722,723,728],"pre",{"className":724,"code":725,"language":726,"meta":727,"style":727},"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,729,730,739,758,764,790,810,816,821,841,856,862,868],{"__ignoreMap":727},[731,732,735],"span",{"class":733,"line":734},"line",1,[731,736,738],{"class":737},"sMK4o","{\n",[731,740,742,745,749,752,755],{"class":733,"line":741},2,[731,743,744],{"class":737},"    \"",[731,746,748],{"class":747},"spNyl","metrics",[731,750,751],{"class":737},"\"",[731,753,754],{"class":737},":",[731,756,757],{"class":737}," [\n",[731,759,761],{"class":733,"line":760},3,[731,762,763],{"class":737},"        {\n",[731,765,767,770,774,776,778,781,785,787],{"class":733,"line":766},4,[731,768,769],{"class":737},"            \"",[731,771,773],{"class":772},"sBMFI","name",[731,775,751],{"class":737},[731,777,754],{"class":737},[731,779,780],{"class":737}," \"",[731,782,784],{"class":783},"sfazB","sensor\u002Ftemperature",[731,786,751],{"class":737},[731,788,789],{"class":737},",\n",[731,791,793,795,798,800,802,806],{"class":733,"line":792},5,[731,794,769],{"class":737},[731,796,797],{"class":772},"value",[731,799,751],{"class":737},[731,801,754],{"class":737},[731,803,805],{"class":804},"sTEyZ"," $random() * ",[731,807,809],{"class":808},"sbssI","100\n",[731,811,813],{"class":733,"line":812},6,[731,814,815],{"class":737},"        },\n",[731,817,819],{"class":733,"line":818},7,[731,820,763],{"class":737},[731,822,824,826,828,830,832,834,837,839],{"class":733,"line":823},8,[731,825,769],{"class":737},[731,827,773],{"class":772},[731,829,751],{"class":737},[731,831,754],{"class":737},[731,833,780],{"class":737},[731,835,836],{"class":783},"sensor\u002Fhumidity",[731,838,751],{"class":737},[731,840,789],{"class":737},[731,842,844,846,848,850,852,854],{"class":733,"line":843},9,[731,845,769],{"class":737},[731,847,797],{"class":772},[731,849,751],{"class":737},[731,851,754],{"class":737},[731,853,805],{"class":804},[731,855,809],{"class":808},[731,857,859],{"class":733,"line":858},10,[731,860,861],{"class":737},"        }\n",[731,863,865],{"class":733,"line":864},11,[731,866,867],{"class":737},"    ]\n",[731,869,871],{"class":733,"line":870},12,[731,872,873],{"class":737},"}\n",[643,875,876],{},"Drag the mqtt sparkplug device node onto the canvas.",[643,878,879],{},"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,881,882,887,889],{},[71,883],{"alt":884,"src":885,"title":886},"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",[704,888],{},[76,890,884],{},[665,892,893,896],{"start":766},[643,894,895],{},"Switch to the Advanced tab by clicking the \"Advanced\" option at the top-right.",[643,897,898,899,901,902,904],{},"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,900,223],{}," message when the device node connects, but an ",[53,903,117],{}," message will be sent successful connection of mqtt sparkplug out node if you are using.",[12,906,907,910,912],{},[71,908],{"alt":884,"src":909,"title":886},"\u002Fblog\u002F2024\u002F08\u002Fimages\u002Fmqtt-spark-device-advance.png",[704,911],{},[76,913,884],{},[665,915,916,919,922],{"start":812},[643,917,918],{},"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.",[643,920,921],{},"Connect the inject node's output to the mqtt sparkplug device node's input.",[643,923,924],{},"Deploy the flow by clicking the top-right \"Deploy\" button.",[12,926,927,928,930],{},"Once you deploy the flow and all devices connect to the MQTT broker, the system automatically send a ",[53,929,223],{}," message as soon as each device within the node connects, signalling that the device is ready for data transmission.",[932,933,934],"render-flow",{},[722,935,937],{"className":724,"code":936,"language":726,"meta":727,"style":727},"[{\"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,938,939],{"__ignoreMap":727},[731,940,941,944,946,949,951,953,955,958,960,963,965,968,970,972,974,977,979,981,983,986,988,990,992,995,997,999,1001,1003,1005,1007,1009,1012,1014,1016,1018,1020,1022,1025,1027,1029,1031,1033,1035,1038,1040,1042,1044,1047,1049,1051,1053,1055,1057,1059,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1109,1111,1114,1116,1118,1120,1123,1125,1127,1129,1132,1134,1137,1139,1142,1144,1147,1149,1152,1154,1156,1159,1161,1163,1166,1168,1170,1173,1175,1177,1180,1182,1185,1187,1190,1192,1195,1197,1199,1201,1203,1205,1208,1210,1212,1214,1216,1218,1220,1222,1225,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1247,1249,1251,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1285,1287,1290,1292,1294,1296,1298,1300,1303,1305,1307,1309,1312,1314,1316,1318,1321,1323,1326,1328,1331,1333,1335,1338,1340,1342,1345,1347,1349,1351,1353,1355,1358,1360,1362,1364,1367,1369,1371,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1401,1404,1406,1408,1411,1413,1415,1417,1420,1422,1424,1426,1429,1431,1433,1435,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1463,1465,1467,1469,1472,1474,1476,1478,1481,1483,1485,1487,1489,1491,1493,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,1548,1550,1552,1555,1557,1559,1561,1563,1565,1567,1569,1571,1573,1575,1577,1579,1581,1583,1585,1587,1589,1592,1594,1596,1598,1601,1603,1605,1607,1610,1612,1614,1616,1619,1621,1623,1625,1628,1630,1632,1634,1636,1638,1640,1642,1645,1647,1649,1651,1654,1656,1658,1660,1663,1665,1667,1669,1671,1673,1676,1678,1680,1682,1685,1687,1689,1691,1693,1695,1697,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1723,1725,1727,1729,1731,1733,1735,1737,1739,1741,1743,1745,1747,1749,1752,1754,1756,1758,1760,1762,1764,1766,1769,1771,1773,1775,1778,1780,1782,1784,1787,1789,1791,1793,1796,1798,1800,1802,1805,1807,1809,1811,1813,1815,1817,1819,1822,1824,1826,1828,1831,1833,1835,1837,1839,1841,1843,1845,1848,1850,1852,1854,1856,1858,1861,1863,1865,1867,1869,1871,1874,1876,1878,1880,1883,1885,1887,1889,1892,1894,1896,1898,1901,1903,1905,1907,1910,1912,1914,1916,1919,1921,1923,1925,1928,1930,1932,1934,1937,1939,1941,1943,1945,1947,1950,1952,1954,1956,1959,1961,1963,1965,1968,1970,1972,1974],{"class":733,"line":734},[731,942,943],{"class":737},"[{",[731,945,751],{"class":737},[731,947,948],{"class":747},"id",[731,950,751],{"class":737},[731,952,754],{"class":737},[731,954,751],{"class":737},[731,956,957],{"class":783},"f2864f2b830e3590",[731,959,751],{"class":737},[731,961,962],{"class":737},",",[731,964,751],{"class":737},[731,966,967],{"class":747},"type",[731,969,751],{"class":737},[731,971,754],{"class":737},[731,973,751],{"class":737},[731,975,976],{"class":783},"mqtt sparkplug device",[731,978,751],{"class":737},[731,980,962],{"class":737},[731,982,751],{"class":737},[731,984,985],{"class":747},"z",[731,987,751],{"class":737},[731,989,754],{"class":737},[731,991,751],{"class":737},[731,993,994],{"class":783},"239c9025714089d3",[731,996,751],{"class":737},[731,998,962],{"class":737},[731,1000,751],{"class":737},[731,1002,773],{"class":747},[731,1004,751],{"class":737},[731,1006,754],{"class":737},[731,1008,751],{"class":737},[731,1010,1011],{"class":783},"Machine1",[731,1013,751],{"class":737},[731,1015,962],{"class":737},[731,1017,751],{"class":737},[731,1019,748],{"class":747},[731,1021,751],{"class":737},[731,1023,1024],{"class":737},":{",[731,1026,751],{"class":737},[731,1028,784],{"class":772},[731,1030,751],{"class":737},[731,1032,1024],{"class":737},[731,1034,751],{"class":737},[731,1036,1037],{"class":808},"dataType",[731,1039,751],{"class":737},[731,1041,754],{"class":737},[731,1043,751],{"class":737},[731,1045,1046],{"class":783},"Float",[731,1048,751],{"class":737},[731,1050,962],{"class":737},[731,1052,751],{"class":737},[731,1054,773],{"class":808},[731,1056,751],{"class":737},[731,1058,754],{"class":737},[731,1060,751],{"class":737},[731,1062,784],{"class":783},[731,1064,751],{"class":737},[731,1066,1067],{"class":737},"},",[731,1069,751],{"class":737},[731,1071,836],{"class":772},[731,1073,751],{"class":737},[731,1075,1024],{"class":737},[731,1077,751],{"class":737},[731,1079,1037],{"class":808},[731,1081,751],{"class":737},[731,1083,754],{"class":737},[731,1085,751],{"class":737},[731,1087,1046],{"class":783},[731,1089,751],{"class":737},[731,1091,962],{"class":737},[731,1093,751],{"class":737},[731,1095,773],{"class":808},[731,1097,751],{"class":737},[731,1099,754],{"class":737},[731,1101,751],{"class":737},[731,1103,836],{"class":783},[731,1105,751],{"class":737},[731,1107,1108],{"class":737},"}},",[731,1110,751],{"class":737},[731,1112,1113],{"class":747},"broker",[731,1115,751],{"class":737},[731,1117,754],{"class":737},[731,1119,751],{"class":737},[731,1121,1122],{"class":783},"0d831bd9ba588536",[731,1124,751],{"class":737},[731,1126,962],{"class":737},[731,1128,751],{"class":737},[731,1130,1131],{"class":747},"birthImmediately",[731,1133,751],{"class":737},[731,1135,1136],{"class":737},":true,",[731,1138,751],{"class":737},[731,1140,1141],{"class":747},"bufferDevice",[731,1143,751],{"class":737},[731,1145,1146],{"class":737},":false,",[731,1148,751],{"class":737},[731,1150,1151],{"class":747},"x",[731,1153,751],{"class":737},[731,1155,754],{"class":737},[731,1157,1158],{"class":808},"380",[731,1160,962],{"class":737},[731,1162,751],{"class":737},[731,1164,1165],{"class":747},"y",[731,1167,751],{"class":737},[731,1169,754],{"class":737},[731,1171,1172],{"class":808},"320",[731,1174,962],{"class":737},[731,1176,751],{"class":737},[731,1178,1179],{"class":747},"wires",[731,1181,751],{"class":737},[731,1183,1184],{"class":737},":[[",[731,1186,751],{"class":737},[731,1188,1189],{"class":783},"3dfc9b74f5e36bec",[731,1191,751],{"class":737},[731,1193,1194],{"class":737},"]]},{",[731,1196,751],{"class":737},[731,1198,948],{"class":747},[731,1200,751],{"class":737},[731,1202,754],{"class":737},[731,1204,751],{"class":737},[731,1206,1207],{"class":783},"90cc413f58871fc1",[731,1209,751],{"class":737},[731,1211,962],{"class":737},[731,1213,751],{"class":737},[731,1215,967],{"class":747},[731,1217,751],{"class":737},[731,1219,754],{"class":737},[731,1221,751],{"class":737},[731,1223,1224],{"class":783},"inject",[731,1226,751],{"class":737},[731,1228,962],{"class":737},[731,1230,751],{"class":737},[731,1232,985],{"class":747},[731,1234,751],{"class":737},[731,1236,754],{"class":737},[731,1238,751],{"class":737},[731,1240,994],{"class":783},[731,1242,751],{"class":737},[731,1244,962],{"class":737},[731,1246,751],{"class":737},[731,1248,773],{"class":747},[731,1250,751],{"class":737},[731,1252,754],{"class":737},[731,1254,751],{"class":737},[731,1256,1257],{"class":783},"Send Metrics",[731,1259,751],{"class":737},[731,1261,962],{"class":737},[731,1263,751],{"class":737},[731,1265,1266],{"class":747},"props",[731,1268,751],{"class":737},[731,1270,1271],{"class":737},":[{",[731,1273,751],{"class":737},[731,1275,12],{"class":772},[731,1277,751],{"class":737},[731,1279,754],{"class":737},[731,1281,751],{"class":737},[731,1283,1284],{"class":783},"payload",[731,1286,751],{"class":737},[731,1288,1289],{"class":737},"},{",[731,1291,751],{"class":737},[731,1293,12],{"class":772},[731,1295,751],{"class":737},[731,1297,754],{"class":737},[731,1299,751],{"class":737},[731,1301,1302],{"class":783},"topic",[731,1304,751],{"class":737},[731,1306,962],{"class":737},[731,1308,751],{"class":737},[731,1310,1311],{"class":772},"vt",[731,1313,751],{"class":737},[731,1315,754],{"class":737},[731,1317,751],{"class":737},[731,1319,1320],{"class":783},"str",[731,1322,751],{"class":737},[731,1324,1325],{"class":737},"}],",[731,1327,751],{"class":737},[731,1329,1330],{"class":747},"repeat",[731,1332,751],{"class":737},[731,1334,754],{"class":737},[731,1336,1337],{"class":737},"\"\"",[731,1339,962],{"class":737},[731,1341,751],{"class":737},[731,1343,1344],{"class":747},"crontab",[731,1346,751],{"class":737},[731,1348,754],{"class":737},[731,1350,1337],{"class":737},[731,1352,962],{"class":737},[731,1354,751],{"class":737},[731,1356,1357],{"class":747},"once",[731,1359,751],{"class":737},[731,1361,1146],{"class":737},[731,1363,751],{"class":737},[731,1365,1366],{"class":747},"onceDelay",[731,1368,751],{"class":737},[731,1370,754],{"class":737},[731,1372,1373],{"class":808},"0.1",[731,1375,962],{"class":737},[731,1377,751],{"class":737},[731,1379,1302],{"class":747},[731,1381,751],{"class":737},[731,1383,754],{"class":737},[731,1385,1337],{"class":737},[731,1387,962],{"class":737},[731,1389,751],{"class":737},[731,1391,1284],{"class":747},[731,1393,751],{"class":737},[731,1395,754],{"class":737},[731,1397,751],{"class":737},[731,1399,1400],{"class":783},"{    ",[731,1402,1403],{"class":804},"\\\"",[731,1405,748],{"class":783},[731,1407,1403],{"class":804},[731,1409,1410],{"class":783},": [        {            ",[731,1412,1403],{"class":804},[731,1414,773],{"class":783},[731,1416,1403],{"class":804},[731,1418,1419],{"class":783},": ",[731,1421,1403],{"class":804},[731,1423,784],{"class":783},[731,1425,1403],{"class":804},[731,1427,1428],{"class":783},",            ",[731,1430,1403],{"class":804},[731,1432,797],{"class":783},[731,1434,1403],{"class":804},[731,1436,1437],{"class":783},": $random()*100        },        {            ",[731,1439,1403],{"class":804},[731,1441,773],{"class":783},[731,1443,1403],{"class":804},[731,1445,1419],{"class":783},[731,1447,1403],{"class":804},[731,1449,836],{"class":783},[731,1451,1403],{"class":804},[731,1453,1428],{"class":783},[731,1455,1403],{"class":804},[731,1457,797],{"class":783},[731,1459,1403],{"class":804},[731,1461,1462],{"class":783},": $random()*100        }    ]}",[731,1464,751],{"class":737},[731,1466,962],{"class":737},[731,1468,751],{"class":737},[731,1470,1471],{"class":747},"payloadType",[731,1473,751],{"class":737},[731,1475,754],{"class":737},[731,1477,751],{"class":737},[731,1479,1480],{"class":783},"jsonata",[731,1482,751],{"class":737},[731,1484,962],{"class":737},[731,1486,751],{"class":737},[731,1488,1151],{"class":747},[731,1490,751],{"class":737},[731,1492,754],{"class":737},[731,1494,1495],{"class":808},"130",[731,1497,962],{"class":737},[731,1499,751],{"class":737},[731,1501,1165],{"class":747},[731,1503,751],{"class":737},[731,1505,754],{"class":737},[731,1507,1172],{"class":808},[731,1509,962],{"class":737},[731,1511,751],{"class":737},[731,1513,1179],{"class":747},[731,1515,751],{"class":737},[731,1517,1184],{"class":737},[731,1519,751],{"class":737},[731,1521,957],{"class":783},[731,1523,751],{"class":737},[731,1525,1194],{"class":737},[731,1527,751],{"class":737},[731,1529,948],{"class":747},[731,1531,751],{"class":737},[731,1533,754],{"class":737},[731,1535,751],{"class":737},[731,1537,1189],{"class":783},[731,1539,751],{"class":737},[731,1541,962],{"class":737},[731,1543,751],{"class":737},[731,1545,967],{"class":747},[731,1547,751],{"class":737},[731,1549,754],{"class":737},[731,1551,751],{"class":737},[731,1553,1554],{"class":783},"debug",[731,1556,751],{"class":737},[731,1558,962],{"class":737},[731,1560,751],{"class":737},[731,1562,985],{"class":747},[731,1564,751],{"class":737},[731,1566,754],{"class":737},[731,1568,751],{"class":737},[731,1570,994],{"class":783},[731,1572,751],{"class":737},[731,1574,962],{"class":737},[731,1576,751],{"class":737},[731,1578,773],{"class":747},[731,1580,751],{"class":737},[731,1582,754],{"class":737},[731,1584,1337],{"class":737},[731,1586,962],{"class":737},[731,1588,751],{"class":737},[731,1590,1591],{"class":747},"active",[731,1593,751],{"class":737},[731,1595,1136],{"class":737},[731,1597,751],{"class":737},[731,1599,1600],{"class":747},"tosidebar",[731,1602,751],{"class":737},[731,1604,1136],{"class":737},[731,1606,751],{"class":737},[731,1608,1609],{"class":747},"console",[731,1611,751],{"class":737},[731,1613,1146],{"class":737},[731,1615,751],{"class":737},[731,1617,1618],{"class":747},"tostatus",[731,1620,751],{"class":737},[731,1622,1146],{"class":737},[731,1624,751],{"class":737},[731,1626,1627],{"class":747},"complete",[731,1629,751],{"class":737},[731,1631,754],{"class":737},[731,1633,751],{"class":737},[731,1635,1284],{"class":783},[731,1637,751],{"class":737},[731,1639,962],{"class":737},[731,1641,751],{"class":737},[731,1643,1644],{"class":747},"targetType",[731,1646,751],{"class":737},[731,1648,754],{"class":737},[731,1650,751],{"class":737},[731,1652,1653],{"class":783},"msg",[731,1655,751],{"class":737},[731,1657,962],{"class":737},[731,1659,751],{"class":737},[731,1661,1662],{"class":747},"statusVal",[731,1664,751],{"class":737},[731,1666,754],{"class":737},[731,1668,1337],{"class":737},[731,1670,962],{"class":737},[731,1672,751],{"class":737},[731,1674,1675],{"class":747},"statusType",[731,1677,751],{"class":737},[731,1679,754],{"class":737},[731,1681,751],{"class":737},[731,1683,1684],{"class":783},"auto",[731,1686,751],{"class":737},[731,1688,962],{"class":737},[731,1690,751],{"class":737},[731,1692,1151],{"class":747},[731,1694,751],{"class":737},[731,1696,754],{"class":737},[731,1698,1699],{"class":808},"650",[731,1701,962],{"class":737},[731,1703,751],{"class":737},[731,1705,1165],{"class":747},[731,1707,751],{"class":737},[731,1709,754],{"class":737},[731,1711,1172],{"class":808},[731,1713,962],{"class":737},[731,1715,751],{"class":737},[731,1717,1179],{"class":747},[731,1719,751],{"class":737},[731,1721,1722],{"class":737},":[]},{",[731,1724,751],{"class":737},[731,1726,948],{"class":747},[731,1728,751],{"class":737},[731,1730,754],{"class":737},[731,1732,751],{"class":737},[731,1734,1122],{"class":783},[731,1736,751],{"class":737},[731,1738,962],{"class":737},[731,1740,751],{"class":737},[731,1742,967],{"class":747},[731,1744,751],{"class":737},[731,1746,754],{"class":737},[731,1748,751],{"class":737},[731,1750,1751],{"class":783},"mqtt-sparkplug-broker",[731,1753,751],{"class":737},[731,1755,962],{"class":737},[731,1757,751],{"class":737},[731,1759,773],{"class":747},[731,1761,751],{"class":737},[731,1763,754],{"class":737},[731,1765,751],{"class":737},[731,1767,1768],{"class":783},"Local Host",[731,1770,751],{"class":737},[731,1772,962],{"class":737},[731,1774,751],{"class":737},[731,1776,1777],{"class":747},"deviceGroup",[731,1779,751],{"class":737},[731,1781,754],{"class":737},[731,1783,751],{"class":737},[731,1785,1786],{"class":783},"My Devices",[731,1788,751],{"class":737},[731,1790,962],{"class":737},[731,1792,751],{"class":737},[731,1794,1795],{"class":747},"eonName",[731,1797,751],{"class":737},[731,1799,754],{"class":737},[731,1801,751],{"class":737},[731,1803,1804],{"class":783},"Node-Red",[731,1806,751],{"class":737},[731,1808,962],{"class":737},[731,1810,751],{"class":737},[731,1812,1113],{"class":747},[731,1814,751],{"class":737},[731,1816,754],{"class":737},[731,1818,751],{"class":737},[731,1820,1821],{"class":783},"localhost",[731,1823,751],{"class":737},[731,1825,962],{"class":737},[731,1827,751],{"class":737},[731,1829,1830],{"class":747},"port",[731,1832,751],{"class":737},[731,1834,754],{"class":737},[731,1836,751],{"class":737},[731,1838,682],{"class":783},[731,1840,751],{"class":737},[731,1842,962],{"class":737},[731,1844,751],{"class":737},[731,1846,1847],{"class":747},"tls",[731,1849,751],{"class":737},[731,1851,754],{"class":737},[731,1853,1337],{"class":737},[731,1855,962],{"class":737},[731,1857,751],{"class":737},[731,1859,1860],{"class":747},"clientid",[731,1862,751],{"class":737},[731,1864,754],{"class":737},[731,1866,1337],{"class":737},[731,1868,962],{"class":737},[731,1870,751],{"class":737},[731,1872,1873],{"class":747},"usetls",[731,1875,751],{"class":737},[731,1877,1146],{"class":737},[731,1879,751],{"class":737},[731,1881,1882],{"class":747},"protocolVersion",[731,1884,751],{"class":737},[731,1886,754],{"class":737},[731,1888,751],{"class":737},[731,1890,1891],{"class":783},"4",[731,1893,751],{"class":737},[731,1895,962],{"class":737},[731,1897,751],{"class":737},[731,1899,1900],{"class":747},"keepalive",[731,1902,751],{"class":737},[731,1904,754],{"class":737},[731,1906,751],{"class":737},[731,1908,1909],{"class":783},"60",[731,1911,751],{"class":737},[731,1913,962],{"class":737},[731,1915,751],{"class":737},[731,1917,1918],{"class":747},"cleansession",[731,1920,751],{"class":737},[731,1922,1136],{"class":737},[731,1924,751],{"class":737},[731,1926,1927],{"class":747},"enableStoreForward",[731,1929,751],{"class":737},[731,1931,1146],{"class":737},[731,1933,751],{"class":737},[731,1935,1936],{"class":747},"compressAlgorithm",[731,1938,751],{"class":737},[731,1940,754],{"class":737},[731,1942,1337],{"class":737},[731,1944,962],{"class":737},[731,1946,751],{"class":737},[731,1948,1949],{"class":747},"aliasMetrics",[731,1951,751],{"class":737},[731,1953,1136],{"class":737},[731,1955,751],{"class":737},[731,1957,1958],{"class":747},"manualEoNBirth",[731,1960,751],{"class":737},[731,1962,1146],{"class":737},[731,1964,751],{"class":737},[731,1966,1967],{"class":747},"primaryScada",[731,1969,751],{"class":737},[731,1971,754],{"class":737},[731,1973,1337],{"class":737},[731,1975,1976],{"class":737},"}]\n",[45,1978,1980],{"id":1979},"receiving-data-from-mqtt-with-sparkplug-b","Receiving Data from MQTT with Sparkplug B",[665,1982,1983,1986,1989,2003,2006,2009,2012],{},[643,1984,1985],{},"Drag the mqtt sparkplug in node onto the canvas.",[643,1987,1988],{},"Double-click the node and configure the broker settings.",[643,1990,1991,1992,1995,1996,1998,1999,2002],{},"Enter the topic in the \"Topic\" field in the format ",[53,1993,1994],{},"namespace\u002Fgroup_id\u002Fmessage_type\u002Fedge_node_id\u002F[device_id]",". Use ",[53,1997,150],{}," for receiving metrics you are sending using device node or a wildcard like ",[53,2000,2001],{},"spBv1.0\u002Fgroup_id\u002F+\u002F+\u002F[device_id]"," to listen to all message types from a specific device.",[643,2004,2005],{},"Select the desired \"QoS\" level.",[643,2007,2008],{},"Drag a debug node onto the canvas.",[643,2010,2011],{},"Connect the mqtt sparkplug in node’s output to the debug node’s input.",[643,2013,2014],{},"Click \"Deploy\" to save and run the flow.",[12,2016,2017,2018,267,2020,2022],{},"Now you will be able to see the ",[53,2019,223],{},[53,2021,150],{}," messages printed on the debug panel.",[932,2024,2025],{},[722,2026,2028],{"className":724,"code":2027,"language":726,"meta":727,"style":727},"[{\"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,2029,2030],{"__ignoreMap":727},[731,2031,2032,2034,2036,2038,2040,2042,2044,2047,2049,2051,2053,2055,2057,2059,2061,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2109,2111,2113,2115,2118,2120,2122,2124,2127,2129,2131,2133,2135,2137,2139,2141,2143,2145,2147,2149,2151,2153,2155,2158,2160,2162,2164,2166,2168,2171,2173,2175,2177,2179,2181,2183,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,2244,2246,2248,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,2351,2353,2355,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,2606,2608,2610],{"class":733,"line":734},[731,2033,943],{"class":737},[731,2035,751],{"class":737},[731,2037,948],{"class":747},[731,2039,751],{"class":737},[731,2041,754],{"class":737},[731,2043,751],{"class":737},[731,2045,2046],{"class":783},"a98c49d80bb5c4ee",[731,2048,751],{"class":737},[731,2050,962],{"class":737},[731,2052,751],{"class":737},[731,2054,967],{"class":747},[731,2056,751],{"class":737},[731,2058,754],{"class":737},[731,2060,751],{"class":737},[731,2062,2063],{"class":783},"mqtt sparkplug in",[731,2065,751],{"class":737},[731,2067,962],{"class":737},[731,2069,751],{"class":737},[731,2071,985],{"class":747},[731,2073,751],{"class":737},[731,2075,754],{"class":737},[731,2077,751],{"class":737},[731,2079,994],{"class":783},[731,2081,751],{"class":737},[731,2083,962],{"class":737},[731,2085,751],{"class":737},[731,2087,773],{"class":747},[731,2089,751],{"class":737},[731,2091,754],{"class":737},[731,2093,1337],{"class":737},[731,2095,962],{"class":737},[731,2097,751],{"class":737},[731,2099,1302],{"class":747},[731,2101,751],{"class":737},[731,2103,754],{"class":737},[731,2105,751],{"class":737},[731,2107,2108],{"class":783},"spBv1.0\u002FMy Devices\u002FDDATA\u002FNode-RED\u002FMachine1",[731,2110,751],{"class":737},[731,2112,962],{"class":737},[731,2114,751],{"class":737},[731,2116,2117],{"class":747},"qos",[731,2119,751],{"class":737},[731,2121,754],{"class":737},[731,2123,751],{"class":737},[731,2125,2126],{"class":783},"2",[731,2128,751],{"class":737},[731,2130,962],{"class":737},[731,2132,751],{"class":737},[731,2134,1113],{"class":747},[731,2136,751],{"class":737},[731,2138,754],{"class":737},[731,2140,751],{"class":737},[731,2142,1122],{"class":783},[731,2144,751],{"class":737},[731,2146,962],{"class":737},[731,2148,751],{"class":737},[731,2150,1151],{"class":747},[731,2152,751],{"class":737},[731,2154,754],{"class":737},[731,2156,2157],{"class":808},"330",[731,2159,962],{"class":737},[731,2161,751],{"class":737},[731,2163,1165],{"class":747},[731,2165,751],{"class":737},[731,2167,754],{"class":737},[731,2169,2170],{"class":808},"120",[731,2172,962],{"class":737},[731,2174,751],{"class":737},[731,2176,1179],{"class":747},[731,2178,751],{"class":737},[731,2180,1184],{"class":737},[731,2182,751],{"class":737},[731,2184,2185],{"class":783},"655761fb21409216",[731,2187,751],{"class":737},[731,2189,1194],{"class":737},[731,2191,751],{"class":737},[731,2193,948],{"class":747},[731,2195,751],{"class":737},[731,2197,754],{"class":737},[731,2199,751],{"class":737},[731,2201,2185],{"class":783},[731,2203,751],{"class":737},[731,2205,962],{"class":737},[731,2207,751],{"class":737},[731,2209,967],{"class":747},[731,2211,751],{"class":737},[731,2213,754],{"class":737},[731,2215,751],{"class":737},[731,2217,1554],{"class":783},[731,2219,751],{"class":737},[731,2221,962],{"class":737},[731,2223,751],{"class":737},[731,2225,985],{"class":747},[731,2227,751],{"class":737},[731,2229,754],{"class":737},[731,2231,751],{"class":737},[731,2233,994],{"class":783},[731,2235,751],{"class":737},[731,2237,962],{"class":737},[731,2239,751],{"class":737},[731,2241,773],{"class":747},[731,2243,751],{"class":737},[731,2245,754],{"class":737},[731,2247,751],{"class":737},[731,2249,2250],{"class":783},"debug 1",[731,2252,751],{"class":737},[731,2254,962],{"class":737},[731,2256,751],{"class":737},[731,2258,1591],{"class":747},[731,2260,751],{"class":737},[731,2262,1136],{"class":737},[731,2264,751],{"class":737},[731,2266,1600],{"class":747},[731,2268,751],{"class":737},[731,2270,1136],{"class":737},[731,2272,751],{"class":737},[731,2274,1609],{"class":747},[731,2276,751],{"class":737},[731,2278,1146],{"class":737},[731,2280,751],{"class":737},[731,2282,1618],{"class":747},[731,2284,751],{"class":737},[731,2286,1146],{"class":737},[731,2288,751],{"class":737},[731,2290,1627],{"class":747},[731,2292,751],{"class":737},[731,2294,754],{"class":737},[731,2296,751],{"class":737},[731,2298,1284],{"class":783},[731,2300,751],{"class":737},[731,2302,962],{"class":737},[731,2304,751],{"class":737},[731,2306,1644],{"class":747},[731,2308,751],{"class":737},[731,2310,754],{"class":737},[731,2312,751],{"class":737},[731,2314,1653],{"class":783},[731,2316,751],{"class":737},[731,2318,962],{"class":737},[731,2320,751],{"class":737},[731,2322,1662],{"class":747},[731,2324,751],{"class":737},[731,2326,754],{"class":737},[731,2328,1337],{"class":737},[731,2330,962],{"class":737},[731,2332,751],{"class":737},[731,2334,1675],{"class":747},[731,2336,751],{"class":737},[731,2338,754],{"class":737},[731,2340,751],{"class":737},[731,2342,1684],{"class":783},[731,2344,751],{"class":737},[731,2346,962],{"class":737},[731,2348,751],{"class":737},[731,2350,1151],{"class":747},[731,2352,751],{"class":737},[731,2354,754],{"class":737},[731,2356,2357],{"class":808},"800",[731,2359,962],{"class":737},[731,2361,751],{"class":737},[731,2363,1165],{"class":747},[731,2365,751],{"class":737},[731,2367,754],{"class":737},[731,2369,2170],{"class":808},[731,2371,962],{"class":737},[731,2373,751],{"class":737},[731,2375,1179],{"class":747},[731,2377,751],{"class":737},[731,2379,1722],{"class":737},[731,2381,751],{"class":737},[731,2383,948],{"class":747},[731,2385,751],{"class":737},[731,2387,754],{"class":737},[731,2389,751],{"class":737},[731,2391,1122],{"class":783},[731,2393,751],{"class":737},[731,2395,962],{"class":737},[731,2397,751],{"class":737},[731,2399,967],{"class":747},[731,2401,751],{"class":737},[731,2403,754],{"class":737},[731,2405,751],{"class":737},[731,2407,1751],{"class":783},[731,2409,751],{"class":737},[731,2411,962],{"class":737},[731,2413,751],{"class":737},[731,2415,773],{"class":747},[731,2417,751],{"class":737},[731,2419,754],{"class":737},[731,2421,751],{"class":737},[731,2423,1768],{"class":783},[731,2425,751],{"class":737},[731,2427,962],{"class":737},[731,2429,751],{"class":737},[731,2431,1777],{"class":747},[731,2433,751],{"class":737},[731,2435,754],{"class":737},[731,2437,751],{"class":737},[731,2439,1786],{"class":783},[731,2441,751],{"class":737},[731,2443,962],{"class":737},[731,2445,751],{"class":737},[731,2447,1795],{"class":747},[731,2449,751],{"class":737},[731,2451,754],{"class":737},[731,2453,751],{"class":737},[731,2455,1804],{"class":783},[731,2457,751],{"class":737},[731,2459,962],{"class":737},[731,2461,751],{"class":737},[731,2463,1113],{"class":747},[731,2465,751],{"class":737},[731,2467,754],{"class":737},[731,2469,751],{"class":737},[731,2471,1821],{"class":783},[731,2473,751],{"class":737},[731,2475,962],{"class":737},[731,2477,751],{"class":737},[731,2479,1830],{"class":747},[731,2481,751],{"class":737},[731,2483,754],{"class":737},[731,2485,751],{"class":737},[731,2487,682],{"class":783},[731,2489,751],{"class":737},[731,2491,962],{"class":737},[731,2493,751],{"class":737},[731,2495,1847],{"class":747},[731,2497,751],{"class":737},[731,2499,754],{"class":737},[731,2501,1337],{"class":737},[731,2503,962],{"class":737},[731,2505,751],{"class":737},[731,2507,1860],{"class":747},[731,2509,751],{"class":737},[731,2511,754],{"class":737},[731,2513,1337],{"class":737},[731,2515,962],{"class":737},[731,2517,751],{"class":737},[731,2519,1873],{"class":747},[731,2521,751],{"class":737},[731,2523,1146],{"class":737},[731,2525,751],{"class":737},[731,2527,1882],{"class":747},[731,2529,751],{"class":737},[731,2531,754],{"class":737},[731,2533,751],{"class":737},[731,2535,1891],{"class":783},[731,2537,751],{"class":737},[731,2539,962],{"class":737},[731,2541,751],{"class":737},[731,2543,1900],{"class":747},[731,2545,751],{"class":737},[731,2547,754],{"class":737},[731,2549,751],{"class":737},[731,2551,1909],{"class":783},[731,2553,751],{"class":737},[731,2555,962],{"class":737},[731,2557,751],{"class":737},[731,2559,1918],{"class":747},[731,2561,751],{"class":737},[731,2563,1136],{"class":737},[731,2565,751],{"class":737},[731,2567,1927],{"class":747},[731,2569,751],{"class":737},[731,2571,1146],{"class":737},[731,2573,751],{"class":737},[731,2575,1936],{"class":747},[731,2577,751],{"class":737},[731,2579,754],{"class":737},[731,2581,1337],{"class":737},[731,2583,962],{"class":737},[731,2585,751],{"class":737},[731,2587,1949],{"class":747},[731,2589,751],{"class":737},[731,2591,1136],{"class":737},[731,2593,751],{"class":737},[731,2595,1958],{"class":747},[731,2597,751],{"class":737},[731,2599,1146],{"class":737},[731,2601,751],{"class":737},[731,2603,1967],{"class":747},[731,2605,751],{"class":737},[731,2607,754],{"class":737},[731,2609,1337],{"class":737},[731,2611,1976],{"class":737},[45,2613,2615],{"id":2614},"sending-commands-for-devices-and-eon-nodes","Sending Commands for devices and EoN nodes",[12,2617,2618],{},"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.",[665,2620,2621,2624],{},[643,2622,2623],{},"Drag inject node onto the canvas.",[643,2625,2626,2627,2630],{},"Set the ",[53,2628,2629],{},"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:",[722,2632,2634],{"className":724,"code":2633,"language":726,"meta":727,"style":727},"    {\n        \"device\" : {\n            \"death\" : true\n        }\n    }   \n",[53,2635,2636,2641,2657,2671,2675],{"__ignoreMap":727},[731,2637,2638],{"class":733,"line":734},[731,2639,2640],{"class":737},"    {\n",[731,2642,2643,2646,2649,2651,2654],{"class":733,"line":741},[731,2644,2645],{"class":737},"        \"",[731,2647,2648],{"class":747},"device",[731,2650,751],{"class":737},[731,2652,2653],{"class":737}," :",[731,2655,2656],{"class":737}," {\n",[731,2658,2659,2661,2664,2666,2668],{"class":733,"line":760},[731,2660,769],{"class":737},[731,2662,2663],{"class":772},"death",[731,2665,751],{"class":737},[731,2667,2653],{"class":737},[731,2669,2670],{"class":737}," true\n",[731,2672,2673],{"class":733,"line":766},[731,2674,861],{"class":737},[731,2676,2677],{"class":733,"line":792},[731,2678,2679],{"class":737},"    }\n",[12,2681,2682],{},"Alternatively, to send a command that triggers a device's rebirth, use:",[722,2684,2686],{"className":724,"code":2685,"language":726,"meta":727,"style":727},"    {\n        \"device\" : {\n            \"rebirth\" : true\n        }\n    }   \n",[53,2687,2688,2692,2704,2717,2721],{"__ignoreMap":727},[731,2689,2690],{"class":733,"line":734},[731,2691,2640],{"class":737},[731,2693,2694,2696,2698,2700,2702],{"class":733,"line":741},[731,2695,2645],{"class":737},[731,2697,2648],{"class":747},[731,2699,751],{"class":737},[731,2701,2653],{"class":737},[731,2703,2656],{"class":737},[731,2705,2706,2708,2711,2713,2715],{"class":733,"line":760},[731,2707,769],{"class":737},[731,2709,2710],{"class":772},"rebirth",[731,2712,751],{"class":737},[731,2714,2653],{"class":737},[731,2716,2670],{"class":737},[731,2718,2719],{"class":733,"line":766},[731,2720,861],{"class":737},[731,2722,2723],{"class":733,"line":792},[731,2724,2679],{"class":737},[665,2726,2727,2730,2733],{"start":760},[643,2728,2729],{},"Connect the output of the inject node to the input of the relevant mqtt sparkplug device node.",[643,2731,2732],{},"Deploy the flow by clicking the Deploy button at the top-right of the Node-RED interface.",[643,2734,2735],{},"Click the inject node’s button to send the command.",[12,2737,2738,2739,659],{},"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,2740,2742],{"href":648,"rel":2741},[28],"MQTT Sparkplug nodes documentation",[932,2744,2745],{},[722,2746,2748],{"className":724,"code":2747,"language":726,"meta":727,"style":727},"[{\"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,2749,2750],{"__ignoreMap":727},[731,2751,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,2910,2912,2914,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,3001,3003,3005,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3033,3035,3037,3039,3042,3044,3046,3048,3051,3053,3056,3058,3060,3062,3065,3067,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,3150,3152,3154,3157,3159,3161,3163,3165,3167,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,3378,3380,3382,3385,3387,3389,3391,3393,3395,3397,3399,3401,3403,3405,3407,3409,3411,3413,3415,3417,3419,3421,3423,3425,3427,3429,3431,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,3570,3572,3574,3577,3579,3581,3583,3585,3587,3589,3591,3593,3595,3597,3599,3601,3603,3605,3607,3609,3611,3613,3615,3617,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3662,3664,3666,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,4067,4069,4071],{"class":733,"line":734},[731,2753,943],{"class":737},[731,2755,751],{"class":737},[731,2757,948],{"class":747},[731,2759,751],{"class":737},[731,2761,754],{"class":737},[731,2763,751],{"class":737},[731,2765,957],{"class":783},[731,2767,751],{"class":737},[731,2769,962],{"class":737},[731,2771,751],{"class":737},[731,2773,967],{"class":747},[731,2775,751],{"class":737},[731,2777,754],{"class":737},[731,2779,751],{"class":737},[731,2781,976],{"class":783},[731,2783,751],{"class":737},[731,2785,962],{"class":737},[731,2787,751],{"class":737},[731,2789,985],{"class":747},[731,2791,751],{"class":737},[731,2793,754],{"class":737},[731,2795,751],{"class":737},[731,2797,994],{"class":783},[731,2799,751],{"class":737},[731,2801,962],{"class":737},[731,2803,751],{"class":737},[731,2805,773],{"class":747},[731,2807,751],{"class":737},[731,2809,754],{"class":737},[731,2811,751],{"class":737},[731,2813,1011],{"class":783},[731,2815,751],{"class":737},[731,2817,962],{"class":737},[731,2819,751],{"class":737},[731,2821,748],{"class":747},[731,2823,751],{"class":737},[731,2825,1024],{"class":737},[731,2827,751],{"class":737},[731,2829,784],{"class":772},[731,2831,751],{"class":737},[731,2833,1024],{"class":737},[731,2835,751],{"class":737},[731,2837,1037],{"class":808},[731,2839,751],{"class":737},[731,2841,754],{"class":737},[731,2843,751],{"class":737},[731,2845,1046],{"class":783},[731,2847,751],{"class":737},[731,2849,1067],{"class":737},[731,2851,751],{"class":737},[731,2853,836],{"class":772},[731,2855,751],{"class":737},[731,2857,1024],{"class":737},[731,2859,751],{"class":737},[731,2861,1037],{"class":808},[731,2863,751],{"class":737},[731,2865,754],{"class":737},[731,2867,751],{"class":737},[731,2869,1046],{"class":783},[731,2871,751],{"class":737},[731,2873,1108],{"class":737},[731,2875,751],{"class":737},[731,2877,1113],{"class":747},[731,2879,751],{"class":737},[731,2881,754],{"class":737},[731,2883,751],{"class":737},[731,2885,1122],{"class":783},[731,2887,751],{"class":737},[731,2889,962],{"class":737},[731,2891,751],{"class":737},[731,2893,1131],{"class":747},[731,2895,751],{"class":737},[731,2897,1136],{"class":737},[731,2899,751],{"class":737},[731,2901,1141],{"class":747},[731,2903,751],{"class":737},[731,2905,1146],{"class":737},[731,2907,751],{"class":737},[731,2909,1151],{"class":747},[731,2911,751],{"class":737},[731,2913,754],{"class":737},[731,2915,2916],{"class":808},"440",[731,2918,962],{"class":737},[731,2920,751],{"class":737},[731,2922,1165],{"class":747},[731,2924,751],{"class":737},[731,2926,754],{"class":737},[731,2928,1172],{"class":808},[731,2930,962],{"class":737},[731,2932,751],{"class":737},[731,2934,1179],{"class":747},[731,2936,751],{"class":737},[731,2938,1184],{"class":737},[731,2940,751],{"class":737},[731,2942,1189],{"class":783},[731,2944,751],{"class":737},[731,2946,1194],{"class":737},[731,2948,751],{"class":737},[731,2950,948],{"class":747},[731,2952,751],{"class":737},[731,2954,754],{"class":737},[731,2956,751],{"class":737},[731,2958,1207],{"class":783},[731,2960,751],{"class":737},[731,2962,962],{"class":737},[731,2964,751],{"class":737},[731,2966,967],{"class":747},[731,2968,751],{"class":737},[731,2970,754],{"class":737},[731,2972,751],{"class":737},[731,2974,1224],{"class":783},[731,2976,751],{"class":737},[731,2978,962],{"class":737},[731,2980,751],{"class":737},[731,2982,985],{"class":747},[731,2984,751],{"class":737},[731,2986,754],{"class":737},[731,2988,751],{"class":737},[731,2990,994],{"class":783},[731,2992,751],{"class":737},[731,2994,962],{"class":737},[731,2996,751],{"class":737},[731,2998,773],{"class":747},[731,3000,751],{"class":737},[731,3002,754],{"class":737},[731,3004,751],{"class":737},[731,3006,3007],{"class":783},"Send connect command",[731,3009,751],{"class":737},[731,3011,962],{"class":737},[731,3013,751],{"class":737},[731,3015,1266],{"class":747},[731,3017,751],{"class":737},[731,3019,1271],{"class":737},[731,3021,751],{"class":737},[731,3023,12],{"class":772},[731,3025,751],{"class":737},[731,3027,754],{"class":737},[731,3029,751],{"class":737},[731,3031,3032],{"class":783},"command",[731,3034,751],{"class":737},[731,3036,962],{"class":737},[731,3038,751],{"class":737},[731,3040,3041],{"class":772},"v",[731,3043,751],{"class":737},[731,3045,754],{"class":737},[731,3047,751],{"class":737},[731,3049,3050],{"class":783},"{",[731,3052,1403],{"class":804},[731,3054,3055],{"class":783},"node",[731,3057,1403],{"class":804},[731,3059,1024],{"class":783},[731,3061,1403],{"class":804},[731,3063,3064],{"class":783},"connect",[731,3066,1403],{"class":804},[731,3068,3069],{"class":783},":true}}",[731,3071,751],{"class":737},[731,3073,962],{"class":737},[731,3075,751],{"class":737},[731,3077,1311],{"class":772},[731,3079,751],{"class":737},[731,3081,754],{"class":737},[731,3083,751],{"class":737},[731,3085,1480],{"class":783},[731,3087,751],{"class":737},[731,3089,1325],{"class":737},[731,3091,751],{"class":737},[731,3093,1330],{"class":747},[731,3095,751],{"class":737},[731,3097,754],{"class":737},[731,3099,1337],{"class":737},[731,3101,962],{"class":737},[731,3103,751],{"class":737},[731,3105,1344],{"class":747},[731,3107,751],{"class":737},[731,3109,754],{"class":737},[731,3111,1337],{"class":737},[731,3113,962],{"class":737},[731,3115,751],{"class":737},[731,3117,1357],{"class":747},[731,3119,751],{"class":737},[731,3121,1146],{"class":737},[731,3123,751],{"class":737},[731,3125,1366],{"class":747},[731,3127,751],{"class":737},[731,3129,754],{"class":737},[731,3131,1373],{"class":808},[731,3133,962],{"class":737},[731,3135,751],{"class":737},[731,3137,1302],{"class":747},[731,3139,751],{"class":737},[731,3141,754],{"class":737},[731,3143,1337],{"class":737},[731,3145,962],{"class":737},[731,3147,751],{"class":737},[731,3149,1151],{"class":747},[731,3151,751],{"class":737},[731,3153,754],{"class":737},[731,3155,3156],{"class":808},"170",[731,3158,962],{"class":737},[731,3160,751],{"class":737},[731,3162,1165],{"class":747},[731,3164,751],{"class":737},[731,3166,754],{"class":737},[731,3168,3169],{"class":808},"260",[731,3171,962],{"class":737},[731,3173,751],{"class":737},[731,3175,1179],{"class":747},[731,3177,751],{"class":737},[731,3179,1184],{"class":737},[731,3181,751],{"class":737},[731,3183,957],{"class":783},[731,3185,751],{"class":737},[731,3187,1194],{"class":737},[731,3189,751],{"class":737},[731,3191,948],{"class":747},[731,3193,751],{"class":737},[731,3195,754],{"class":737},[731,3197,751],{"class":737},[731,3199,1189],{"class":783},[731,3201,751],{"class":737},[731,3203,962],{"class":737},[731,3205,751],{"class":737},[731,3207,967],{"class":747},[731,3209,751],{"class":737},[731,3211,754],{"class":737},[731,3213,751],{"class":737},[731,3215,1554],{"class":783},[731,3217,751],{"class":737},[731,3219,962],{"class":737},[731,3221,751],{"class":737},[731,3223,985],{"class":747},[731,3225,751],{"class":737},[731,3227,754],{"class":737},[731,3229,751],{"class":737},[731,3231,994],{"class":783},[731,3233,751],{"class":737},[731,3235,962],{"class":737},[731,3237,751],{"class":737},[731,3239,773],{"class":747},[731,3241,751],{"class":737},[731,3243,754],{"class":737},[731,3245,1337],{"class":737},[731,3247,962],{"class":737},[731,3249,751],{"class":737},[731,3251,1591],{"class":747},[731,3253,751],{"class":737},[731,3255,1136],{"class":737},[731,3257,751],{"class":737},[731,3259,1600],{"class":747},[731,3261,751],{"class":737},[731,3263,1136],{"class":737},[731,3265,751],{"class":737},[731,3267,1609],{"class":747},[731,3269,751],{"class":737},[731,3271,1146],{"class":737},[731,3273,751],{"class":737},[731,3275,1618],{"class":747},[731,3277,751],{"class":737},[731,3279,1146],{"class":737},[731,3281,751],{"class":737},[731,3283,1627],{"class":747},[731,3285,751],{"class":737},[731,3287,754],{"class":737},[731,3289,751],{"class":737},[731,3291,1284],{"class":783},[731,3293,751],{"class":737},[731,3295,962],{"class":737},[731,3297,751],{"class":737},[731,3299,1644],{"class":747},[731,3301,751],{"class":737},[731,3303,754],{"class":737},[731,3305,751],{"class":737},[731,3307,1653],{"class":783},[731,3309,751],{"class":737},[731,3311,962],{"class":737},[731,3313,751],{"class":737},[731,3315,1662],{"class":747},[731,3317,751],{"class":737},[731,3319,754],{"class":737},[731,3321,1337],{"class":737},[731,3323,962],{"class":737},[731,3325,751],{"class":737},[731,3327,1675],{"class":747},[731,3329,751],{"class":737},[731,3331,754],{"class":737},[731,3333,751],{"class":737},[731,3335,1684],{"class":783},[731,3337,751],{"class":737},[731,3339,962],{"class":737},[731,3341,751],{"class":737},[731,3343,1151],{"class":747},[731,3345,751],{"class":737},[731,3347,754],{"class":737},[731,3349,1699],{"class":808},[731,3351,962],{"class":737},[731,3353,751],{"class":737},[731,3355,1165],{"class":747},[731,3357,751],{"class":737},[731,3359,754],{"class":737},[731,3361,1172],{"class":808},[731,3363,962],{"class":737},[731,3365,751],{"class":737},[731,3367,1179],{"class":747},[731,3369,751],{"class":737},[731,3371,1722],{"class":737},[731,3373,751],{"class":737},[731,3375,948],{"class":747},[731,3377,751],{"class":737},[731,3379,754],{"class":737},[731,3381,751],{"class":737},[731,3383,3384],{"class":783},"915ca0772eebee04",[731,3386,751],{"class":737},[731,3388,962],{"class":737},[731,3390,751],{"class":737},[731,3392,967],{"class":747},[731,3394,751],{"class":737},[731,3396,754],{"class":737},[731,3398,751],{"class":737},[731,3400,1224],{"class":783},[731,3402,751],{"class":737},[731,3404,962],{"class":737},[731,3406,751],{"class":737},[731,3408,985],{"class":747},[731,3410,751],{"class":737},[731,3412,754],{"class":737},[731,3414,751],{"class":737},[731,3416,994],{"class":783},[731,3418,751],{"class":737},[731,3420,962],{"class":737},[731,3422,751],{"class":737},[731,3424,773],{"class":747},[731,3426,751],{"class":737},[731,3428,754],{"class":737},[731,3430,751],{"class":737},[731,3432,3433],{"class":783},"Send rebirth command",[731,3435,751],{"class":737},[731,3437,962],{"class":737},[731,3439,751],{"class":737},[731,3441,1266],{"class":747},[731,3443,751],{"class":737},[731,3445,1271],{"class":737},[731,3447,751],{"class":737},[731,3449,12],{"class":772},[731,3451,751],{"class":737},[731,3453,754],{"class":737},[731,3455,751],{"class":737},[731,3457,3032],{"class":783},[731,3459,751],{"class":737},[731,3461,962],{"class":737},[731,3463,751],{"class":737},[731,3465,3041],{"class":772},[731,3467,751],{"class":737},[731,3469,754],{"class":737},[731,3471,751],{"class":737},[731,3473,3050],{"class":783},[731,3475,1403],{"class":804},[731,3477,2648],{"class":783},[731,3479,1403],{"class":804},[731,3481,1024],{"class":783},[731,3483,1403],{"class":804},[731,3485,2710],{"class":783},[731,3487,1403],{"class":804},[731,3489,3069],{"class":783},[731,3491,751],{"class":737},[731,3493,962],{"class":737},[731,3495,751],{"class":737},[731,3497,1311],{"class":772},[731,3499,751],{"class":737},[731,3501,754],{"class":737},[731,3503,751],{"class":737},[731,3505,726],{"class":783},[731,3507,751],{"class":737},[731,3509,1325],{"class":737},[731,3511,751],{"class":737},[731,3513,1330],{"class":747},[731,3515,751],{"class":737},[731,3517,754],{"class":737},[731,3519,1337],{"class":737},[731,3521,962],{"class":737},[731,3523,751],{"class":737},[731,3525,1344],{"class":747},[731,3527,751],{"class":737},[731,3529,754],{"class":737},[731,3531,1337],{"class":737},[731,3533,962],{"class":737},[731,3535,751],{"class":737},[731,3537,1357],{"class":747},[731,3539,751],{"class":737},[731,3541,1146],{"class":737},[731,3543,751],{"class":737},[731,3545,1366],{"class":747},[731,3547,751],{"class":737},[731,3549,754],{"class":737},[731,3551,1373],{"class":808},[731,3553,962],{"class":737},[731,3555,751],{"class":737},[731,3557,1302],{"class":747},[731,3559,751],{"class":737},[731,3561,754],{"class":737},[731,3563,1337],{"class":737},[731,3565,962],{"class":737},[731,3567,751],{"class":737},[731,3569,1151],{"class":747},[731,3571,751],{"class":737},[731,3573,754],{"class":737},[731,3575,3576],{"class":808},"160",[731,3578,962],{"class":737},[731,3580,751],{"class":737},[731,3582,1165],{"class":747},[731,3584,751],{"class":737},[731,3586,754],{"class":737},[731,3588,1172],{"class":808},[731,3590,962],{"class":737},[731,3592,751],{"class":737},[731,3594,1179],{"class":747},[731,3596,751],{"class":737},[731,3598,1184],{"class":737},[731,3600,751],{"class":737},[731,3602,957],{"class":783},[731,3604,751],{"class":737},[731,3606,1194],{"class":737},[731,3608,751],{"class":737},[731,3610,948],{"class":747},[731,3612,751],{"class":737},[731,3614,754],{"class":737},[731,3616,751],{"class":737},[731,3618,3619],{"class":783},"696db58cc9eb029d",[731,3621,751],{"class":737},[731,3623,962],{"class":737},[731,3625,751],{"class":737},[731,3627,967],{"class":747},[731,3629,751],{"class":737},[731,3631,754],{"class":737},[731,3633,751],{"class":737},[731,3635,1224],{"class":783},[731,3637,751],{"class":737},[731,3639,962],{"class":737},[731,3641,751],{"class":737},[731,3643,985],{"class":747},[731,3645,751],{"class":737},[731,3647,754],{"class":737},[731,3649,751],{"class":737},[731,3651,994],{"class":783},[731,3653,751],{"class":737},[731,3655,962],{"class":737},[731,3657,751],{"class":737},[731,3659,773],{"class":747},[731,3661,751],{"class":737},[731,3663,754],{"class":737},[731,3665,751],{"class":737},[731,3667,3668],{"class":783},"Send death command",[731,3670,751],{"class":737},[731,3672,962],{"class":737},[731,3674,751],{"class":737},[731,3676,1266],{"class":747},[731,3678,751],{"class":737},[731,3680,1271],{"class":737},[731,3682,751],{"class":737},[731,3684,12],{"class":772},[731,3686,751],{"class":737},[731,3688,754],{"class":737},[731,3690,751],{"class":737},[731,3692,3032],{"class":783},[731,3694,751],{"class":737},[731,3696,962],{"class":737},[731,3698,751],{"class":737},[731,3700,3041],{"class":772},[731,3702,751],{"class":737},[731,3704,754],{"class":737},[731,3706,751],{"class":737},[731,3708,3050],{"class":783},[731,3710,1403],{"class":804},[731,3712,2648],{"class":783},[731,3714,1403],{"class":804},[731,3716,1024],{"class":783},[731,3718,1403],{"class":804},[731,3720,2663],{"class":783},[731,3722,1403],{"class":804},[731,3724,3069],{"class":783},[731,3726,751],{"class":737},[731,3728,962],{"class":737},[731,3730,751],{"class":737},[731,3732,1311],{"class":772},[731,3734,751],{"class":737},[731,3736,754],{"class":737},[731,3738,751],{"class":737},[731,3740,726],{"class":783},[731,3742,751],{"class":737},[731,3744,1325],{"class":737},[731,3746,751],{"class":737},[731,3748,1330],{"class":747},[731,3750,751],{"class":737},[731,3752,754],{"class":737},[731,3754,1337],{"class":737},[731,3756,962],{"class":737},[731,3758,751],{"class":737},[731,3760,1344],{"class":747},[731,3762,751],{"class":737},[731,3764,754],{"class":737},[731,3766,1337],{"class":737},[731,3768,962],{"class":737},[731,3770,751],{"class":737},[731,3772,1357],{"class":747},[731,3774,751],{"class":737},[731,3776,1146],{"class":737},[731,3778,751],{"class":737},[731,3780,1366],{"class":747},[731,3782,751],{"class":737},[731,3784,754],{"class":737},[731,3786,1373],{"class":808},[731,3788,962],{"class":737},[731,3790,751],{"class":737},[731,3792,1302],{"class":747},[731,3794,751],{"class":737},[731,3796,754],{"class":737},[731,3798,1337],{"class":737},[731,3800,962],{"class":737},[731,3802,751],{"class":737},[731,3804,1151],{"class":747},[731,3806,751],{"class":737},[731,3808,754],{"class":737},[731,3810,3576],{"class":808},[731,3812,962],{"class":737},[731,3814,751],{"class":737},[731,3816,1165],{"class":747},[731,3818,751],{"class":737},[731,3820,754],{"class":737},[731,3822,1158],{"class":808},[731,3824,962],{"class":737},[731,3826,751],{"class":737},[731,3828,1179],{"class":747},[731,3830,751],{"class":737},[731,3832,1184],{"class":737},[731,3834,751],{"class":737},[731,3836,957],{"class":783},[731,3838,751],{"class":737},[731,3840,1194],{"class":737},[731,3842,751],{"class":737},[731,3844,948],{"class":747},[731,3846,751],{"class":737},[731,3848,754],{"class":737},[731,3850,751],{"class":737},[731,3852,1122],{"class":783},[731,3854,751],{"class":737},[731,3856,962],{"class":737},[731,3858,751],{"class":737},[731,3860,967],{"class":747},[731,3862,751],{"class":737},[731,3864,754],{"class":737},[731,3866,751],{"class":737},[731,3868,1751],{"class":783},[731,3870,751],{"class":737},[731,3872,962],{"class":737},[731,3874,751],{"class":737},[731,3876,773],{"class":747},[731,3878,751],{"class":737},[731,3880,754],{"class":737},[731,3882,751],{"class":737},[731,3884,1768],{"class":783},[731,3886,751],{"class":737},[731,3888,962],{"class":737},[731,3890,751],{"class":737},[731,3892,1777],{"class":747},[731,3894,751],{"class":737},[731,3896,754],{"class":737},[731,3898,751],{"class":737},[731,3900,1786],{"class":783},[731,3902,751],{"class":737},[731,3904,962],{"class":737},[731,3906,751],{"class":737},[731,3908,1795],{"class":747},[731,3910,751],{"class":737},[731,3912,754],{"class":737},[731,3914,751],{"class":737},[731,3916,1804],{"class":783},[731,3918,751],{"class":737},[731,3920,962],{"class":737},[731,3922,751],{"class":737},[731,3924,1113],{"class":747},[731,3926,751],{"class":737},[731,3928,754],{"class":737},[731,3930,751],{"class":737},[731,3932,1821],{"class":783},[731,3934,751],{"class":737},[731,3936,962],{"class":737},[731,3938,751],{"class":737},[731,3940,1830],{"class":747},[731,3942,751],{"class":737},[731,3944,754],{"class":737},[731,3946,751],{"class":737},[731,3948,682],{"class":783},[731,3950,751],{"class":737},[731,3952,962],{"class":737},[731,3954,751],{"class":737},[731,3956,1847],{"class":747},[731,3958,751],{"class":737},[731,3960,754],{"class":737},[731,3962,1337],{"class":737},[731,3964,962],{"class":737},[731,3966,751],{"class":737},[731,3968,1860],{"class":747},[731,3970,751],{"class":737},[731,3972,754],{"class":737},[731,3974,1337],{"class":737},[731,3976,962],{"class":737},[731,3978,751],{"class":737},[731,3980,1873],{"class":747},[731,3982,751],{"class":737},[731,3984,1146],{"class":737},[731,3986,751],{"class":737},[731,3988,1882],{"class":747},[731,3990,751],{"class":737},[731,3992,754],{"class":737},[731,3994,751],{"class":737},[731,3996,1891],{"class":783},[731,3998,751],{"class":737},[731,4000,962],{"class":737},[731,4002,751],{"class":737},[731,4004,1900],{"class":747},[731,4006,751],{"class":737},[731,4008,754],{"class":737},[731,4010,751],{"class":737},[731,4012,1909],{"class":783},[731,4014,751],{"class":737},[731,4016,962],{"class":737},[731,4018,751],{"class":737},[731,4020,1918],{"class":747},[731,4022,751],{"class":737},[731,4024,1136],{"class":737},[731,4026,751],{"class":737},[731,4028,1927],{"class":747},[731,4030,751],{"class":737},[731,4032,1146],{"class":737},[731,4034,751],{"class":737},[731,4036,1936],{"class":747},[731,4038,751],{"class":737},[731,4040,754],{"class":737},[731,4042,1337],{"class":737},[731,4044,962],{"class":737},[731,4046,751],{"class":737},[731,4048,1949],{"class":747},[731,4050,751],{"class":737},[731,4052,1136],{"class":737},[731,4054,751],{"class":737},[731,4056,1958],{"class":747},[731,4058,751],{"class":737},[731,4060,1136],{"class":737},[731,4062,751],{"class":737},[731,4064,1967],{"class":747},[731,4066,751],{"class":737},[731,4068,754],{"class":737},[731,4070,1337],{"class":737},[731,4072,1976],{"class":737},[12,4074,4075],{},"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.",[932,4077,4078],{},[722,4079,4081],{"className":724,"code":4080,"language":726,"meta":727,"style":727},"[{\"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,4082,4083],{"__ignoreMap":727},[731,4084,4085,4087,4089,4091,4093,4095,4097,4100,4102,4104,4106,4108,4110,4112,4114,4116,4118,4120,4122,4124,4126,4128,4130,4133,4135,4137,4139,4141,4143,4145,4147,4149,4151,4153,4155,4157,4159,4162,4164,4166,4168,4170,4172,4174,4176,4178,4180,4182,4184,4186,4188,4190,4192,4194,4196,4198,4200,4202,4204,4206,4209,4211,4213,4215,4217,4219,4222,4224,4226,4228,4230,4232,4234,4237,4239,4241,4243,4245,4247,4249,4251,4254,4256,4258,4260,4262,4264,4266,4268,4271,4273,4275,4277,4279,4281,4283,4285,4287,4289,4291,4293,4295,4297,4299,4301,4303,4305,4307,4309,4311,4313,4316,4318,4320,4322,4324,4326,4328,4330,4332,4334,4337,4339,4341,4343,4345,4347,4349,4351,4353,4355,4357,4359,4361,4363,4365,4367,4369,4372,4374,4376,4378,4380,4382,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,4493,4495,4497,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4526,4528,4530,4532,4534,4536,4538,4540,4543,4545,4547,4549,4551,4553,4555,4557,4559,4561,4563,4565,4567,4569,4571,4573,4575,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,4748,4750,4752,4755,4757,4759,4761,4763,4765,4767,4769,4772,4774,4776,4778,4780,4782,4784,4786,4788,4790,4792,4794,4796,4798,4800,4802,4804,4806,4808,4810,4813,4815,4817,4819,4821,4823,4825,4827,4829,4831,4833,4835,4837,4839,4841,4843,4845,4847,4849,4851,4853,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,5100,5102,5104],{"class":733,"line":734},[731,4086,943],{"class":737},[731,4088,751],{"class":737},[731,4090,948],{"class":747},[731,4092,751],{"class":737},[731,4094,754],{"class":737},[731,4096,751],{"class":737},[731,4098,4099],{"class":783},"bbe3765e67eed956",[731,4101,751],{"class":737},[731,4103,962],{"class":737},[731,4105,751],{"class":737},[731,4107,967],{"class":747},[731,4109,751],{"class":737},[731,4111,754],{"class":737},[731,4113,751],{"class":737},[731,4115,2063],{"class":783},[731,4117,751],{"class":737},[731,4119,962],{"class":737},[731,4121,751],{"class":737},[731,4123,985],{"class":747},[731,4125,751],{"class":737},[731,4127,754],{"class":737},[731,4129,751],{"class":737},[731,4131,4132],{"class":783},"f098830cc10afc2f",[731,4134,751],{"class":737},[731,4136,962],{"class":737},[731,4138,751],{"class":737},[731,4140,773],{"class":747},[731,4142,751],{"class":737},[731,4144,754],{"class":737},[731,4146,1337],{"class":737},[731,4148,962],{"class":737},[731,4150,751],{"class":737},[731,4152,1302],{"class":747},[731,4154,751],{"class":737},[731,4156,754],{"class":737},[731,4158,751],{"class":737},[731,4160,4161],{"class":783},"spBv1.0\u002F+\u002F+\u002F#",[731,4163,751],{"class":737},[731,4165,962],{"class":737},[731,4167,751],{"class":737},[731,4169,2117],{"class":747},[731,4171,751],{"class":737},[731,4173,754],{"class":737},[731,4175,751],{"class":737},[731,4177,2126],{"class":783},[731,4179,751],{"class":737},[731,4181,962],{"class":737},[731,4183,751],{"class":737},[731,4185,1113],{"class":747},[731,4187,751],{"class":737},[731,4189,754],{"class":737},[731,4191,751],{"class":737},[731,4193,1122],{"class":783},[731,4195,751],{"class":737},[731,4197,962],{"class":737},[731,4199,751],{"class":737},[731,4201,1151],{"class":747},[731,4203,751],{"class":737},[731,4205,754],{"class":737},[731,4207,4208],{"class":808},"150",[731,4210,962],{"class":737},[731,4212,751],{"class":737},[731,4214,1165],{"class":747},[731,4216,751],{"class":737},[731,4218,754],{"class":737},[731,4220,4221],{"class":808},"100",[731,4223,962],{"class":737},[731,4225,751],{"class":737},[731,4227,1179],{"class":747},[731,4229,751],{"class":737},[731,4231,1184],{"class":737},[731,4233,751],{"class":737},[731,4235,4236],{"class":783},"d45ff4446380beaa",[731,4238,751],{"class":737},[731,4240,1194],{"class":737},[731,4242,751],{"class":737},[731,4244,948],{"class":747},[731,4246,751],{"class":737},[731,4248,754],{"class":737},[731,4250,751],{"class":737},[731,4252,4253],{"class":783},"3b2b9788c51d5c3b",[731,4255,751],{"class":737},[731,4257,962],{"class":737},[731,4259,751],{"class":737},[731,4261,967],{"class":747},[731,4263,751],{"class":737},[731,4265,754],{"class":737},[731,4267,751],{"class":737},[731,4269,4270],{"class":783},"mqtt sparkplug out",[731,4272,751],{"class":737},[731,4274,962],{"class":737},[731,4276,751],{"class":737},[731,4278,985],{"class":747},[731,4280,751],{"class":737},[731,4282,754],{"class":737},[731,4284,751],{"class":737},[731,4286,4132],{"class":783},[731,4288,751],{"class":737},[731,4290,962],{"class":737},[731,4292,751],{"class":737},[731,4294,773],{"class":747},[731,4296,751],{"class":737},[731,4298,754],{"class":737},[731,4300,1337],{"class":737},[731,4302,962],{"class":737},[731,4304,751],{"class":737},[731,4306,1302],{"class":747},[731,4308,751],{"class":737},[731,4310,754],{"class":737},[731,4312,751],{"class":737},[731,4314,4315],{"class":783},"spBv1.0\u002FMy Devices\u002FNDATA\u002FNode-Red",[731,4317,751],{"class":737},[731,4319,962],{"class":737},[731,4321,751],{"class":737},[731,4323,2117],{"class":747},[731,4325,751],{"class":737},[731,4327,754],{"class":737},[731,4329,1337],{"class":737},[731,4331,962],{"class":737},[731,4333,751],{"class":737},[731,4335,4336],{"class":747},"retain",[731,4338,751],{"class":737},[731,4340,754],{"class":737},[731,4342,1337],{"class":737},[731,4344,962],{"class":737},[731,4346,751],{"class":737},[731,4348,1113],{"class":747},[731,4350,751],{"class":737},[731,4352,754],{"class":737},[731,4354,751],{"class":737},[731,4356,1122],{"class":783},[731,4358,751],{"class":737},[731,4360,962],{"class":737},[731,4362,751],{"class":737},[731,4364,1151],{"class":747},[731,4366,751],{"class":737},[731,4368,754],{"class":737},[731,4370,4371],{"class":808},"510",[731,4373,962],{"class":737},[731,4375,751],{"class":737},[731,4377,1165],{"class":747},[731,4379,751],{"class":737},[731,4381,754],{"class":737},[731,4383,4384],{"class":808},"200",[731,4386,962],{"class":737},[731,4388,751],{"class":737},[731,4390,1179],{"class":747},[731,4392,751],{"class":737},[731,4394,1722],{"class":737},[731,4396,751],{"class":737},[731,4398,948],{"class":747},[731,4400,751],{"class":737},[731,4402,754],{"class":737},[731,4404,751],{"class":737},[731,4406,4236],{"class":783},[731,4408,751],{"class":737},[731,4410,962],{"class":737},[731,4412,751],{"class":737},[731,4414,967],{"class":747},[731,4416,751],{"class":737},[731,4418,754],{"class":737},[731,4420,751],{"class":737},[731,4422,1554],{"class":783},[731,4424,751],{"class":737},[731,4426,962],{"class":737},[731,4428,751],{"class":737},[731,4430,985],{"class":747},[731,4432,751],{"class":737},[731,4434,754],{"class":737},[731,4436,751],{"class":737},[731,4438,4132],{"class":783},[731,4440,751],{"class":737},[731,4442,962],{"class":737},[731,4444,751],{"class":737},[731,4446,773],{"class":747},[731,4448,751],{"class":737},[731,4450,754],{"class":737},[731,4452,1337],{"class":737},[731,4454,962],{"class":737},[731,4456,751],{"class":737},[731,4458,1591],{"class":747},[731,4460,751],{"class":737},[731,4462,1136],{"class":737},[731,4464,751],{"class":737},[731,4466,1600],{"class":747},[731,4468,751],{"class":737},[731,4470,1136],{"class":737},[731,4472,751],{"class":737},[731,4474,1609],{"class":747},[731,4476,751],{"class":737},[731,4478,1146],{"class":737},[731,4480,751],{"class":737},[731,4482,1618],{"class":747},[731,4484,751],{"class":737},[731,4486,1146],{"class":737},[731,4488,751],{"class":737},[731,4490,1627],{"class":747},[731,4492,751],{"class":737},[731,4494,754],{"class":737},[731,4496,751],{"class":737},[731,4498,4499],{"class":783},"false",[731,4501,751],{"class":737},[731,4503,962],{"class":737},[731,4505,751],{"class":737},[731,4507,1662],{"class":747},[731,4509,751],{"class":737},[731,4511,754],{"class":737},[731,4513,1337],{"class":737},[731,4515,962],{"class":737},[731,4517,751],{"class":737},[731,4519,1675],{"class":747},[731,4521,751],{"class":737},[731,4523,754],{"class":737},[731,4525,751],{"class":737},[731,4527,1684],{"class":783},[731,4529,751],{"class":737},[731,4531,962],{"class":737},[731,4533,751],{"class":737},[731,4535,1151],{"class":747},[731,4537,751],{"class":737},[731,4539,754],{"class":737},[731,4541,4542],{"class":808},"410",[731,4544,962],{"class":737},[731,4546,751],{"class":737},[731,4548,1165],{"class":747},[731,4550,751],{"class":737},[731,4552,754],{"class":737},[731,4554,4221],{"class":808},[731,4556,962],{"class":737},[731,4558,751],{"class":737},[731,4560,1179],{"class":747},[731,4562,751],{"class":737},[731,4564,1722],{"class":737},[731,4566,751],{"class":737},[731,4568,948],{"class":747},[731,4570,751],{"class":737},[731,4572,754],{"class":737},[731,4574,751],{"class":737},[731,4576,4577],{"class":783},"dc73048fd385783a",[731,4579,751],{"class":737},[731,4581,962],{"class":737},[731,4583,751],{"class":737},[731,4585,967],{"class":747},[731,4587,751],{"class":737},[731,4589,754],{"class":737},[731,4591,751],{"class":737},[731,4593,1224],{"class":783},[731,4595,751],{"class":737},[731,4597,962],{"class":737},[731,4599,751],{"class":737},[731,4601,985],{"class":747},[731,4603,751],{"class":737},[731,4605,754],{"class":737},[731,4607,751],{"class":737},[731,4609,4132],{"class":783},[731,4611,751],{"class":737},[731,4613,962],{"class":737},[731,4615,751],{"class":737},[731,4617,773],{"class":747},[731,4619,751],{"class":737},[731,4621,754],{"class":737},[731,4623,751],{"class":737},[731,4625,1257],{"class":783},[731,4627,751],{"class":737},[731,4629,962],{"class":737},[731,4631,751],{"class":737},[731,4633,1266],{"class":747},[731,4635,751],{"class":737},[731,4637,1271],{"class":737},[731,4639,751],{"class":737},[731,4641,12],{"class":772},[731,4643,751],{"class":737},[731,4645,754],{"class":737},[731,4647,751],{"class":737},[731,4649,1284],{"class":783},[731,4651,751],{"class":737},[731,4653,1325],{"class":737},[731,4655,751],{"class":737},[731,4657,1330],{"class":747},[731,4659,751],{"class":737},[731,4661,754],{"class":737},[731,4663,1337],{"class":737},[731,4665,962],{"class":737},[731,4667,751],{"class":737},[731,4669,1344],{"class":747},[731,4671,751],{"class":737},[731,4673,754],{"class":737},[731,4675,1337],{"class":737},[731,4677,962],{"class":737},[731,4679,751],{"class":737},[731,4681,1357],{"class":747},[731,4683,751],{"class":737},[731,4685,1146],{"class":737},[731,4687,751],{"class":737},[731,4689,1366],{"class":747},[731,4691,751],{"class":737},[731,4693,754],{"class":737},[731,4695,1373],{"class":808},[731,4697,962],{"class":737},[731,4699,751],{"class":737},[731,4701,1302],{"class":747},[731,4703,751],{"class":737},[731,4705,754],{"class":737},[731,4707,1337],{"class":737},[731,4709,962],{"class":737},[731,4711,751],{"class":737},[731,4713,1284],{"class":747},[731,4715,751],{"class":737},[731,4717,754],{"class":737},[731,4719,751],{"class":737},[731,4721,1400],{"class":783},[731,4723,1403],{"class":804},[731,4725,748],{"class":783},[731,4727,1403],{"class":804},[731,4729,1410],{"class":783},[731,4731,1403],{"class":804},[731,4733,773],{"class":783},[731,4735,1403],{"class":804},[731,4737,1419],{"class":783},[731,4739,1403],{"class":804},[731,4741,784],{"class":783},[731,4743,1403],{"class":804},[731,4745,1428],{"class":783},[731,4747,1403],{"class":804},[731,4749,797],{"class":783},[731,4751,1403],{"class":804},[731,4753,4754],{"class":783},": $random(),            ",[731,4756,1403],{"class":804},[731,4758,967],{"class":783},[731,4760,1403],{"class":804},[731,4762,1419],{"class":783},[731,4764,1403],{"class":804},[731,4766,1046],{"class":783},[731,4768,1403],{"class":804},[731,4770,4771],{"class":783},"        },        {            ",[731,4773,1403],{"class":804},[731,4775,773],{"class":783},[731,4777,1403],{"class":804},[731,4779,1419],{"class":783},[731,4781,1403],{"class":804},[731,4783,836],{"class":783},[731,4785,1403],{"class":804},[731,4787,1428],{"class":783},[731,4789,1403],{"class":804},[731,4791,797],{"class":783},[731,4793,1403],{"class":804},[731,4795,4754],{"class":783},[731,4797,1403],{"class":804},[731,4799,967],{"class":783},[731,4801,1403],{"class":804},[731,4803,1419],{"class":783},[731,4805,1403],{"class":804},[731,4807,1046],{"class":783},[731,4809,1403],{"class":804},[731,4811,4812],{"class":783},"        }    ]}",[731,4814,751],{"class":737},[731,4816,962],{"class":737},[731,4818,751],{"class":737},[731,4820,1471],{"class":747},[731,4822,751],{"class":737},[731,4824,754],{"class":737},[731,4826,751],{"class":737},[731,4828,1480],{"class":783},[731,4830,751],{"class":737},[731,4832,962],{"class":737},[731,4834,751],{"class":737},[731,4836,1151],{"class":747},[731,4838,751],{"class":737},[731,4840,754],{"class":737},[731,4842,3156],{"class":808},[731,4844,962],{"class":737},[731,4846,751],{"class":737},[731,4848,1165],{"class":747},[731,4850,751],{"class":737},[731,4852,754],{"class":737},[731,4854,4855],{"class":808},"220",[731,4857,962],{"class":737},[731,4859,751],{"class":737},[731,4861,1179],{"class":747},[731,4863,751],{"class":737},[731,4865,1184],{"class":737},[731,4867,751],{"class":737},[731,4869,4253],{"class":783},[731,4871,751],{"class":737},[731,4873,1194],{"class":737},[731,4875,751],{"class":737},[731,4877,948],{"class":747},[731,4879,751],{"class":737},[731,4881,754],{"class":737},[731,4883,751],{"class":737},[731,4885,1122],{"class":783},[731,4887,751],{"class":737},[731,4889,962],{"class":737},[731,4891,751],{"class":737},[731,4893,967],{"class":747},[731,4895,751],{"class":737},[731,4897,754],{"class":737},[731,4899,751],{"class":737},[731,4901,1751],{"class":783},[731,4903,751],{"class":737},[731,4905,962],{"class":737},[731,4907,751],{"class":737},[731,4909,773],{"class":747},[731,4911,751],{"class":737},[731,4913,754],{"class":737},[731,4915,751],{"class":737},[731,4917,1768],{"class":783},[731,4919,751],{"class":737},[731,4921,962],{"class":737},[731,4923,751],{"class":737},[731,4925,1777],{"class":747},[731,4927,751],{"class":737},[731,4929,754],{"class":737},[731,4931,751],{"class":737},[731,4933,1786],{"class":783},[731,4935,751],{"class":737},[731,4937,962],{"class":737},[731,4939,751],{"class":737},[731,4941,1795],{"class":747},[731,4943,751],{"class":737},[731,4945,754],{"class":737},[731,4947,751],{"class":737},[731,4949,1804],{"class":783},[731,4951,751],{"class":737},[731,4953,962],{"class":737},[731,4955,751],{"class":737},[731,4957,1113],{"class":747},[731,4959,751],{"class":737},[731,4961,754],{"class":737},[731,4963,751],{"class":737},[731,4965,1821],{"class":783},[731,4967,751],{"class":737},[731,4969,962],{"class":737},[731,4971,751],{"class":737},[731,4973,1830],{"class":747},[731,4975,751],{"class":737},[731,4977,754],{"class":737},[731,4979,751],{"class":737},[731,4981,682],{"class":783},[731,4983,751],{"class":737},[731,4985,962],{"class":737},[731,4987,751],{"class":737},[731,4989,1847],{"class":747},[731,4991,751],{"class":737},[731,4993,754],{"class":737},[731,4995,1337],{"class":737},[731,4997,962],{"class":737},[731,4999,751],{"class":737},[731,5001,1860],{"class":747},[731,5003,751],{"class":737},[731,5005,754],{"class":737},[731,5007,1337],{"class":737},[731,5009,962],{"class":737},[731,5011,751],{"class":737},[731,5013,1873],{"class":747},[731,5015,751],{"class":737},[731,5017,1146],{"class":737},[731,5019,751],{"class":737},[731,5021,1882],{"class":747},[731,5023,751],{"class":737},[731,5025,754],{"class":737},[731,5027,751],{"class":737},[731,5029,1891],{"class":783},[731,5031,751],{"class":737},[731,5033,962],{"class":737},[731,5035,751],{"class":737},[731,5037,1900],{"class":747},[731,5039,751],{"class":737},[731,5041,754],{"class":737},[731,5043,751],{"class":737},[731,5045,1909],{"class":783},[731,5047,751],{"class":737},[731,5049,962],{"class":737},[731,5051,751],{"class":737},[731,5053,1918],{"class":747},[731,5055,751],{"class":737},[731,5057,1136],{"class":737},[731,5059,751],{"class":737},[731,5061,1927],{"class":747},[731,5063,751],{"class":737},[731,5065,1146],{"class":737},[731,5067,751],{"class":737},[731,5069,1936],{"class":747},[731,5071,751],{"class":737},[731,5073,754],{"class":737},[731,5075,1337],{"class":737},[731,5077,962],{"class":737},[731,5079,751],{"class":737},[731,5081,1949],{"class":747},[731,5083,751],{"class":737},[731,5085,1136],{"class":737},[731,5087,751],{"class":737},[731,5089,1958],{"class":747},[731,5091,751],{"class":737},[731,5093,1146],{"class":737},[731,5095,751],{"class":737},[731,5097,1967],{"class":747},[731,5099,751],{"class":737},[731,5101,754],{"class":737},[731,5103,1337],{"class":737},[731,5105,1976],{"class":737},[12,5107,5108,5113],{},[71,5109],{"alt":5110,"src":5111,"title":5112},"\"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,5114,5112],{},[16,5116,5118],{"id":5117},"best-practices-for-production-deployments","Best Practices for Production Deployments",[12,5120,5121],{},"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.",[640,5123,5124,5130,5141,5147,5157,5163,5169],{},[643,5125,5126,5129],{},[289,5127,5128],{},"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.",[643,5131,5132,5135,5136,139,5138,5140],{},[289,5133,5134],{},"Birth messages are non-negotiable","\nAlways send ",[53,5137,117],{},[53,5139,223],{}," on start and reconnect. If apps don’t see a birth, they don’t trust the data.",[643,5142,5143,5146],{},[289,5144,5145],{},"Alias your metrics","\nTurn on metric aliasing to cut payload size and keep networks fast and efficient.",[643,5148,5149,5152,139,5154,5156],{},[289,5150,5151],{},"Listen for Death messages",[53,5153,230],{},[53,5155,234],{}," are early warning signals. Use them to detect failures instantly.",[643,5158,5159,5162],{},[289,5160,5161],{},"Buffer with intent","\nStore-and-forward is great for flaky networks, just don’t let backlogs pile up unchecked.",[643,5164,5165,5168],{},[289,5166,5167],{},"Lock down MQTT early","\nUse TLS, authentication, and topic permissions from day one. Security is easier before go-live.",[643,5170,5171,5174],{},[289,5172,5173],{},"Break it on purpose","\nRestart brokers and edge nodes during testing. A system that recovers cleanly is production-ready.",[16,5176,5178],{"id":5177},"conclusion","Conclusion",[12,5180,5181],{},"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,5183,5184],{},"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,5186,5187,5188,5191],{},"For teams looking to get Sparkplug B up and running quickly, ",[24,5189,619],{"href":625,"rel":5190},[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.",[5193,5194,5195],"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":727,"searchDepth":766,"depth":766,"links":5197},[5198,5201,5206,5214,5215,5222,5223],{"id":18,"depth":741,"text":19,"children":5199},[5200],{"id":47,"depth":760,"text":48},{"id":97,"depth":741,"text":98,"children":5202},[5203,5204,5205],{"id":104,"depth":760,"text":105},{"id":121,"depth":760,"text":122},{"id":131,"depth":760,"text":132},{"id":163,"depth":741,"text":164,"children":5207},[5208,5209,5210,5211,5212,5213],{"id":173,"depth":760,"text":164},{"id":179,"depth":760,"text":180},{"id":201,"depth":760,"text":202},{"id":213,"depth":760,"text":214},{"id":238,"depth":760,"text":239},{"id":248,"depth":760,"text":249},{"id":278,"depth":741,"text":279},{"id":602,"depth":741,"text":603,"children":5216},[5217,5218,5219,5220,5221],{"id":634,"depth":760,"text":635},{"id":662,"depth":760,"text":663},{"id":710,"depth":760,"text":711},{"id":1979,"depth":760,"text":1980},{"id":2614,"depth":760,"text":2615},{"id":5117,"depth":741,"text":5118},{"id":5177,"depth":741,"text":5178},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":5230,"excerpt":5231},"node red, mqtt sparkplug, industrial IoT",{"type":9,"value":5232},[5233],[12,5234,14],{},true,"\u002Fblog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red",{"title":5,"description":5226},"blog\u002F2024\u002F08\u002Fusing-mqtt-sparkplugb-with-node-red","Standardize and manage industrial IoT data with MQTT Sparkplug B",[5241,5242,5243],"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.","SFUEidIHGva_rh46OWUWKnbRPZfYvPsESbgJbXpYt-Y",{"id":5247,"extension":5248,"meta":5249,"sections":5250,"stem":5638,"__hash__":5639},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[5251,5302,5403,5464,5541,5620],{"id":5252,"title":5253,"features":5254},"ai-automation","AI & Automation",[5255,5265,5275,5285,5291,5297],{"id":5256,"title":5257,"description":5258,"docsLink":5259,"changelog":5260,"tiers":5264},"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",[5261],{"url":5262,"release":5263},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":5235,"hub":5235,"fleet":5235},{"id":5266,"title":5267,"description":5268,"docsLink":5269,"changelog":5270,"subfeature":5235,"showOnPricing":5273,"tiers":5274},"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",[5271],{"url":5272,"release":5263},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":5235,"hub":5235,"fleet":5235},{"id":5276,"title":5277,"description":5278,"docsLink":5279,"changelog":5280,"subfeature":5235,"showOnPricing":5273,"tiers":5284},"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",[5281],{"url":5282,"release":5283},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":5235,"hub":5235,"fleet":5235},{"id":5286,"title":5287,"description":5288,"docsLink":5289,"subfeature":5235,"beta":5235,"showOnPricing":5273,"tiers":5290},"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":5235,"hub":5235,"fleet":5235},{"id":5292,"title":5293,"description":5294,"docsLink":5295,"tiers":5296},"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":5235,"hub":5235,"fleet":5235},{"id":5298,"title":5299,"description":5300,"tiers":5301},"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":5235,"hub":5235,"fleet":5235},{"id":5303,"title":5304,"features":5305},"build","Build",[5306,5312,5318,5328,5334,5340,5344,5350,5356,5364,5370,5374,5378,5387,5395],{"id":5307,"title":5308,"description":5309,"docsLink":5310,"tiers":5311},"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":5235,"hub":5273,"fleet":5235},{"id":5313,"title":5314,"description":5315,"docsLink":5316,"tiers":5317},"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":5235,"hub":5235,"fleet":5235},{"id":5319,"title":5320,"description":5321,"docsLink":5322,"changelog":5323,"tiers":5327},"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",[5324],{"url":5325,"release":5326},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":5235,"hub":5235,"fleet":5235},{"id":5329,"title":5330,"description":5331,"docsLink":5332,"tiers":5333},"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":5235,"hub":5235,"fleet":5235},{"id":5335,"title":5336,"description":5337,"docsLink":5338,"showOnPricing":5273,"tiers":5339},"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":5235,"hub":5235,"fleet":5235},{"id":5341,"title":5342,"showOnPricing":5273,"tiers":5343},"static-assets","Static Assets",{"edge":5235,"hub":5235,"fleet":5235},{"id":5345,"title":5346,"description":5347,"docsLink":5348,"tiers":5349},"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":5235,"hub":5235,"fleet":5235},{"id":5351,"title":5352,"description":5353,"docsLink":5354,"tiers":5355},"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":5235,"hub":5235,"fleet":5235},{"id":5357,"title":5358,"description":5359,"changelog":5360,"subfeature":5235,"showOnPricing":5273,"tiers":5363},"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.",[5361],{"url":5362,"release":5326},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5365,"title":5366,"description":5367,"docsLink":5368,"tiers":5369},"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":5235,"hub":5235,"fleet":5235},{"id":5371,"title":5372,"subfeature":5235,"showOnPricing":5273,"tiers":5373},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":5235,"hub":5273,"fleet":5235},{"id":5375,"title":5376,"subfeature":5235,"showOnPricing":5273,"tiers":5377},"blueprints-it-apps","Blueprints - IT APPS",{"edge":5273,"hub":5235,"fleet":5273},{"id":5379,"title":5380,"description":5381,"changelog":5382,"showOnPricing":5273,"tiers":5386},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[5383],{"url":5384,"release":5385},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":5235,"hub":5235,"fleet":5235},{"id":5388,"title":5389,"description":5390,"changelog":5391,"showOnPricing":5273,"tiers":5394},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[5392],{"url":5393,"release":5283},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5396,"title":5397,"description":5398,"changelog":5399,"showOnPricing":5273,"tiers":5402},"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.",[5400],{"url":5401,"release":5385},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5404,"title":5405,"features":5406},"deploy","Deploy",[5407,5413,5422,5428,5433,5439,5445,5451,5456],{"id":5408,"title":5409,"description":5410,"docsLink":5411,"tiers":5412},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":5235,"hub":5235,"fleet":5235},{"id":5414,"title":5415,"description":5416,"docsLink":5417,"changelog":5418,"tiers":5421},"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",[5419],{"url":5420,"release":5263},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":5235,"hub":5273,"fleet":5235},{"id":5423,"title":5424,"description":5425,"docsLink":5426,"tiers":5427},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":5273,"hub":5235,"fleet":5273},{"id":5429,"title":5430,"description":5431,"docsLink":657,"tiers":5432},"mqtt-broker","MQTT Broker","Manage and create MQTT clients to transport data for efficient messaging and communication within your applications.",{"edge":5235,"hub":5273,"fleet":5235},{"id":5434,"title":5435,"description":5436,"docsLink":5437,"showOnPricing":5273,"tiers":5438},"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":5235,"hub":5235,"fleet":5235},{"id":5440,"title":5441,"description":5442,"docsLink":5443,"tiers":5444},"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":5235,"hub":5235,"fleet":5235},{"id":5446,"title":5447,"description":5448,"docsLink":5449,"tiers":5450},"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":5273,"hub":5235,"fleet":5273},{"id":5452,"title":5453,"description":5454,"docsLink":5449,"subfeature":5235,"showOnPricing":5273,"tiers":5455},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":5273,"hub":5235,"fleet":5273},{"id":5457,"title":5458,"description":5459,"docsLink":5449,"changelog":5460,"subfeature":5235,"showOnPricing":5273,"tiers":5463},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[5461],{"url":5462,"release":5385},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":5273,"hub":5235,"fleet":5273},{"id":5465,"title":5466,"features":5467},"operate-maintain","Operate & Maintain",[5468,5474,5480,5485,5493,5497,5501,5506,5512,5518,5523,5529,5533,5537],{"id":5469,"title":5470,"description":5471,"docsLink":5472,"tiers":5473},"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":5235,"hub":5235,"fleet":5235},{"id":5475,"title":5476,"description":5477,"docsLink":5478,"subfeature":5235,"showOnPricing":5273,"tiers":5479},"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":5235,"hub":5235,"fleet":5235},{"id":5481,"title":5482,"description":5483,"docsLink":5478,"subfeature":5235,"showOnPricing":5273,"tiers":5484},"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":5235,"hub":5235,"fleet":5235},{"id":5486,"title":5487,"description":5488,"changelog":5489,"subfeature":5235,"showOnPricing":5273,"tiers":5492},"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.",[5490],{"url":5491,"release":5385},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5494,"title":5495,"subfeature":5235,"showOnPricing":5273,"tiers":5496},"version-history-timeline","Version History Timeline",{"edge":5235,"hub":5235,"fleet":5235},{"id":5498,"title":5499,"tiers":5500},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":5235,"hub":5235,"fleet":5235},{"id":5502,"title":5503,"description":5504,"tiers":5505},"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":5235,"hub":5273,"fleet":5235},{"id":5507,"title":5508,"description":5509,"docsLink":5510,"tiers":5511},"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":5235,"hub":5273,"fleet":5235},{"id":5513,"title":5514,"description":5515,"docsLink":5516,"tiers":5517},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":5273,"hub":5235,"fleet":5273},{"id":5519,"title":5520,"description":5521,"tiers":5522},"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":5235,"hub":5235,"fleet":5235},{"id":5524,"title":5525,"description":5526,"docsLink":5527,"subfeature":5235,"showOnPricing":5273,"tiers":5528},"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":5235,"hub":5235,"fleet":5235},{"id":5530,"title":5531,"subfeature":5235,"showOnPricing":5273,"tiers":5532},"email-alerts","Email Alerts",{"edge":5235,"hub":5235,"fleet":5235},{"id":5534,"title":5535,"showOnPricing":5273,"tiers":5536},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":5235,"hub":5235,"fleet":5235},{"id":5538,"title":5539,"tiers":5540},"protected-instances","Protected Instances",{"edge":5273,"hub":5235,"fleet":5273},{"id":5542,"title":5543,"features":5544},"govern-secure","Govern and Secure",[5545,5554,5560,5566,5571,5577,5583,5589,5597,5603,5609,5615],{"id":5546,"title":5547,"description":5548,"docsLink":5549,"changelog":5550,"tiers":5553},"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",[5551],{"url":5552,"release":5326},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5555,"title":5556,"description":5557,"docsLink":5558,"tiers":5559},"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":5235,"hub":5235,"fleet":5235},{"id":5561,"title":5562,"description":5563,"docsLink":5564,"tiers":5565},"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":5273,"hub":5235,"fleet":5235},{"id":5567,"title":5568,"description":5569,"tiers":5570},"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":5235,"hub":5273,"fleet":5273},{"id":5572,"title":5573,"description":5574,"docsLink":5575,"tiers":5576},"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":5235,"hub":5235,"fleet":5235},{"id":5578,"title":5579,"description":5580,"docsLink":5581,"tiers":5582},"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":5235,"hub":5235,"fleet":5235},{"id":5584,"title":5585,"description":5586,"docsLink":5587,"subfeature":5235,"showOnPricing":5273,"tiers":5588},"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":5235,"hub":5235,"fleet":5235},{"id":5590,"title":5591,"description":5592,"changelog":5593,"subfeature":5235,"showOnPricing":5273,"tiers":5596},"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.",[5594],{"url":5595,"release":5326},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":5235,"hub":5235,"fleet":5235},{"id":5598,"title":5599,"description":5600,"docsLink":5601,"showOnPricing":5273,"tiers":5602},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":5235,"hub":5235,"fleet":5235},{"id":5604,"title":5605,"description":5606,"docsLink":5607,"showOnPricing":5273,"tiers":5608},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":5235,"hub":5235,"fleet":5235},{"id":5610,"title":5611,"description":5612,"docsLink":5613,"tiers":5614},"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":5273,"hub":5235,"fleet":5273},{"id":5616,"title":5617,"description":5618,"tiers":5619},"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":5273,"hub":5235,"fleet":5273},{"id":5621,"title":5622,"features":5623},"support","Support",[5624,5629,5633],{"id":5625,"title":5626,"docsLink":5627,"tiers":5628},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":5235,"hub":5235,"fleet":5235},{"id":5630,"title":5631,"showOnPricing":5273,"tiers":5632},"live-chat-support","Live Chat Support",{"edge":5235,"hub":5235,"fleet":5235},{"id":5634,"title":5635,"docsLink":5636,"tiers":5637},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":5235,"hub":5235,"fleet":5235},"feature-catalog","0AnkhTIPCECCwP9NmbTWP5HvRYx4FTSao4lG93-HaWM",[5641,5644,5647,5650,5653,5656,5658,5661,5664,5667,5670,5672,5675,5678,5681,5684,5687,5690,5693,5696,5699,5702,5705,5708,5711,5714,5717,5720,5723,5726,5729,5732,5735,5738,5741,5744,5747,5750,5753,5756,5759,5762,5765,5768,5771,5774,5777,5780,5783,5785,5788,5791,5794,5797,5800,5803,5806,5808,5811,5814,5817,5820,5823,5825,5828,5831,5834,5837,5840,5843,5846,5849,5852,5855,5857,5860,5863,5866,5869,5872,5875,5878,5881,5884,5887,5890,5893,5896,5899,5901,5904,5907,5910,5913,5916,5919,5922,5925,5928,5931,5934,5937,5940,5943,5946,5949,5952,5955,5957,5960,5963,5966,5969,5972,5975,5978,5980,5983,5986,5989,5992,5995,5998,6001,6004,6007,6010,6013,6016,6019,6022,6025,6028,6031,6034,6037,6040,6043,6046,6049,6052,6055,6058,6061,6064,6067,6070,6073,6076,6079,6082,6085,6088,6091,6094,6097,6100,6103,6106,6109,6112,6115,6118,6121,6124,6127,6130,6132,6135,6138,6141,6144,6147,6150,6153,6156,6159,6162,6165,6168,6171],{"path":5642,"title":5643},"\u002Fchangelog\u002F2023\u002F09\u002Fcustom-node-support","Custom Node Support",{"path":5645,"title":5646},"\u002Fchangelog\u002F2023\u002F09\u002Fdevops-actions","DevOps Pipeline with action selection",{"path":5648,"title":5649},"\u002Fchangelog\u002F2023\u002F09\u002Fintroduction-enterprise-tier","Introducing the Enterprise Tier",{"path":5651,"title":5652},"\u002Fchangelog\u002F2023\u002F09\u002Fpipeline-api","API Endpoint for DevOps Pipeline",{"path":5654,"title":5655},"\u002Fchangelog\u002F2023\u002F09\u002Fsnapshots-devices","Usability improvements to Device Management",{"path":5657,"title":5366},"\u002Fchangelog\u002F2023\u002F10\u002Fblueprints",{"path":5659,"title":5660},"\u002Fchangelog\u002F2023\u002F10\u002Fcertified-nodes","Certified Nodes",{"path":5662,"title":5663},"\u002Fchangelog\u002F2023\u002F10\u002Fdevice-snapshot-selection","Enhanced Snapshot Selection",{"path":5665,"title":5666},"\u002Fchangelog\u002F2023\u002F10\u002Fpath-bug-fix","Device Agent path bug fix",{"path":5668,"title":5669},"\u002Fchangelog\u002F2023\u002F10\u002Fresource-alerts","Resource Monitoring in Audit Log",{"path":5671,"title":5556},"\u002Fchangelog\u002F2023\u002F11\u002F2fa",{"path":5673,"title":5674},"\u002Fchangelog\u002F2023\u002F11\u002Fdefault-editor","Device Editor enabled by default",{"path":5676,"title":5677},"\u002Fchangelog\u002F2023\u002F11\u002Fdevices-in-pipelines","Devices in DevOps Pipelines",{"path":5679,"title":5680},"\u002Fchangelog\u002F2023\u002F11\u002Fproject-nodes-devices","Project Nodes for Devices",{"path":5682,"title":5683},"\u002Fchangelog\u002F2023\u002F12\u002Fbilling","No Credit Card required for billing",{"path":5685,"title":5686},"\u002Fchangelog\u002F2023\u002F12\u002Fblueprint-selection","Blueprint Selection Update",{"path":5688,"title":5689},"\u002Fchangelog\u002F2023\u002F12\u002Fdevice-groups","Device Groups",{"path":5691,"title":5692},"\u002Fchangelog\u002F2023\u002F12\u002Femail-alerting-node-red-crash","Email Alerts for Audit Log Events",{"path":5694,"title":5695},"\u002Fchangelog\u002F2023\u002F12\u002Fnode-red-updated","Node-RED 3.1.3 now available",{"path":5697,"title":5698},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-audit-log","Introducing the Device Auditlog Feature",{"path":5700,"title":5701},"\u002Fchangelog\u002F2024\u002F01\u002Fdevice-groups-snapshot","Device Groups - Automatic snapshot assignment",{"path":5703,"title":5704},"\u002Fchangelog\u002F2024\u002F01\u002Ffleet-mode","Renaming \"Default Device Mode\" to \"Fleet Mode\"",{"path":5706,"title":5707},"\u002Fchangelog\u002F2024\u002F01\u002Fhelm-v2","Helm Chart v2.0",{"path":5709,"title":5710},"\u002Fchangelog\u002F2024\u002F01\u002Fnew-blueprints","New Blueprints added",{"path":5712,"title":5713},"\u002Fchangelog\u002F2024\u002F01\u002Fsecurity-updates","Security Updates",{"path":5715,"title":5716},"\u002Fchangelog\u002F2024\u002F01\u002Fsso-team-membership","Managing Team Membership via SSO",{"path":5718,"title":5719},"\u002Fchangelog\u002F2024\u002F01\u002Fstreamlined-device-assignment","Streamlined Device assignment",{"path":5721,"title":5722},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-auto-snapshot","Device Auto Snapshots",{"path":5724,"title":5725},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-instance-audit-logs","Device Instance Audit Logging",{"path":5727,"title":5728},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-onboarding-improvements","Device Onboarding Improvements",{"path":5730,"title":5731},"\u002Fchangelog\u002F2024\u002F02\u002Fdevice-pricing-change","Pricing change for Devices",{"path":5733,"title":5734},"\u002Fchangelog\u002F2024\u002F02\u002Finstance-auto-snapshots","Instance Auto Snapshots",{"path":5736,"title":5737},"\u002Fchangelog\u002F2024\u002F02\u002Fpostgresql-upgrade","PostgreSQL Version update",{"path":5739,"title":5740},"\u002Fchangelog\u002F2024\u002F03\u002Fbearer-token-authentication","Bearer Token Authentication for Node-RED Instances",{"path":5742,"title":5743},"\u002Fchangelog\u002F2024\u002F03\u002Finstance-protection-mode","Instance Protection Mode",{"path":5745,"title":5746},"\u002Fchangelog\u002F2024\u002F03\u002Flimits-debug-payload","Configure HTTP Payload and Debug Message size",{"path":5748,"title":5749},"\u002Fchangelog\u002F2024\u002F03\u002Frestart-devices-remotly","Remote Device Restart",{"path":5751,"title":5752},"\u002Fchangelog\u002F2024\u002F04\u002Fcustom-nodes-on-devices","Custom Nodes Support on Devices",{"path":5754,"title":5755},"\u002Fchangelog\u002F2024\u002F04\u002Fdevice-auto-snapshot","Direct Dashboard Access",{"path":5757,"title":5758},"\u002Fchangelog\u002F2024\u002F04\u002Fimproving-device-groups","Improving Device Groups",{"path":5760,"title":5761},"\u002Fchangelog\u002F2024\u002F04\u002Fpricing-change","Pricing change Enterprise & Teams Tier",{"path":5763,"title":5764},"\u002Fchangelog\u002F2024\u002F04\u002Ftougher-rate-limiting","Tougher Rate Limiting on Public Routes",{"path":5766,"title":5767},"\u002Fchangelog\u002F2024\u002F05\u002Finstance-healthcheck","Customizing instance health-check settings",{"path":5769,"title":5770},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-blueprints","Blueprints added to Library",{"path":5772,"title":5773},"\u002Fchangelog\u002F2024\u002F05\u002Flibrary-flowviewer","Team Library - Flow Viewer",{"path":5775,"title":5776},"\u002Fchangelog\u002F2024\u002F05\u002Fmanaging-node-red-version-on-devices","Managing Node-RED versions on Devices",{"path":5778,"title":5779},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements","Snapshot Improvements",{"path":5781,"title":5782},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-improvements-pt3","Snapshot Upload",{"path":5784,"title":5782},"\u002Fchangelog\u002F2024\u002F05\u002Fsnapshot-upload",{"path":5786,"title":5787},"\u002Fchangelog\u002F2024\u002F06\u002Fdevice-agent-proxy-support","Running the Device Agent behind an HTTP proxy",{"path":5789,"title":5790},"\u002Fchangelog\u002F2024\u002F06\u002Flibrary-blueprints","Custom hostnames for your instances",{"path":5792,"title":5793},"\u002Fchangelog\u002F2024\u002F06\u002Fmultiline-env-vars","Multi-line Environment Variables",{"path":5795,"title":5796},"\u002Fchangelog\u002F2024\u002F06\u002Fsnapshot-flow-compare","Compare Snapshots flows",{"path":5798,"title":5799},"\u002Fchangelog\u002F2024\u002F07\u002Fapplications-search","Applications Search",{"path":5801,"title":5802},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-group-clear-snapshot","Device Groups Snapshots",{"path":5804,"title":5805},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-delete","Managing devices",{"path":5807,"title":5805},"\u002Fchangelog\u002F2024\u002F07\u002Fdevice-management-bulk-move",{"path":5809,"title":5810},"\u002Fchangelog\u002F2024\u002F07\u002Fedit-snapshots","Edit Snapshots",{"path":5812,"title":5813},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant","The FlowFuse Expert",{"path":5815,"title":5816},"\u002Fchangelog\u002F2024\u002F07\u002Fflowfuse-assistant-json","FlowFuse Expert Writes JSON",{"path":5818,"title":5819},"\u002Fchangelog\u002F2024\u002F07\u002Fimmersive-editor","Immersive Editor Experience",{"path":5821,"title":5822},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-inbox","Notifications Inbox",{"path":5824,"title":5822},"\u002Fchangelog\u002F2024\u002F07\u002Fnotifications-update",{"path":5826,"title":5827},"\u002Fchangelog\u002F2024\u002F07\u002Fpersistent-storage","Persistent Storage on FlowFuse Cloud",{"path":5829,"title":5830},"\u002Fchangelog\u002F2024\u002F07\u002Fsso","Single Sign On Updates",{"path":5832,"title":5833},"\u002Fchangelog\u002F2024\u002F08\u002Fbill-of-materials","Bill of Materials",{"path":5835,"title":5836},"\u002Fchangelog\u002F2024\u002F08\u002Fenterprise-license-update","Enforcing Enterprise Restrictions",{"path":5838,"title":5839},"\u002Fchangelog\u002F2024\u002F08\u002Fldap-sso-groups","LDAP Single Sign On Updates",{"path":5841,"title":5842},"\u002Fchangelog\u002F2024\u002F08\u002Fstatic-file-service-navigation-visibility","Static File Service Navigation and Visibility",{"path":5844,"title":5845},"\u002Fchangelog\u002F2024\u002F10\u002Fdevice-group-env-vars","Environment Variables for your Device Groups",{"path":5847,"title":5848},"\u002Fchangelog\u002F2024\u002F10\u002Fmqtt-service","MQTT Broker Service",{"path":5850,"title":5851},"\u002Fchangelog\u002F2024\u002F10\u002Fnotifications-bulk-actions","Managing Notifications",{"path":5853,"title":5854},"\u002Fchangelog\u002F2024\u002F10\u002Fsnapshot-download-upload-options","Snapshot Upload and Download Improvements",{"path":5856,"title":5495},"\u002Fchangelog\u002F2024\u002F10\u002Fversion-history-timeline",{"path":5858,"title":5859},"\u002Fchangelog\u002F2024\u002F11\u002Faudit-log-hierarchy","Audit logs show hierarchical events",{"path":5861,"title":5862},"\u002Fchangelog\u002F2024\u002F11\u002Fdevice-agent-release","Device Agent 3.0 released",{"path":5864,"title":5865},"\u002Fchangelog\u002F2024\u002F11\u002Fmqtt-topic-hierarchy","MQTT Topic Hierarchy view",{"path":5867,"title":5868},"\u002Fchangelog\u002F2024\u002F11\u002Fteam-search","Team-wide search",{"path":5870,"title":5871},"\u002Fchangelog\u002F2024\u002F12\u002Fdashboad-iframe","Allow Dashboards to be embedded in iFrames",{"path":5873,"title":5874},"\u002Fchangelog\u002F2024\u002F12\u002Fdevice-editor-cache","Device Editor Access Speed Up",{"path":5876,"title":5877},"\u002Fchangelog\u002F2024\u002F12\u002Fteam-bom-timeline","Team BOM and Pipeline Views",{"path":5879,"title":5880},"\u002Fchangelog\u002F2025\u002F01\u002Ffree-tier-onboarding","New Onboarding Tour for Free Tier Users",{"path":5882,"title":5883},"\u002Fchangelog\u002F2025\u002F01\u002Fhidden-env-vars","Hidden Environment Variables",{"path":5885,"title":5886},"\u002Fchangelog\u002F2025\u002F01\u002Fimproved-diagnostics","Improved Diagnostics",{"path":5888,"title":5889},"\u002Fchangelog\u002F2025\u002F01\u002Fteam-level-groups","Team level view of Groups",{"path":5891,"title":5892},"\u002Fchangelog\u002F2025\u002F02\u002Fadditional-device-version-history-events","New Remote Instances Version History Events",{"path":5894,"title":5895},"\u002Fchangelog\u002F2025\u002F02\u002Fbroker-error-feedback","Improved Broker Connection Feedback",{"path":5897,"title":5898},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-agent-updates","FlowFuse User Authentication on Remote Instances",{"path":5900,"title":5495},"\u002Fchangelog\u002F2025\u002F02\u002Fdevice-version-history-timeline",{"path":5902,"title":5903},"\u002Fchangelog\u002F2025\u002F02\u002Fexternal-brokers","External MQTT Brokers",{"path":5905,"title":5906},"\u002Fchangelog\u002F2025\u002F02\u002Fmqtt-schema-suggestions","MQTT Smart Schema Suggestions",{"path":5908,"title":5909},"\u002Fchangelog\u002F2025\u002F02\u002Fresend-and-extend-team-invitation-expiration","Re-send Team Invitations",{"path":5911,"title":5912},"\u002Fchangelog\u002F2025\u002F02\u002Fschema-docs","Personalized Schema Documentation",{"path":5914,"title":5915},"\u002Fchangelog\u002F2025\u002F02\u002Ftopic-hierarchy-search","Search & Filter for Topic Hierarchy List",{"path":5917,"title":5918},"\u002Fchangelog\u002F2025\u002F03\u002Fcontainer-tags","Changes to tags for flowfuse\u002Fnode-red",{"path":5920,"title":5921},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-groups","Multiple Device Groups in a pipeline",{"path":5923,"title":5924},"\u002Fchangelog\u002F2025\u002F03\u002Fdevice-local-login","Local Login for Remote Instances",{"path":5926,"title":5927},"\u002Fchangelog\u002F2025\u002F03\u002Ffree-tier","Free Tier now more accessible to all",{"path":5929,"title":5930},"\u002Fchangelog\u002F2025\u002F03\u002Fresource-notifications","Resource Alerts",{"path":5932,"title":5933},"\u002Fchangelog\u002F2025\u002F03\u002Fsnapshot-filter","Filtering Snapshots",{"path":5935,"title":5936},"\u002Fchangelog\u002F2025\u002F03\u002Fteam-npm-registry","NPM Package Hosting",{"path":5938,"title":5939},"\u002Fchangelog\u002F2025\u002F03\u002Ftopic-deletion","MQTT Topic Management",{"path":5941,"title":5942},"\u002Fchangelog\u002F2025\u002F04\u002Fdevice-provisioning","Remote Instance Provisioning",{"path":5944,"title":5945},"\u002Fchangelog\u002F2025\u002F04\u002Fgit-integration","Git Integration with Pipelines",{"path":5947,"title":5948},"\u002Fchangelog\u002F2025\u002F04\u002Finstance-log-browsing","Better Node-RED log handling",{"path":5950,"title":5951},"\u002Fchangelog\u002F2025\u002F05\u002Fimport-node-red-flows","Import Node-RED Flows During Remote Instance Setup",{"path":5953,"title":5954},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant","FlowFuse Expert just got smarter",{"path":5956,"title":5954},"\u002Fchangelog\u002F2025\u002F06\u002Fflowfuse-assistant-2",{"path":5958,"title":5959},"\u002Fchangelog\u002F2025\u002F06\u002Fgit-integration","Pulling snapshots from Git with Pipelines",{"path":5961,"title":5962},"\u002Fchangelog\u002F2025\u002F06\u002Finstance-performance-memory","Memory Metrics in Instance Performance View",{"path":5964,"title":5965},"\u002Fchangelog\u002F2025\u002F06\u002Fnew-home-page","Introducing the New Home Page Experience",{"path":5967,"title":5968},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance","Team Performance Feature",{"path":5970,"title":5971},"\u002Fchangelog\u002F2025\u002F06\u002Fteam-performance-view","Instance Performance View",{"path":5973,"title":5974},"\u002Fchangelog\u002F2025\u002F06\u002Fui-refresh","Navigation UI Refresh",{"path":5976,"title":5977},"\u002Fchangelog\u002F2025\u002F07\u002Fbrowse-node-red-flows","Browse for Node-RED Flows During Remote Instance Setup",{"path":5979,"title":5320},"\u002Fchangelog\u002F2025\u002F07\u002Fflowfuse-tables",{"path":5981,"title":5982},"\u002Fchangelog\u002F2025\u002F07\u002Fimport-blueprints","Import blueprints directly into your existing instances",{"path":5984,"title":5985},"\u002Fchangelog\u002F2025\u002F07\u002Fsimplified-applications-overview","Simplified Applications Page with Summary Tiles",{"path":5987,"title":5988},"\u002Fchangelog\u002F2025\u002F07\u002Fsmart-suggestions","Smart Suggestions",{"path":5990,"title":5991},"\u002Fchangelog\u002F2025\u002F07\u002Fteam-to-pro-plan-rename","Team Plan Renamed to Pro Plan",{"path":5993,"title":5994},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-hosted","Generate snapshot descriptions with AI",{"path":5996,"title":5997},"\u002Fchangelog\u002F2025\u002F08\u002Fai-generated-snapshot-descriptions-remote","AI Snapshot Descriptions Now Work with Remote Instances",{"path":5999,"title":6000},"\u002Fchangelog\u002F2025\u002F08\u002Fdevice-performance","FlowFuse Remote Instance Performance Data",{"path":6002,"title":6003},"\u002Fchangelog\u002F2025\u002F08\u002Fdirect-sso","Direct SSO Login",{"path":6005,"title":6006},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-assistant","FlowFuse Expert documents your flows",{"path":6008,"title":6009},"\u002Fchangelog\u002F2025\u002F08\u002Fflowfuse-mqtt","FlowFuse MQTT",{"path":6011,"title":6012},"\u002Fchangelog\u002F2025\u002F08\u002Fhttp-cors","Configure HTTP CORS",{"path":6014,"title":6015},"\u002Fchangelog\u002F2025\u002F08\u002Fsubflow-export","Export SubFlow as Node-RED module",{"path":6017,"title":6018},"\u002Fchangelog\u002F2025\u002F08\u002Ftables-assistant","FlowFuse Tables with a little help from the Assistant",{"path":6020,"title":6021},"\u002Fchangelog\u002F2025\u002F09\u002Fexpose-saml-groups-to-dashboard","Allow SSO groups to be shared with the Node-RED Dashboard",{"path":6023,"title":6024},"\u002Fchangelog\u002F2025\u002F09\u002Finline-assist","FlowFuse Expert can help you write code",{"path":6026,"title":6027},"\u002Fchangelog\u002F2025\u002F09\u002Fretiring-flowforge-device-agent","No more @flowforge\u002Fflowforge-device-agent releases",{"path":6029,"title":6030},"\u002Fchangelog\u002F2025\u002F09\u002Frevised-instance-snapshot-ui","Streamlined Snapshot Management",{"path":6032,"title":6033},"\u002Fchangelog\u002F2025\u002F09\u002Fteam-broker-async-api","Capture Async API data from FlowFuse Team Broker",{"path":6035,"title":6036},"\u002Fchangelog\u002F2025\u002F10\u002Fapplication-level-rbac","Application-level access control for Enterprise teams",{"path":6038,"title":6039},"\u002Fchangelog\u002F2025\u002F10\u002Fbulk-device-group-assignment","Easier Access to Bulk Device Group Management",{"path":6041,"title":6042},"\u002Fchangelog\u002F2025\u002F10\u002Fduplicate-instances-across-applications","Duplicate Instances Across Different Applications",{"path":6044,"title":6045},"\u002Fchangelog\u002F2025\u002F10\u002Fimport-flows-on-instance-creation","Import flows during instance creation",{"path":6047,"title":6048},"\u002Fchangelog\u002F2025\u002F10\u002Fmcp-nodes","FlowFuse MCP Server Nodes",{"path":6050,"title":6051},"\u002Fchangelog\u002F2025\u002F10\u002Fonnx-nodes","FlowFuse AI Nodes",{"path":6053,"title":6054},"\u002Fchangelog\u002F2025\u002F10\u002Fsettings-page-device-group-management","Device Group Management from Settings Page",{"path":6056,"title":6057},"\u002Fchangelog\u002F2025\u002F11\u002Fff-expert-update","FlowFuse Expert Update",{"path":6059,"title":6060},"\u002Fchangelog\u002F2025\u002F11\u002Fminimum-nodejs-version","Node.js v20 Minimum Version Requirement",{"path":6062,"title":6063},"\u002Fchangelog\u002F2025\u002F11\u002Fsso-session","SSO control over Session life",{"path":6065,"title":6066},"\u002Fchangelog\u002F2025\u002F12\u002Fff-expert-mcp-insights","FlowFuse Expert: Now with MCP-Powered Insights",{"path":6068,"title":6069},"\u002Fchangelog\u002F2025\u002F12\u002Fscheduled-maintenance","Scheduled Maintenance Mode",{"path":6071,"title":6072},"\u002Fchangelog\u002F2026\u002F01\u002Fdevice-agent-containers","Device Agent Docker Containers updated",{"path":6074,"title":6075},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-manage-palette","FlowFuse Expert: Enhanced Palette Integration",{"path":6077,"title":6078},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-nr-actions","FlowFuse Expert: Integration with Node-RED",{"path":6080,"title":6081},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-palette-queries","FlowFuse Expert: Palette Queries",{"path":6083,"title":6084},"\u002Fchangelog\u002F2026\u002F01\u002Fff-expert-select-flows","FlowFuse Expert: Ask about your flows",{"path":6086,"title":6087},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-rbacs","FlowFuse Expert: MCP-Powered Insights with RBACs",{"path":6089,"title":6090},"\u002Fchangelog\u002F2026\u002F01\u002Fmcp-security","FlowFuse Expert: MCP-Powered Insights",{"path":6092,"title":6093},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options","Set Node.js Options for Remote Instances",{"path":6095,"title":6096},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context","FlowFuse Expert: Helping you make sense of your debug log",{"path":6098,"title":6099},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner","FlowFuse Expert: Never Miss an Update",{"path":6101,"title":6102},"\u002Fchangelog\u002F2026\u002F02\u002Fha-instance-rolling-restart","HA Hosted Instance Rolling Restart",{"path":6104,"title":6105},"\u002Fchangelog\u002F2026\u002F02\u002Fremote-instances-immersive-editor","Immersive Mode for Remote Instances",{"path":6107,"title":6108},"\u002Fchangelog\u002F2026\u002F02\u002Frestoring-snapshots-to-remote-instances","Restoring snapshots to developer-mode Remote Instances",{"path":6110,"title":6111},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops","Azure DevOps Pipeline support",{"path":6113,"title":6114},"\u002Fchangelog\u002F2026\u002F03\u002Fdeveloper-mode-in-immersive-editor","Developer Mode Now Accessible from the Immersive Editor",{"path":6116,"title":6117},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title","Embedded Editor Now Shows Active Tab",{"path":6119,"title":6120},"\u002Fchangelog\u002F2026\u002F03\u002Fmarch-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on March 28th, 2026",{"path":6122,"title":6123},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor","View Snapshot Details in the Immersive Editor",{"path":6125,"title":6126},"\u002Fchangelog\u002F2026\u002F04\u002Fexpert-action-links","FlowFuse expert action links",{"path":6128,"title":6129},"\u002Fchangelog\u002F2026\u002F04\u002Fhosted-instance-url-env-var","Hosted Instances know their own URL",{"path":6131,"title":5389},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer",{"path":6133,"title":6134},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer","Richer snapshot comparison view",{"path":6136,"title":6137},"\u002Fchangelog\u002F2026\u002F05\u002Fai-opt-out","AI Feature Opt-Out for Teams",{"path":6139,"title":6140},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building","FlowFuse Expert Builds Your Application",{"path":6142,"title":6143},"\u002Fchangelog\u002F2026\u002F05\u002Fsingle-sso-provider","Single SSO provider for all users",{"path":6145,"title":6146},"\u002Fchangelog\u002F2026\u002F06\u002Fdark-mode","Dark Mode",{"path":6148,"title":6149},"\u002Fchangelog\u002F2026\u002F06\u002Fdevice-agent-v4-released","Device Agent v4 released",{"path":6151,"title":6152},"\u002Fchangelog\u002F2026\u002F06\u002Fgeneric-git-server-support","Connect Pipelines to Any Git Server",{"path":6154,"title":6155},"\u002Fchangelog\u002F2026\u002F06\u002Fjuly-scheduled-maintenance","Updated: Upcoming Scheduled Server Maintenance on July 11th, 2026",{"path":6157,"title":6158},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups","Application Roles from SSO Groups",{"path":6160,"title":6161},"\u002Fchangelog\u002F2026\u002F07\u002Fdevice-agent-onboarding","Getting started with FlowFuse straight from the terminal",{"path":6163,"title":6164},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-enhancements","FlowFuse Expert Enhancements",{"path":6166,"title":6167},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation","FlowFuse Expert Can Now Work With Your Tables",{"path":6169,"title":6170},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats","Team Scoped Personal Access Tokens",{"path":6172,"title":6173},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards","A Dedicated Home for Your Dashboards",[6175,6181,6186,6192,6196,6203,6209,6216,6221,6226,6231,6236,6241,6246,6251,6256,6260,6266,6271,6277,6282,6288,6293,6299,6304,6310,6315,6319,6324,6329,6334,6339,6345,6350,6354,6359,6365,6370,6375,6380,6385,6390,6395,6400,6405,6410,6414,6419,6423,6428,6433,6438,6443,6448,6453,6458,6463,6468,6473,6477,6482,6487,6492,6497,6501,6506,6511,6516,6521,6526,6531,6536,6541,6546,6551,6556,6561,6565,6570,6575,6581,6586,6591,6596,6601,6606,6611,6616,6621,6626,6631,6636,6644,6649,6654,6659,6665,6670,6675,6680,6684,6689,6693,6698,6703,6708,6713,6717,6722,6727,6732,6737,6742,6747,6752,6759,6764,6769,6773,6778,6782,6787,6792,6797,6802,6806,6811,6816,6821,6826,6831,6836,6841,6848,6853,6858,6863,6868,6873,6878,6883,6888,6892,6897,6902,6907,6912,6916,6921,6926,6931,6936,6941,6946,6951,6956,6961,6966,6973,6979,6984,6990,6995,7000,7006,7011,7016,7022,7027,7032,7037,7043,7047,7052,7057,7062,7067,7072,7077,7082,7087,7093,7097,7102,7111,7116,7123,7132,7140,7145,7149,7154,7159,7164,7169,7171,7177,7182,7188,7194,7199,7205,7210,7216,7221,7225,7231,7237,7246,7252,7257,7263,7269,7276,7281,7286,7291,7300,7304,7311,7319,7324,7329,7339,7344,7350,7357,7364,7371,7376,7382,7389,7394,7403,7410,7418,7425,7432,7437,7443,7448,7454,7460,7466,7471,7476,7481,7486,7490,7495,7500,7504,7509,7515,7520,7524,7530,7535,7540,7545,7550,7555,7559,7564,7569,7574,7579,7584,7589,7595,7600,7606,7612,7617,7623,7627,7632,7637,7642,7647,7652,7657,7662,7667,7672,7676,7681,7686,7691,7696,7701,7705,7710,7715,7720,7725,7730,7735,7740,7745,7750,7755,7760,7765,7769,7774,7778,7783,7788,7793,7798,7805,7818,7823,7828,7833,7838,7844,7849,7854,7859,7864,7869,7874,7879,7884,7890,7894,7899,7903,7908,7913,7918,7923,7928,7933,7937,7943,7947,7952,7957,7962,7967,7972,7976,7981,7986,7991,7996,8001,8005,8010,8015,8020,8025,8029,8035,8040,8045,8050,8056,8061,8066,8071,8076,8081,8086,8091,8096,8101,8106,8111,8116,8121,8126,8131,8136,8141,8146,8151,8156,8161,8166,8171,8176,8181,8186,8191,8196,8201,8206,8211,8216,8221,8226,8231,8236,8241,8246,8250,8255,8260],{"path":6176,"title":6177,"date":6178,"tags":6179},"\u002Fblog\u002F2026\u002F08\u002Flayered-process-audit","Layered Process Audit (LPA): A Practical Guide + Checklist","2026-08-14",[5241,6180],"flowfuse",{"path":6182,"title":6183,"date":6184,"tags":6185},"\u002Fblog\u002F2026\u002F08\u002Fconnect-agvs-vda-5050-mqtt","VDA 5050 Tutorial: Connect AGVs to Factory Systems over MQTT","2026-08-12",[5241,6180],{"path":6187,"title":6188,"date":6189,"tags":6190},"\u002Fblog\u002F2026\u002F08\u002Fmanufacturing-dashboard-examples","5 Manufacturing Dashboard Examples for Production, OEE & Quality","2026-08-05",[5241,6191,6180],"dashboard",{"path":6193,"title":6194,"date":6189,"tags":6195},"\u002Fblog\u002F2026\u002F08\u002Fstatistical-process-control","What Is Statistical Process Control in Manufacturing",[6180],{"path":6197,"title":6198,"date":6199,"tags":6200},"\u002Fblog\u002F2026\u002F07\u002Fcalibration-management-dashboard","Tracking Instrument Calibration with a Digital Dashboard","2026-07-31",[6180,6201,6202],"manufacturing","how-to",{"path":6204,"title":6205,"date":6199,"tags":6206},"\u002Fblog\u002F2026\u002F07\u002Fwhat-is-instrument-calibration","What Is Instrument Calibration (Equipment Calibration)?",[6207,6201,6208],"post","quality",{"path":6210,"title":6211,"date":6212,"tags":6213},"\u002Fblog\u002F2026\u002F07\u002Fflowfuse-release-2-33","FlowFuse 2.33: From Setting Up Plant Floor Hardware to Visualizing Your Data","2026-07-30",[6180,6214,6215],"news","releases",{"path":6217,"title":6218,"date":6219,"tags":6220},"\u002Fblog\u002F2026\u002F07\u002Fishikawa-fishbone-diagram","Ishikawa Fishbone Diagram: 6M, Manufacturing Example & Template","2026-07-27",[6180],{"path":6222,"title":6223,"date":6224,"tags":6225},"\u002Fblog\u002F2026\u002F07\u002Fdigital-work-instruction","Building Digital Work Instructions Dashboard for the Shop Floor","2026-07-24",[6180],{"path":6227,"title":6228,"date":6229,"tags":6230},"\u002Fblog\u002F2026\u002F07\u002Ftime-synchronization-edge-devices","Handling Clock Drift in Distributed Edge Devices","2026-07-17",[6180],{"path":6232,"title":6233,"date":6234,"tags":6235},"\u002Fblog\u002F2026\u002F07\u002Fdefect-and-quality-monitoring","Build a Defect Tracking and Quality Monitoring Dashboard","2026-07-16",[6180,6208],{"path":6237,"title":6238,"date":6239,"tags":6240},"\u002Fblog\u002F2026\u002F07\u002Fsoftware-defined-manufacturing","Software-Defined Manufacturing: Improve Without Hardware Changes","2026-07-13",[6180],{"path":6242,"title":6243,"date":6244,"tags":6245},"\u002Fblog\u002F2026\u002F07\u002Fbuild-downtime-logger","Build a Machine Downtime Tracking Application","2026-07-08",[6180],{"path":6247,"title":6248,"date":6249,"tags":6250},"\u002Fblog\u002F2026\u002F07\u002Fgitops-for-manufacturing","Why Manufacturing Needs GitOps","2026-07-03",[6180],{"path":6252,"title":6253,"date":6254,"tags":6255},"\u002Fblog\u002F2026\u002F07\u002Fcontrol-and-track-factory-floor-machines","Control and Track Machines on the Factory Floor","2026-07-02",[6180],{"path":6257,"title":6258,"date":6254,"tags":6259},"\u002Fblog\u002F2026\u002F07\u002Fflowfuse-release-2-32","FlowFuse 2.32: Certified Redis, Git Pipelines for Any Server, Insights on Remote Instances, and Dark Mode",[6180,6214,6215],{"path":6261,"title":6262,"date":6263,"tags":6264},"\u002Fblog\u002F2026\u002F06\u002Fannouncing-node-red-con-2026","Announcing Node-RED Con 2026: Call for Papers Now Open","2026-06-29",[6180,6214,6265,5242],"community",{"path":6267,"title":6268,"date":6269,"tags":6270},"\u002Fblog\u002F2026\u002F06\u002Fapplication-idea-to-architectur","Turning an Application Idea into an Architecture","2026-06-26",[6180,6207],{"path":6272,"title":6273,"date":6274,"tags":6275},"\u002Fblog\u002F2026\u002F06\u002Fopcua-to-influxdb","Historical Data Logging with OPC UA and InfluxDB","2026-06-24",[6207,6180,6276],"opcua",{"path":6278,"title":6279,"date":6280,"tags":6281},"\u002Fblog\u002F2026\u002F06\u002Fprocess-rtsp-camera-feeds-at-the-edge","Processing RTSP Camera Feeds at the Edge","2026-06-23",[6180,6207],{"path":6283,"title":6284,"date":6285,"tags":6286},"\u002Fblog\u002F2026\u002F06\u002Fplc-communication-latency-causes-and-fixes","Fixing PLC Communication Latency: Where the Milliseconds Really Go","2026-06-17",[6207,6287],"plc",{"path":6289,"title":6290,"date":6291,"tags":6292},"\u002Fblog\u002F2026\u002F06\u002Fevent-driven-downtime-escalation-workflow","Why Downtime Spreadsheets Fail and How to Automate Detection and Escalation","2026-06-12",[5241],{"path":6294,"title":6295,"date":6296,"tags":6297},"\u002Fblog\u002F2026\u002F06\u002Fmqtt-vs-sparkplug-b","MQTT vs Sparkplug B: Which One (or Both) Do You Need?","2026-06-11",[6207,5243,6298],"sparkplug",{"path":6300,"title":6301,"date":6302,"tags":6303},"\u002Fblog\u002F2026\u002F06\u002Fnode-red-5-on-flowfuse","Node-RED 5 Is Here: What It Means for Industrial Teams","2026-06-09",[6180,5242],{"path":6305,"title":6306,"date":6307,"tags":6308},"\u002Fblog\u002F2026\u002F06\u002Fopc-ua-security-best-practices","OPC UA Security: How to Establish a Defensible OPC UA Security Architecture","2026-06-05",[6207,6276,6309],"security",{"path":6311,"title":6312,"date":6313,"tags":6314},"\u002Fblog\u002F2026\u002F06\u002Fflowfuse-release-2-31","FlowFuse 2.31: Agentic Development Now in Open Beta, FlowFuse Expert Builds Your Industrial App on Edge Devices","2026-06-04",[6180,6214,6215],{"path":6316,"title":6317,"date":6313,"tags":6318},"\u002Fblog\u002F2026\u002F06\u002Fscaling-manufacturing-data-integration","How Arch Systems Connected 100+ Factory Databases with FlowFuse",[6180],{"path":6320,"title":6321,"date":6322,"tags":6323},"\u002Fblog\u002F2026\u002F05\u002Fopc-ua-security-attack-vectors","OPC UA Security: How Threat Actors Exploit Industrial Protocol Vulnerabilities","2026-05-29",[5241,6180,6276],{"path":6325,"title":6326,"date":6327,"tags":6328},"\u002Fblog\u002F2026\u002F05\u002Fnis2-iec-62443-manufacturers","NIS2 Compliance for Manufacturers: Why IEC 62443 Is the Missing Standard","2026-05-28",[6180],{"path":6330,"title":6331,"date":6332,"tags":6333},"\u002Fblog\u002F2026\u002F05\u002Fgit-snapshot-for-iiot-flows","See Every Logic Change in Your IIoT MOC Review with Git-Style Diffs","2026-05-21",[6180],{"path":6335,"title":6336,"date":6337,"tags":6338},"\u002Fblog\u002F2026\u002F05\u002Fmanufacturing-software-built-in-stages","All-or-Nothing Manufacturing Software Is Killing Your Agility","2026-05-18",[6180],{"path":6340,"title":6341,"date":6342,"tags":6343},"\u002Fblog\u002F2026\u002F05\u002Fflowfuse-expert-building-flows","How to Build Industrial Apps With FlowFuse AI Expert","2026-05-13",[6180,6344],"ai",{"path":6346,"title":6347,"date":6348,"tags":6349},"\u002Fblog\u002F2026\u002F05\u002Ffixing-oee-measurement-in-manufacturing","OEE Is Misleading Your Factory: Here's How to Fix It","2026-05-07",[6180],{"path":6351,"title":6352,"date":6348,"tags":6353},"\u002Fblog\u002F2026\u002F05\u002Fflowfuse-release-2-30","FlowFuse 2.30: Expert Builds Your Industrial Application",[6180,6214,6215],{"path":6355,"title":6356,"date":6357,"tags":6358},"\u002Fblog\u002F2026\u002F04\u002Frosetta-stone-for-industrial-data","The Rosetta Stone for Factories: Why IIoT Needs a Common Language First","2026-04-30",[6180],{"path":6360,"title":6361,"date":6362,"tags":6363},"\u002Fblog\u002F2026\u002F04\u002Fdiagnosing-modbus-degradation","Diagnosing Modbus Degradation: From CRC Errors to TCP Timeouts","2026-04-29",[6180,6364],"modbus",{"path":6366,"title":6367,"date":6368,"tags":6369},"\u002Fblog\u002F2026\u002F04\u002Fcloud-edge-or-hybrid-how-to-choose-your-flowfuse-deployment","Cloud, Edge, or Both? How to Choose Your Deployment Before an Outage Does It For You","2026-04-24",[6180],{"path":6371,"title":6372,"date":6373,"tags":6374},"\u002Fblog\u002F2026\u002F04\u002Fstop-noisy-sensor-data-deadband-filter-flowfuse","How to Stop Noisy Sensor Data from Flooding Your Industrial System","2026-04-23",[6180],{"path":6376,"title":6377,"date":6378,"tags":6379},"\u002Fblog\u002F2026\u002F04\u002Fit-vs-ot-who-owns-the-edge","IT vs. OT: Who Actually Owns the Edge?","2026-04-17",[6180],{"path":6381,"title":6382,"date":6383,"tags":6384},"\u002Fblog\u002F2026\u002F04\u002Fconnect-industrial-edge-devices-aws-iot-core","How to Connect Industrial Edge Devices to AWS IoT Core","2026-04-16",[6180],{"path":6386,"title":6387,"date":6388,"tags":6389},"\u002Fblog\u002F2026\u002F04\u002Fflowfuse-release-2-29","FlowFuse 2.29: FlowFuse Expert Comes to Self-Hosted Enterprise","2026-04-09",[6180,6214,6215,6344],{"path":6391,"title":6392,"date":6393,"tags":6394},"\u002Fblog\u002F2026\u002F04\u002Fwhy-simplicity-wins-in-iiot","The Real Cost of Over-Engineered Industrial Systems","2026-04-08",[6180],{"path":6396,"title":6397,"date":6398,"tags":6399},"\u002Fblog\u002F2026\u002F04\u002Fmodbus-polling-best-practices","Most Modbus Polling Setups Are Wrong: Here's How to Fix Yours","2026-04-03",[6180,6364],{"path":6401,"title":6402,"date":6403,"tags":6404},"\u002Fblog\u002F2026\u002F03\u002Fwhy-opcua-is-not-replacing-modbus-yet","Why OPC UA Is Not Replacing Modbus (Yet)","2026-03-30",[6180,6276,6364],{"path":6406,"title":6407,"date":6408,"tags":6409},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-parse-binary-data-serial-devices","How to Parse Binary Data from Serial Devices","2026-03-27",[6180],{"path":6411,"title":6412,"date":6408,"tags":6413},"\u002Fblog\u002F2026\u002F03\u002Frethinking-edge-ais-core-orchestration","Rethinking Edge AI's Core Orchestration",[6180,6344],{"path":6415,"title":6416,"date":6417,"tags":6418},"\u002Fblog\u002F2026\u002F03\u002Fai-usecases-in-factory","5 Places Smart Factories Are Already Using AI","2026-03-24",[6180,6344],{"path":6420,"title":6421,"date":6422,"tags":5224},"\u002Fblog\u002F2026\u002F03\u002Fenterprise-packaging-updates","FlowFuse Enterprise: More Power, More Confidence","2026-03-23",{"path":6424,"title":6425,"date":6426,"tags":6427},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-monitor-industrial-network-usign-snmp","How to Monitor Industrial Network Health Using SNMP","2026-03-20",[6180],{"path":6429,"title":6430,"date":6431,"tags":6432},"\u002Fblog\u002F2026\u002F03\u002Fedge-ai-vs-cloud-ai-in-iiot","Edge vs Cloud AI in Manufacturing: Where Each Actually Belongs","2026-03-16",[6180],{"path":6434,"title":6435,"date":6436,"tags":6437},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-connect-to-twincat-using-ads","How to Connect to Beckhoff TwinCAT PLC Using ADS (2026)","2026-03-13",[6180,6287],{"path":6439,"title":6440,"date":6441,"tags":6442},"\u002Fblog\u002F2026\u002F03\u002Fflowfuse-release-2-28","FlowFuse 2.28: Troubleshoot Faster, Manage Edge Devices Centrally, and More Self-Hosted Flexibility","2026-03-12",[6180,6214,6215],{"path":6444,"title":6445,"date":6446,"tags":6447},"\u002Fblog\u002F2026\u002F03\u002Flast-mile-problem-ai","The Last Mile Problem in Industrial AI","2026-03-09",[6180,6344],{"path":6449,"title":6450,"date":6451,"tags":6452},"\u002Fblog\u002F2026\u002F03\u002Fhow-to-implement-dlq-and-retries","How to Stop Silent Pipeline Failures From Swallowing Your IIoT Data","2026-03-05",[6180],{"path":6454,"title":6455,"date":6456,"tags":6457},"\u002Fblog\u002F2026\u002F03\u002Fbus-factory-problem-in-manufacturing","The Bus Factor Problem in Integration Systems","2026-03-02",[6180],{"path":6459,"title":6460,"date":6461,"tags":6462},"\u002Fblog\u002F2026\u002F02\u002Fedge-ai-is-80-percent-pipeline-and-20-percent-ai","Edge AI Is 80% Plumbing, 20% Intelligence","2026-02-27",[6180,6344],{"path":6464,"title":6465,"date":6466,"tags":6467},"\u002Fblog\u002F2026\u002F02\u002Fmqtt-influxdb-tutorial","How to Build an MQTT-to-InfluxDB Data Pipeline (2026)","2026-02-26",[6180,5243],{"path":6469,"title":6470,"date":6471,"tags":6472},"\u002Fblog\u002F2026\u002F02\u002Fmodbus-tcp-vs-modbus-rtu","Modbus TCP vs Modbus RTU: Reliability, Latency, and Failure Modes","2026-02-20",[6180,6364],{"path":6474,"title":6475,"date":6471,"tags":6476},"\u002Fblog\u002F2026\u002F02\u002Fmotor-anomaly-detector-ai","Building an AI Vibration Anomaly Detector for Industrial Motors",[6180,6344],{"path":6478,"title":6479,"date":6480,"tags":6481},"\u002Fblog\u002F2026\u002F02\u002Fgetting-started-with-canbus","CAN Bus Tutorial: Connect to Dashboards, Cloud, and Industrial Systems","2026-02-13",[6180],{"path":6483,"title":6484,"date":6485,"tags":6486},"\u002Fblog\u002F2026\u002F02\u002Fflowfuse-release-2-27","FlowFuse 2.27: Integrated Editor in Remote Instances & Context-Aware FlowFuse Expert","2026-02-12",[6180,6214,6215],{"path":6488,"title":6489,"date":6490,"tags":6491},"\u002Fblog\u002F2026\u002F02\u002Fwhat-is-event-driven-architecture-in-manufacturing","Event-Driven Architecture: 99% of Your System Requests Are Worthless","2026-02-10",[6180],{"path":6493,"title":6494,"date":6495,"tags":6496},"\u002Fblog\u002F2026\u002F02\u002Fmapping-mtconnect-streams","Mapping MTConnect Streams for Dashboard Visualization","2026-02-06",[6180],{"path":6498,"title":6499,"date":6495,"tags":6500},"\u002Fblog\u002F2026\u002F02\u002Fshop-floor-to-ai-signals-context-decisions","Shop Floor AI: Dead on Arrival Without This",[6180,6344],{"path":6502,"title":6503,"date":6504,"tags":6505},"\u002Fblog\u002F2026\u002F02\u002Fmqtt-vs-coap","MQTT vs CoAP: Measure Your Constraints or Pick Wrong","2026-02-05",[6180,5243],{"path":6507,"title":6508,"date":6509,"tags":6510},"\u002Fblog\u002F2026\u002F01\u002Feliminate-opc-ua-bottleneck-ai-agents","Agentic AI Reads OPC UA Servers So You Don't Have To","2026-01-30",[6180,6276],{"path":6512,"title":6513,"date":6514,"tags":6515},"\u002Fblog\u002F2026\u002F01\u002Fwhy-modbus-still-exist","Why Modbus Refuses to Die","2026-01-26",[6180,6364],{"path":6517,"title":6518,"date":6519,"tags":6520},"\u002Fblog\u002F2026\u002F01\u002Fopcua-vs-mqtt","MQTT vs OPC UA: Why This Question Never Has a Straight Answer","2026-01-21",[6180,6276,5243],{"path":6522,"title":6523,"date":6524,"tags":6525},"\u002Fblog\u002F2026\u002F01\u002Fkepware-opcua-better-alternative","Beyond Kepware: Why Modern Industrial Connectivity Demands a Second Look","2026-01-16",[6180,6276],{"path":6527,"title":6528,"date":6529,"tags":6530},"\u002Fblog\u002F2026\u002F01\u002Fflowfuse-release-2-26","FlowFuse 2.26: Bringing access-controls to your MCP nodes","2026-01-15",[6180,6214,6215,6344],{"path":6532,"title":6533,"date":6534,"tags":6535},"\u002Fblog\u002F2026\u002F01\u002Fwhat-is-system-integrator","What Is a System Integrator? Understanding Manufacturing's Most Misunderstood Role","2026-01-13",[6180],{"path":6537,"title":6538,"date":6539,"tags":6540},"\u002Fblog\u002F2026\u002F01\u002Fhow-to-integrate-node-red-with-git","Integrating Git within Node-RED Workflow with FlowFuse","2026-01-06",[6180],{"path":6542,"title":6543,"date":6544,"tags":6545},"\u002Fblog\u002F2026\u002F01\u002Fnode-red-history-community-industrial-iot-flowfuse","The Node-RED Story: How Visual Programming Escaped the Lab and Conquered Industry","2026-01-05",[5242],{"path":6547,"title":6548,"date":6549,"tags":6550},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-mttf","Mean Time to Failure (MTTF): Formula, Calculation, MTTF vs MTBF vs MTTR, and More","2025-12-29",[6180],{"path":6552,"title":6553,"date":6554,"tags":6555},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-plc","What Is a PLC (Programmable Logic Controller)? What It Does, How It Works, and Where It's Used","2025-12-26",[6180,6287],{"path":6557,"title":6558,"date":6559,"tags":6560},"\u002Fblog\u002F2025\u002F12\u002Fnode-red-timer","Node-RED Timer Tutorial: Create Stopwatch and Countdown Timers","2025-12-24",[5242],{"path":6562,"title":6563,"date":5228,"tags":6564},"\u002Fblog\u002F2025\u002F12\u002Ffive-whys-root-cause-analysis-definition-examples","Five Whys Root Cause Analysis: Definition, Steps & Examples (2026)",[6180],{"path":6566,"title":6567,"date":6568,"tags":6569},"\u002Fblog\u002F2025\u002F12\u002Fwhat-is-teep","What is TEEP? Calculation, Benchmarks & TEEP vs OEE (2026)","2025-12-19",[6180],{"path":6571,"title":6572,"date":6573,"tags":6574},"\u002Fblog\u002F2025\u002F12\u002Fflowfuse-release-2-25","FlowFuse 2.25: Interacting with MCP Resources in FlowFuse Expert, Improved Update Scheduling, and lots of UI improvements!","2025-12-18",[6180,6214,6215],{"path":6576,"title":6577,"date":6578,"tags":6579},"\u002Fblog\u002F2025\u002F12\u002Fkafka-vs-mqtt","MQTT vs Kafka: Complete Comparison Guide 2026","2025-12-17",[6180,5243,6580],"kafka",{"path":6582,"title":6583,"date":6584,"tags":6585},"\u002Fblog\u002F2025\u002F12\u002Fnode-red-buffer-parser-industrial-data","Node-RED Buffer Parser Guide: Decode Modbus and Industrial Device Data (2026)","2025-12-10",[6180,6202],{"path":6587,"title":6588,"date":6589,"tags":6590},"\u002Fblog\u002F2025\u002F12\u002Fgetting-weather-data-in-node-red","Building a Weather Dashboard in Node-RED (2026)","2025-12-05",[5242],{"path":6592,"title":6593,"date":6594,"tags":6595},"\u002Fblog\u002F2025\u002F12\u002Fread-s7-optimized-datablocks-flowfuse","How to Access Optimized Data Blocks in TIA Portal (S7-1200\u002F1500)","2025-12-04",[6180,6287],{"path":6597,"title":6598,"date":6599,"tags":6600},"\u002Fblog\u002F2025\u002F11\u002Foptimize-industrial-data-protocol-buffers","How to Optimize Industrial Data Communication with Protocol Buffers","2025-11-28",[6180],{"path":6602,"title":6603,"date":6604,"tags":6605},"\u002Fblog\u002F2025\u002F11\u002Findustrial-data-validation-guide","How to Protect Your Factory From Bad Data: A Must-Have Read for IIoT","2025-11-27",[6180],{"path":6607,"title":6608,"date":6609,"tags":6610},"\u002Fblog\u002F2025\u002F11\u002Fstore-and-forward-edge-data-buffering","Store-and-Forward at the Edge: Buffering Production Data During Network Outages","2025-11-21",[6180,6287],{"path":6612,"title":6613,"date":6614,"tags":6615},"\u002Fblog\u002F2025\u002F11\u002Fflowfuse-release-2-24","FlowFuse 2.24: FlowFuse Expert in the Node-RED Editor, Scheduled Updates, Simpler Edge Device Addition, Store and Forward Blueprint, and what's next!","2025-11-20",[6180,6214,6215,6344],{"path":6617,"title":6618,"date":6619,"tags":6620},"\u002Fblog\u002F2025\u002F11\u002Fbuilding-hmi-for-equipment-control","Building a Web HMI for Factory Equipment Control","2025-11-19",[6180,6287],{"path":6622,"title":6623,"date":6624,"tags":6625},"\u002Fblog\u002F2025\u002F11\u002Fflowfuse+llm+mcp-equals-text-driven-operations","FlowFuse + LLM + MCP = Text Driven Operations","2025-11-12",[6180,5242,6344],{"path":6627,"title":6628,"date":6629,"tags":6630},"\u002Fblog\u002F2025\u002F11\u002Fbuilding-label-scanner-with-flowfuse","Building a Label Scanner with FlowFuse for Product Labels & Serial Numbers","2025-11-11",[6180],{"path":6632,"title":6633,"date":6634,"tags":6635},"\u002Fblog\u002F2025\u002F11\u002Fcsv-mqtt-database-dashboard-flowfuse","How to Ingest CSV Logs into MQTT, Databases, and Dashboards","2025-11-10",[6180,5243],{"path":6637,"title":6638,"date":6639,"tags":6640},"\u002Fblog\u002F2025\u002F11\u002Fptc-kepware-thingworx-divestment","The Industrial IoT Market Shift: What the PTC Divestment Means for Your Data Strategy","2025-11-06",[6180,5242,6641,6642,6643],"kepware","thingworx","industrial-iot",{"path":6645,"title":6646,"date":6647,"tags":6648},"\u002Fblog\u002F2025\u002F10\u002Fplc-to-mqtt-using-flowfuse","How to Connect Any PLC to MQTT in Under an Hour","2025-10-27",[6180,6364,5243,6287],{"path":6650,"title":6651,"date":6652,"tags":6653},"\u002Fblog\u002F2025\u002F10\u002Fflowfuse-release-2-23","FlowFuse 2.23: MCP and ONNX nodes, FlowFuse AI Expert on the homepage, Application-level Permission Control, FlowFuse Expert for Self-Hosted, and more!","2025-10-23",[6180,6214,6215,6344],{"path":6655,"title":6656,"date":6657,"tags":6658},"\u002Fblog\u002F2025\u002F10\u002Fhow-to-log-plc-data-csv-files","How to Log PLC Data to CSV Files","2025-10-22",[6180,6287],{"path":6660,"title":6661,"date":6662,"tags":6663},"\u002Fblog\u002F2025\u002F10\u002Fintroducing-flowfuse-expert","Introducing FlowFuse Expert","2025-10-16",[6180,6664],"AI",{"path":6666,"title":6667,"date":6668,"tags":6669},"\u002Fblog\u002F2025\u002F10\u002Fbuilding-mcp-server-using-flowfuse","Building MCP Servers for AI Agent Integration in Node-RED with FlowFuse","2025-10-14",[6180,6664],{"path":6671,"title":6672,"date":6673,"tags":6674},"\u002Fblog\u002F2025\u002F10\u002Fai-on-flowfuse","MCP and Custom AI Models on FlowFuse!","2025-10-13",[6180,5242,6207,6344],{"path":6676,"title":6677,"date":6678,"tags":6679},"\u002Fblog\u002F2025\u002F10\u002Fcustom-onnx-model","Deploy Custom-Trained AI Models: Using ONNX with Node-RED and FlowFuse","2025-10-10",[6180,6344],{"path":6681,"title":6682,"date":6678,"tags":6683},"\u002Fblog\u002F2025\u002F10\u002Fusing-ethernet-ip-with-flowfuse","EtherNet\u002FIP Integration with FlowFuse: Communicating with Allen-Bradley PLCs",[6180,5242,6207,6287],{"path":6685,"title":6686,"date":6687,"tags":6688},"\u002Fblog\u002F2025\u002F10\u002Fnode-red-revolution","The Node-RED Revolution: How Low-Code is Democratizing Industrial Automation","2025-10-09",[6180,5242],{"path":6690,"title":6691,"date":6687,"tags":6692},"\u002Fblog\u002F2025\u002F10\u002Fthe-ai-orchestration-hype","Beyond Cloud AI Orchestration: Why the Future is Hybrid Edge-Cloud Intelligence",[6180,5242,6344],{"path":6694,"title":6695,"date":6696,"tags":6697},"\u002Fblog\u002F2025\u002F10\u002Fnode-red-vs-flowfuse","What's the Difference Between Node-RED and FlowFuse","2025-10-08",[6180],{"path":6699,"title":6700,"date":6701,"tags":6702},"\u002Fblog\u002F2025\u002F10\u002Fopen-ai-agent-builder-versus-flowfuse","OpenAI's AgentKit or FlowFuse: Choosing the Right Low-Code App for Your Needs","2025-10-07",[6180,5241,6344],{"path":6704,"title":6705,"date":6706,"tags":6707},"\u002Fblog\u002F2025\u002F09\u002Fusing-modbus-with-flowfuse","Modbus RTU (RS485\u002FRS422\u002FRS232) Communications with FlowFuse","2025-09-26",[6180,6364],{"path":6709,"title":6710,"date":6711,"tags":6712},"\u002Fblog\u002F2025\u002F09\u002Fflowfuse-release-2-22","FlowFuse 2.22: FlowFuse Expert for node editing, FlowFuse Broker schema autodetection, Improved Snapshots Interface, eCharts enablement, and FlowFuse Dashboard Updates","2025-09-25",[6180,6214,6215],{"path":6714,"title":6715,"date":6711,"tags":6716},"\u002Fblog\u002F2025\u002F09\u002Fwhat-is-takt-time","Takt Time: Definition, Formula, How to Calculate with Examples & More [2026 Edition]",[6180],{"path":6718,"title":6719,"date":6720,"tags":6721},"\u002Fblog\u002F2025\u002F09\u002Finstalling-node-red","Download Node-RED for Production: Windows, Mac, Linux, Raspberry Pi (2026)","2025-09-19",[6180,5242],{"path":6723,"title":6724,"date":6725,"tags":6726},"\u002Fblog\u002F2025\u002F09\u002Fai-assistant-flowfuse-tables","Query Your Database with Natural Language Using FlowFuse Expert","2025-09-18",[6180,6344],{"path":6728,"title":6729,"date":6730,"tags":6731},"\u002Fblog\u002F2025\u002F09\u002Fintegrating-lorawan-with-flowfuse-node-red","Integrating LoRaWAN with FlowFuse","2025-09-17",[6180],{"path":6733,"title":6734,"date":6735,"tags":6736},"\u002Fblog\u002F2025\u002F09\u002Fpoka-yoke-mistake-proofing","Poka Yoke (Poke Yoke, Bokayoke) Explained: Definition, Examples, Types (2026)","2025-09-11",[6180],{"path":6738,"title":6739,"date":6740,"tags":6741},"\u002Fblog\u002F2025\u002F09\u002Fwhat-is-5s-checklist","What is 5S Checklist: Definition, Benefits, Implementation, and Template","2025-09-10",[6180,6191],{"path":6743,"title":6744,"date":6745,"tags":6746},"\u002Fblog\u002F2025\u002F09\u002Fit-vs-ot-difference-between-information-technology-and-operational-technology","IT vs OT: Key Differences, Security Risks, and IT\u002FOT Convergence","2025-09-08",[6180],{"path":6748,"title":6749,"date":6750,"tags":6751},"\u002Fblog\u002F2025\u002F09\u002Fpreventive-maintenance-equipment-failure","Preventive Maintenance in Manufacturing: Avoid Multi-Million Dollar Equipment Failures","2025-09-04",[6180],{"path":6753,"title":6754,"date":6755,"tags":6756},"\u002Fblog\u002F2025\u002F09\u002Fcreating-pareto-chart","How to Create a Pareto Chart for Manufacturing Data","2025-09-02",[6757,6201,6758],"pareto-chart","data-analysis",{"path":6760,"title":6761,"date":6762,"tags":6763},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-node-red-api","FlowFuse API for Industry: Automating Node-RED Instances, Devices, and CI\u002FCD Tasks","2025-08-29",[6180],{"path":6765,"title":6766,"date":6767,"tags":6768},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-release-2-21","FlowFuse 2.21: AI-Assisted SQL, Low-Code Custom Nodes, and Remote Instance Performance Insights","2025-08-28",[6180,6214,6215,6344],{"path":6770,"title":6771,"date":6767,"tags":6772},"\u002Fblog\u002F2025\u002F08\u002Fpareto-chart-manufacturing-guide","Pareto Chart & Diagram: What It Is, Formula, Examples & Manufacturing Applications",[6180],{"path":6774,"title":6775,"date":6776,"tags":6777},"\u002Fblog\u002F2025\u002F08\u002Fannual_billing","Save with FlowFuse Annual Billing – Now Available!","2025-08-22",[6180,6214],{"path":6779,"title":6780,"date":6776,"tags":6781},"\u002Fblog\u002F2025\u002F08\u002Forchestrating-virtual-power-plants-low-code-platforms","Orchestrating Virtual Power Plants: How Low-Code Platforms Bridge the Gap",[6180],{"path":6783,"title":6784,"date":6785,"tags":6786},"\u002Fblog\u002F2025\u002F08\u002Ftime-series-dashboard-flowfuse-postgresql","Building Historical Data Dashboard with FlowFuse Tables","2025-08-21",[6180],{"path":6788,"title":6789,"date":6790,"tags":6791},"\u002Fblog\u002F2025\u002F08\u002Fopen-source-software-and-manufacturing","Winning Through Open-Source Software in Manufacturing Digitalization","2025-08-20",[6180,5242],{"path":6793,"title":6794,"date":6795,"tags":6796},"\u002Fblog\u002F2025\u002F08\u002Fadvanced-opcua-real-time-subscriptions-alarms-historical-data","OPC UA Tutorial: Advanced Monitoring with Subscriptions, Alarms, and Historical Data","2025-08-14",[6180,6276],{"path":6798,"title":6799,"date":6800,"tags":6801},"\u002Fblog\u002F2025\u002F08\u002Fflowfuse-why-pricing-matters","The Evolution of Business Automation: Why Pricing Models Matter","2025-08-08",[6180],{"path":6803,"title":6804,"date":6800,"tags":6805},"\u002Fblog\u002F2025\u002F08\u002Fgetting-started-with-flowfuse-tables","FlowFuse's New Database: The Easiest Way to Store Industrial IoT Data",[6180],{"path":6807,"title":6808,"date":6809,"tags":6810},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-release-2-20","FlowFuse 2.20: AI-Assisted Node-RED & New Database Service","2025-07-31",[6180,6214,6215,6344],{"path":6812,"title":6813,"date":6814,"tags":6815},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-ai-assistant-better-node-red-manufacturing","FlowFuse Expert: Let Your Engineers Build Automation, Not Write Code","2025-07-29",[6180],{"path":6817,"title":6818,"date":6819,"tags":6820},"\u002Fblog\u002F2025\u002F07\u002Fquality-control-automation-spc-charts","Statistical Process Control (SPC): Benefits and Implementation Guide","2025-07-24",[5241,6180],{"path":6822,"title":6823,"date":6824,"tags":6825},"\u002Fblog\u002F2025\u002F07\u002Freading-and-writing-plc-data-using-opc-ua","OPC UA Tutorial: Connect and Exchange Data with Industrial Equipment","2025-07-16",[6180,6276,6287],{"path":6827,"title":6828,"date":6829,"tags":6830},"\u002Fblog\u002F2025\u002F07\u002Fconnect-legacy-equipment-serial-flowfuse","Node-RED Serial Port Tutorial: Connect RS232\u002FRS485 Manufacturing Equipment (2026)","2025-07-09",[6180,6276,6202],{"path":6832,"title":6833,"date":6834,"tags":6835},"\u002Fblog\u002F2025\u002F07\u002Fflowfuse-release-2-19","FlowFuse 2.19: More Powerful AI in Node-RED, Drop-In Blueprints, Memory Monitoring, and Faster Onboarding","2025-07-03",[6180,6214,6215],{"path":6837,"title":6838,"date":6834,"tags":6839},"\u002Fblog\u002F2025\u002F07\u002Fsmart-manufacturing-order-panel-flowfuse","How we Built a Smart Manufacturing Order Execution Panel with FlowFuse",[6180,6840],"mes",{"path":6842,"title":6843,"date":6844,"tags":6845},"\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2","Curated Node-RED Integrations: FlowFuse Certified Nodes 2.0","2025-07-01",[6180,5242,6846,6847],"certified-nodes","developers",{"path":6849,"title":6850,"date":6851,"tags":6852},"\u002Fblog\u002F2025\u002F06\u002Fbuilding-andon-task-manager-dashboard-with-ff","Part 2: Building an Andon Task Manager with FlowFuse","2025-06-26",[6180],{"path":6854,"title":6855,"date":6856,"tags":6857},"\u002Fblog\u002F2025\u002F06\u002Fshop-floor-kpis-for-mes","What to Measure on the Shop Floor: Factory KPIs Your MES Should Deliver","2025-06-20",[6180,6840],{"path":6859,"title":6860,"date":6861,"tags":6862},"\u002Fblog\u002F2025\u002F06\u002Fstructuring-storing-data-mes-integration","Structuring and Storing Data for Effective MES Integration","2025-06-18",[6180,6840],{"path":6864,"title":6865,"date":6866,"tags":6867},"\u002Fblog\u002F2025\u002F06\u002Fdata-acquisition-for-mes","MES Data Acquisition: How to Unlock Your Factory’s Hidden Data","2025-06-13",[6180,6840],{"path":6869,"title":6870,"date":6871,"tags":6872},"\u002Fblog\u002F2025\u002F06\u002Fannouncing-node-red-con-2025","Announcing Node-RED Con 2025: A Community Conference on Industrial Applications","2025-06-12",[6180,6214,6265,5242],{"path":6874,"title":6875,"date":6876,"tags":6877},"\u002Fblog\u002F2025\u002F06\u002Fflowfuse-forms-easy-data-collection-factory-floor","FlowFuse Forms: Easy Data Collection for Your Factory Floor","2025-06-10",[6180],{"path":6879,"title":6880,"date":6876,"tags":6881},"\u002Fblog\u002F2025\u002F06\u002Foptimizing-operations-improve-industrial-operations-with-flowfuse","Optimizing operations: Improve Industrial Operations with FlowFuse",[6180,6214,6882],"funding",{"path":6884,"title":6885,"date":6886,"tags":6887},"\u002Fblog\u002F2025\u002F06\u002Fflowfuse-release-2-18","FlowFuse 2.18: Smarter Monitoring, AI Integration, Improved DevOps, and a preview of exciting things to come","2025-06-05",[6180,6214,6215,6344],{"path":6889,"title":6890,"date":6886,"tags":6891},"\u002Fblog\u002F2025\u002F06\u002Fwhat-is-mes","What Is MES (Manufacturing Execution System)? How It Works, Benefits, and Challenges",[6180,6840],{"path":6893,"title":6894,"date":6895,"tags":6896},"\u002Fblog\u002F2025\u002F06\u002Fconnect-shop-floor-to-odoo-erp-flowfuse","Connect Your Shop Floor to Your ERP – Odoo Edition","2025-06-02",[6180],{"path":6898,"title":6899,"date":6900,"tags":6901},"\u002Fblog\u002F2025\u002F05\u002Fdesigning-flexible-cron-schedules-in-flowfuse-with-node-red","Building a Flexible Node-RED Scheduler with Cron-Plus","2025-05-15",[6180],{"path":6903,"title":6904,"date":6905,"tags":6906},"\u002Fblog\u002F2025\u002F05\u002Fdisplaying-embeded-webpages-on-node-red-dashboard","How to Embed Webpages on the FlowFuse Dashboard","2025-05-13",[6180],{"path":6908,"title":6909,"date":6910,"tags":6911},"\u002Fblog\u002F2025\u002F05\u002Fbuilding-andon-task-manager-with-ff","Part 1: Building an Andon Task Manager with FlowFuse","2025-05-08",[6180],{"path":6913,"title":6914,"date":6910,"tags":6915},"\u002Fblog\u002F2025\u002F05\u002Fflowfuse-release-2-17","FlowFuse 2.17: Easier remote instance onboarding, Dashboard blueprint, PDF generation, and more",[6180,6214,6215],{"path":6917,"title":6918,"date":6919,"tags":6920},"\u002Fblog\u002F2025\u002F05\u002Fhow-to-generate-pdf-reports-using-node-red","How to Generate PDF Reports Using Node-RED in FlowFuse (2026)","2025-05-07",[6180,6202],{"path":6922,"title":6923,"date":6924,"tags":6925},"\u002Fblog\u002F2025\u002F04\u002Fdesign-and-scale-oee-dashboard","How to Design and Scale an OEE Dashboard for Factory Screens","2025-04-16",[6180],{"path":6927,"title":6928,"date":6929,"tags":6930},"\u002Fblog\u002F2025\u002F04\u002Fflowfuse-release-2-16","FlowFuse 2.16: Git Integration, improved log retention and more","2025-04-10",[6180,6214,6215],{"path":6932,"title":6933,"date":6934,"tags":6935},"\u002Fblog\u002F2025\u002F04\u002Fbuild-manufacturing-oee-dashboard","How to Build a Manufacturing OEE Dashboard with FlowFuse","2025-04-09",[6180],{"path":6937,"title":6938,"date":6939,"tags":6940},"\u002Fblog\u002F2025\u002F04\u002Fwhat-is-an-oee-dashboard","What Is an OEE Dashboard? KPIs, Metrics, and How to Plan One","2025-04-01",[6180],{"path":6942,"title":6943,"date":6944,"tags":6945},"\u002Fblog\u002F2025\u002F03\u002Fmanaging-mqtt-connections-at-scale-in-flowfuse","Managing MQTT Connections at Scale in FlowFuse","2025-03-28",[6180,5243],{"path":6947,"title":6948,"date":6949,"tags":6950},"\u002Fblog\u002F2025\u002F03\u002Fflowfuse-release-2-15","FlowFuse 2.15: Personal Node Collections, Smart Schema Suggestions and more control in DevOps Pipelines!","2025-03-12",[6180,6214,6215],{"path":6952,"title":6953,"date":6954,"tags":6955},"\u002Fblog\u002F2025\u002F02\u002Fmonitoring-system-health-performance-scale-flowfuse","Monitoring Device Health and Performance at Scale with FlowFuse","2025-02-21",[5242,6180],{"path":6957,"title":6958,"date":6959,"tags":6960},"\u002Fblog\u002F2025\u002F02\u002Finteracting-with-arduino-using-node-red","Interacting with Arduino using Node-RED","2025-02-12",[5242],{"path":6962,"title":6963,"date":6964,"tags":6965},"\u002Fblog\u002F2025\u002F02\u002Fflowfuse-release-2-14","FlowFuse 2.14: Announcing Third-Party Broker Integration, UNS Schemas, Enhanced Auth on Remote Instances and more!","2025-02-11",[6180,6214,6215],{"path":6967,"title":6968,"date":6969,"tags":6970},"\u002Fblog\u002F2025\u002F02\u002Fnode-red-academy-announcement","Announcing Node-RED Academy!","2025-02-05",[6180,5242,6971,6972,6214],"education","Node-RED Academy",{"path":6974,"title":6975,"date":6976,"tags":6977},"\u002Fblog\u002F2025\u002F01\u002Fdesigning-topic-hierarchy-for-your-uns","Designing a Clear Topic Structure for Your UNS","2025-01-31",[6180,6978,5243],"unified-namespace",{"path":6980,"title":6981,"date":6982,"tags":6983},"\u002Fblog\u002F2025\u002F01\u002Fhow-to-choose-right-iot-device-management-tool","How to Choose the Right IIoT Device Management Software for Your Business","2025-01-24",[6180],{"path":6985,"title":6986,"date":6987,"tags":6988},"\u002Fblog\u002F2025\u002F01\u002Fwhy-flowfuse-is-complete-toolkit-for-uns","Why FlowFuse is the Complete Toolkit For Building UNS?","2025-01-20",[6180,6989,6978],"flowfuse features",{"path":6991,"title":6992,"date":6993,"tags":6994},"\u002Fblog\u002F2025\u002F01\u002Fintegrating-siemens-s7-plcs-with-node-red-guide","How to Read and Write Siemens S7 PLC Data, A Node-RED Guide (2026)","2025-01-17",[5242,6180,6287,6202],{"path":6996,"title":6997,"date":6998,"tags":6999},"\u002Fblog\u002F2025\u002F01\u002Fflowfuse-release-2-13","FlowFuse 2.13: Remote Instances, UNS Schemas & Improved Management at Scale","2025-01-16",[6180,6214,6215],{"path":7001,"title":7002,"date":7003,"tags":7004},"\u002Fblog\u002F2025\u002F01\u002Fmqtt-frontrunner-for-uns-part-2","MQTT: The Frontrunner for Your UNS Broker - Part 2","2025-01-13",[5243,7005,6978],"uns",{"path":7007,"title":7008,"date":7009,"tags":7010},"\u002Fblog\u002F2025\u002F01\u002Fmqtt-frontrunner-for-uns","MQTT: The Frontrunner for Your UNS Broker - Part 1","2025-01-07",[5243,7005,6978],{"path":7012,"title":7013,"date":7014,"tags":7015},"\u002Fblog\u002F2024\u002F12\u002Fflowfuse-release-2-12","FlowFuse Cloud now available for free!","2024-12-19",[6180,6214,6215],{"path":7017,"title":7018,"date":7019,"tags":7020},"\u002Fblog\u002F2024\u002F12\u002Fwhy-uns-need-data-modeling","Data Modeling: The Key to a Successful Unified Namespace","2024-12-16",[6180,6978,7021],"data modeling",{"path":7023,"title":7024,"date":7025,"tags":7026},"\u002Fblog\u002F2024\u002F12\u002Fflowfuse-team-collaboration","Streamlining Node-RED Collaboration with FlowFuse","2024-12-09",[6180,6989],{"path":7028,"title":7029,"date":7030,"tags":7031},"\u002Fblog\u002F2024\u002F12\u002Fpublishing-modbus-data-to-uns","How to Bridge Modbus to MQTT: Step-by-Step Guide","2024-12-04",[6180,7005,6364],{"path":7033,"title":7034,"date":7035,"tags":7036},"\u002Fblog\u002F2024\u002F11\u002Fbuilding-uns-with-flowfuse","Building a Unified Namespace (UNS) with FlowFuse","2024-11-28",[6180,6978,5243],{"path":7038,"title":7039,"date":7040,"tags":7041},"\u002Fblog\u002F2024\u002F11\u002Fintroducing-industrial-visionaries-podcast","Introducing the Industrial Visionaries Podcast!","2024-11-26",[5241,6180,7042],"Podcast",{"path":7044,"title":7045,"date":7040,"tags":7046},"\u002Fblog\u002F2024\u002F11\u002Fwhy-point-to-point-connection-is-dead","The Death of Point-to-Point: Why You Need a Unified Namespace",[6180,5243,6978],{"path":7048,"title":7049,"date":7050,"tags":7051},"\u002Fblog\u002F2024\u002F11\u002Fgetting-the-most-out-of-mqtt-for-industrial-iot","Getting the Most Out of MQTT for Industrial IoT","2024-11-25",[6207,6180,5243],{"path":7053,"title":7054,"date":7055,"tags":7056},"\u002Fblog\u002F2024\u002F11\u002Fflowfuse-release-2-11","FlowFuse 2.11: MQTT Topic Hierarchy, UI Revamp & Improved Logging","2024-11-21",[5241,6180,6215],{"path":7058,"title":7059,"date":7060,"tags":7061},"\u002Fblog\u002F2024\u002F11\u002Fwhy-pub-sub-in-uns","Why UNS needs Pub\u002FSub","2024-11-19",[6180,5243,6978],{"path":7063,"title":7064,"date":7065,"tags":7066},"\u002Fblog\u002F2024\u002F11\u002Fesp32-with-node-red","Interacting with ESP32 Using Node-RED and MQTT (2026)","2024-11-14",[5242,6202,5243],{"path":7068,"title":7069,"date":7070,"tags":7071},"\u002Fblog\u002F2024\u002F11\u002Fmigrating-from-node-red-to-flowfuse","Migrating from Self-Managed Node-RED to FlowFuse-Managed Node-RED","2024-11-13",[6180,6989],{"path":7073,"title":7074,"date":7075,"tags":7076},"\u002Fblog\u002F2024\u002F11\u002Fdevice-agent-as-service-on-mac","Run FlowFuse Device Agent as a service on MacOS using Docker","2024-11-12",[6180,6202],{"path":7078,"title":7079,"date":7080,"tags":7081},"\u002Fblog\u002F2024\u002F11\u002Fdashboard-new-group-type-app-icon-and-charts","Visual Layout Editor - Now Available in Dashboard","2024-11-08",[5241,6214,6180,6191],{"path":7083,"title":7084,"date":7085,"tags":7086},"\u002Fblog\u002F2024\u002F10\u002Fannouncement-mqtt-broker","MQTT Service Now Available on FlowFuse","2024-10-31",[5241,6214,6180,5242,5243],{"path":7088,"title":7089,"date":7090,"tags":7091},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-security-features","FlowFuse Security Features You Didn’t Know You Needed","2024-10-24",[6207,6180,6989,7092],"node-red security",{"path":7094,"title":7095,"date":7090,"tags":7096},"\u002Fblog\u002F2024\u002F10\u002Fflowfuse-release-2-10","FlowFuse 2.10: MQTT Broker, Improved Version Control & More!",[5241,6180,6215],{"path":7098,"title":7099,"date":7100,"tags":7101},"\u002Fblog\u002F2024\u002F10\u002Fmanaging-node-red-instances-in-centralize-platfrom","Transform Chaos into Control: Centralize Node-RED Management with FlowFuse","2024-10-18",[6207,6180],{"path":7103,"title":7104,"date":7105,"tags":7106},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-sbom-feature","FlowFuse's Software bills of material helps enhance Application Security and Management","2024-10-14",[6207,6180,7107,7108,7109,7110],"enhancing node-red security","flowfuse software bills of material","Sbom in the industrial applications","sbom open source",{"path":7112,"title":7113,"date":7114,"tags":7115},"\u002Fblog\u002F2024\u002F10\u002Fdashboard-new-group-type-app-icon-and-charts","Dialogs, Customizable Icons and Histograms Now Available in FlowFuse Dashboard","2024-10-11",[5241,6214,6180,6191],{"path":7117,"title":7118,"date":7119,"tags":7120},"\u002Fblog\u002F2024\u002F10\u002Fquick-ways-to-write-functions-in-node-red","Exploring Quick Ways to Write Complex Logic in Function Nodes in Node-RED","2024-10-09",[5241,7121,7122],"node-red function node","node red function node",{"path":7124,"title":7125,"date":7126,"tags":7127},"\u002Fblog\u002F2024\u002F10\u002Fexploring-flowfuse-project-nodes","Using FlowFuse Project Nodes for Faster and More Efficient Communication","2024-10-07",[6207,7128,7129,7130,7131],"flowfuse project nodes","node-red mqtt","node red mqtt","node red communication protocols",{"path":7133,"title":7134,"date":7135,"tags":7136},"\u002Fblog\u002F2024\u002F10\u002Fhow-to-build-automate-devops-pipelines-node-red-deployments","Creating and Automating DevOps Pipelines for Node-RED in Industrial Environments","2024-10-03",[7137,7138,7139],"node-red devops","node red devops","node red devops pipeline",{"path":7141,"title":7142,"date":7143,"tags":7144},"\u002Fblog\u002F2024\u002F09\u002Fflowfuse-release-2-9","FlowFuse 2.9: Software Bill of Materials & Public Static Assets","2024-09-26",[5241,6180,6215],{"path":7146,"title":7147,"date":7143,"tags":7148},"\u002Fblog\u002F2024\u002F09\u002Fnode-red-version-control-with-snapshots","Using Snapshots for Version Control in Node-RED with FlowFuse",[6180],{"path":7150,"title":7151,"date":7152,"tags":7153},"\u002Fblog\u002F2024\u002F09\u002Fhow-to-scrape-web-data-with-node-red","How to Scrape Data from Websites Using Node-RED","2024-09-16",[5242,6202],{"path":7155,"title":7156,"date":7157,"tags":7158},"\u002Fblog\u002F2024\u002F09\u002Fhow-to-use-subflow-in-node-red","How to create and use Subflow in Node-RED (2026)","2024-09-13",[5242,6202],{"path":7160,"title":7161,"date":7162,"tags":7163},"\u002Fblog\u002F2024\u002F08\u002Fflowfuse-2-8-release","FlowFuse 2.8: Static File Service, LDAP Updates & More","2024-08-29",[5241,6180,6215],{"path":7165,"title":7166,"date":7167,"tags":7168},"\u002Fblog\u002F2024\u002F08\u002Fdashboard-new-layout-widgets-and-gauges","New Layout, Widget and Gauges Now Available in FlowFuse Dashboard","2024-08-28",[5241,6214,6180,6191],{"path":5236,"title":5,"date":5225,"tags":7170},[5241,5242,5243],{"path":7172,"title":7173,"date":7174,"tags":7175},"\u002Fblog\u002F2024\u002F08\u002Fopentelemetry-with-node-red","Monitoring and Optimizing Node-RED Flows with Open Telemetry (2026)","2024-08-15",[6207,5242,7176,6202],"node-red tips",{"path":7178,"title":7179,"date":7180,"tags":7181},"\u002Fblog\u002F2024\u002F08\u002Fopc-ua-to-mqtt-with-node-red","Bridging OPC UA Data to MQTT with Node-RED (2026)","2024-08-13",[5241,5242,5243,6276,6202],{"path":7183,"title":7184,"date":7185,"tags":7186},"\u002Fblog\u002F2024\u002F08\u002Fcustomise-theming-in-your-dashboards","Customise theming in your FlowFuse Dashboard (2026)","2024-08-07",[5241,6191,7187,6202],"dashboard theming",{"path":7189,"title":7190,"date":7191,"tags":7192},"\u002Fblog\u002F2024\u002F08\u002Fcomparing-dashboard-2-with-uibuilder","FlowFuse Dashboard vs UI-Builder: A Comprehensive Comparison","2024-08-06",[6207,5242,6191,7193],"comparing node-red dashboards",{"path":7195,"title":7196,"date":7197,"tags":7198},"\u002Fblog\u002F2024\u002F08\u002Fflowfuse-2-7-release","FlowFuse 2.7: Improved management at scale & AI JSON Editor","2024-08-01",[5241,6180,6215],{"path":7200,"title":7201,"date":7202,"tags":7203},"\u002Fblog\u002F2024\u002F07\u002Fhow-to-setup-sso-ldap-for-the-node-red","How to Set Up SSO LDAP for Node-RED","2024-07-29",[6207,6180,6989,7204],"sso",{"path":7206,"title":7207,"date":7208,"tags":7209},"\u002Fblog\u002F2024\u002F07\u002Fdashboard-new-charts","New Charts Available in FlowFuse Dashboard","2024-07-26",[5241,6214,6180,6191],{"path":7211,"title":7212,"date":7213,"tags":7214},"\u002Fblog\u002F2024\u002F07\u002Fevolution-of-technology-impact-on-job-roles-and-companies","Evolution of Technology: Impact on Job Roles and Companies","2024-07-23",[5241,6180,7215,6344],"low-code",{"path":7217,"title":7218,"date":7219,"tags":7220},"\u002Fblog\u002F2024\u002F07\u002Fbuilding-on-flowfuse-devices","Building on FlowFuse: Remote Device Monitoring","2024-07-17",[5241,6214,5242,6180],{"path":7222,"title":7223,"date":7219,"tags":7224},"\u002Fblog\u002F2024\u002F07\u002Fhow-to-setup-sso-saml-for-the-node-red","How to Set Up SSO SAML for Node-RED",[6207,5242,7092,7204],{"path":7226,"title":7227,"date":7228,"tags":7229},"\u002Fblog\u002F2024\u002F07\u002Fdeploying-flowfuse-with-docker","Deploying FlowFuse with Docker on an Ubuntu server","2024-07-15",[6207,6180,7230],"self hosted",{"path":7232,"title":7233,"date":7234,"tags":7235},"\u002Fblog\u002F2024\u002F07\u002Fcalling-python-script-from-node-red","Calling a Python script from Node-RED (2026)","2024-07-10",[6207,5242,7236,6202],"node red python",{"path":7238,"title":7239,"date":7240,"tags":7241},"\u002Fblog\u002F2024\u002F07\u002Fflowfuse-2-6-release","FlowFuse 2.6: AI Infused Node-RED, Persistent File Storage & Lots More","2024-07-04",[5241,6180,6215,7242,7243,6344,7244,7245,612],"storage","editor","assistant","blueprint",{"path":7247,"title":7248,"date":7249,"tags":7250},"\u002Fblog\u002F2024\u002F06\u002Fdashboard-1-deprecated","Node-RED Dashboard Formally Deprecated","2024-06-27",[5241,6214,5242,6180,6191,7251],"FlowFuse Dashboard",{"path":7253,"title":7254,"date":7255,"tags":7256},"\u002Fblog\u002F2024\u002F06\u002Fdashboard-multi-tenancy","Multi-Tenancy available for everyone with FlowFuse's Dashboard 2.0","2024-06-21",[5241,6214,6180,6191],{"path":7258,"title":7259,"date":7255,"tags":7260},"\u002Fblog\u002F2024\u002F06\u002Finteracting-with-google-sheet-from-node-red","Interacting with Google Sheets from Node-RED (2026)",[5241,5242,7261,7262,6202],"node red","google sheet",{"path":7264,"title":7265,"date":7266,"tags":7267},"\u002Fblog\u002F2024\u002F06\u002Fnode-red-4-on-flowfuse-cloud","Node-RED 4: Bringing better collaboration to FlowFuse Cloud","2024-06-20",[5241,6180,612,7268],"FlowFuse Cloud",{"path":7270,"title":7271,"date":7272,"tags":7273},"\u002Fblog\u002F2024\u002F06\u002Fflowfuse-2-5-release","FlowFuse 2.5: New features to visualize snapshots, LDAP integration, and more","2024-06-06",[5241,6180,6215,7274,7275,7245,612],"LDAP","snapshot",{"path":7277,"title":7278,"date":7279,"tags":7280},"\u002Fblog\u002F2024\u002F06\u002Fhow-to-use-mqtt-in-node-red","Working with MQTT in Node-RED: Complete Guide (2026)","2024-06-05",[5241,5242,5243,6202],{"path":7282,"title":7283,"date":7284,"tags":7285},"\u002Fblog\u002F2024\u002F05\u002Fexploring-node-red-dashboard-2-widgets","Exploring Node-RED Dashboard 2.0 Widgets","2024-05-27",[5241,6191],{"path":7287,"title":7288,"date":7289,"tags":7290},"\u002Fblog\u002F2024\u002F05\u002Fwhy-you-need-a-low-code-platform","Why you need a low-code platform","2024-05-22",[6180,7215],{"path":7292,"title":7293,"date":7294,"tags":7295},"\u002Fblog\u002F2024\u002F05\u002Fnode-red-mind-stack-with-flowfuse","The MIND stack with Node-RED and FlowFuse Dashboard 2.0","2024-05-14",[5241,6180,7296,7297,7298,7299],"mind","ming","influx","dashboards",{"path":7301,"title":7302,"date":7294,"tags":7303},"\u002Fblog\u002F2024\u002F05\u002Fproduct-strategy-updates","Product Mission Statement and Strategy Updates",[5241,6180],{"path":7305,"title":7306,"date":7307,"tags":7308},"\u002Fblog\u002F2024\u002F05\u002Fmapping-location-on-dashboard-2","Mapping location data within Node-RED Dashboard 2.0. (2026)","2024-05-13",[5241,6191,7309,7310,6202],"fleet tracking","location",{"path":7312,"title":7313,"date":7314,"tags":7315},"\u002Fblog\u002F2024\u002F05\u002Fnode-red-dashboard-2-layout-navigation-styling","Comprehensive guide: Node-RED Dashboard 2.0 layout, sidebar, and styling","2024-05-10",[5241,6191,7316,7317,7318,6202],"flowfuse dashboard","customizing dashboard","dashboard 2.0",{"path":7320,"title":7321,"date":7322,"tags":7323},"\u002Fblog\u002F2024\u002F05\u002Fflowfuse-2-4-release","FlowFuse 2.4: making it easier to work with Snapshots, Blueprints & Devices","2024-05-09",[5241,6180,6215],{"path":7325,"title":7326,"date":7327,"tags":7328},"\u002Fblog\u002F2024\u002F05\u002Funderstanding-node-flow-global-environment-variables-in-node-red","How to Use Variables in Node-RED: Flow, Global, Context & Environment (2026)","2024-05-06",[5241,5242,6202],{"path":7330,"title":7331,"date":7332,"tags":7333},"\u002Fblog\u002F2024\u002F04\u002Fdashboard-milestones-pwa-new-components","Dashboard 2.0: Milestones, PWA and New Components","2024-04-26",[5241,6215,6265,7334,6191,7335,7336,7337,7338],"changelog","node-red Dashboard 2.0","node-red visualization","progressive web app","Vuetify",{"path":7340,"title":7341,"date":7342,"tags":7343},"\u002Fblog\u002F2024\u002F04\u002Fhow-to-build-an-application-with-node-red-dashboard-2","How to Build An Application With Node-RED Dashboard 2.0 (2026)","2024-04-25",[5241,5242,6191,6202],{"path":7345,"title":7346,"date":7347,"tags":7348},"\u002Fblog\u002F2024\u002F04\u002Fflowfuse-dedicated","Introducing FlowFuse Dedicated","2024-04-22",[5241,5242,6180,7349],"dedicated",{"path":7351,"title":7352,"date":7353,"tags":7354},"\u002Fblog\u002F2024\u002F04\u002Fflowfuse-at-hannover-messe-node-red","FlowFuse Gears Up for Hannover Messe","2024-04-11",[5241,6180,5242,7355,7356],"hannover messe","conference announcement",{"path":7358,"title":7359,"date":7360,"tags":7361},"\u002Fblog\u002F2024\u002F04\u002Fnode-red-multiplayer","Node-RED Multiplayer mode","2024-04-10",[5241,6180,5242,7362,7363],"collaborative editing","concurrent editing",{"path":7365,"title":7366,"date":7367,"tags":7368},"\u002Fblog\u002F2024\u002F04\u002Fbuilding-an-admin-panel-in-node-red-with-dashboard-2","How to Build an Admin Dashboard with Node-RED Dashboard 2.0 (2026)","2024-04-08",[5241,7318,7369,7370,6202],"admin dashboard","admin-only page",{"path":7372,"title":7373,"date":7374,"tags":7375},"\u002Fblog\u002F2024\u002F04\u002Fdisplaying-logged-in-users-on-dashboard","Displaying logged in user on Node-RED Dashboard 2.0 (2026)","2024-04-03",[5241,7318,6202],{"path":7377,"title":7378,"date":7374,"tags":7379},"\u002Fblog\u002F2024\u002F04\u002Frole-based-access-control-rbac-for-node-red-with-flowfuse","Role-Based Access for your Node-RED applications",[5241,6180,7380,7381],"RBAC","Role Based Access Control",{"path":7383,"title":7384,"date":7385,"tags":7386},"\u002Fblog\u002F2024\u002F04\u002Fnode-red-architecture","Node-RED Manufacturing Architecture","2024-04-02",[5241,5242,6180,6201,7387,7388,6978],"perdue model","ISA 99",{"path":7390,"title":7391,"date":7392,"tags":7393},"\u002Fblog\u002F2024\u002F03\u002Fusing-kafka-with-node-red","Using Kafka with Node-RED","2024-03-29",[5241,5242,6580],{"path":7395,"title":7396,"date":7397,"tags":7398},"\u002Fblog\u002F2024\u002F03\u002Fflowfuse-gallarus-strategic-partnership-to-accelerate-industry-4-adoption","FlowFuse and Gallarus Announce Strategic Partnership to Accelerate Industry 4.0 Adoption","2024-03-28",[7399,6180,7400,7401,7402],"News","strategic Partner","Indusstry 4.0","digital Transformation",{"path":7404,"title":7405,"date":7406,"tags":7407},"\u002Fblog\u002F2024\u002F03\u002Fdashboard-getting-started","Getting Started with Node-RED Dashboard 2.0","2024-03-27",[5241,6215,6265,7334,6191,7408,7409],"nodered dashboard beginners guide","nodered dashboard basics",{"path":7411,"title":7412,"date":7413,"tags":7414},"\u002Fblog\u002F2024\u002F03\u002Fhttp-authentication-node-red-with-flowfuse","Securing HTTP Traffic for Node-RED with FlowFuse","2024-03-26",[5241,6180,7415,7416,7417],"http in","http node","api",{"path":7419,"title":7420,"date":7421,"tags":7422},"\u002Fblog\u002F2024\u002F03\u002Fscaling-node-red-devices-vs-flowfuse-instance","Scaling Node-RED with FlowFuse: Differences between a FlowFuse Instance and a Device Instance","2024-03-25",[5241,6180,7423,7424],"device instance","scaling node-red",{"path":7426,"title":7427,"date":7428,"tags":7429},"\u002Fblog\u002F2024\u002F03\u002Fusing-kafka-in-manufacturing","How Kafka is applied in manufacturing","2024-03-15",[5241,5242,6580,7430,7431],"Manufacturing","Real-time data streaming",{"path":7433,"title":7434,"date":7435,"tags":7436},"\u002Fblog\u002F2024\u002F03\u002Fflowfuse-self-hosted-open-source-resource-limits","FlowFuse Open Source Tier Resource Limits","2024-03-14",[5241,6180],{"path":7438,"title":7439,"date":7440,"tags":7441},"\u002Fblog\u002F2024\u002F03\u002Flow-code-is-better","Why Low-Code is Better","2024-03-13",[5241,6180,7215,7442],"citizen development",{"path":7444,"title":7445,"date":7446,"tags":7447},"\u002Fblog\u002F2024\u002F03\u002Flooking-towards-node-red-4","Looking towards Node-RED 4.0 and beyond","2024-03-07",[5241,6180,5242],{"path":7449,"title":7450,"date":7451,"tags":7452},"\u002Fblog\u002F2024\u002F03\u002Finstalling-operating-node-red-behind-firewall","Installing and operating Node-RED behind a firewall","2024-03-06",[5241,6180,5242,7453],"vpn",{"path":7455,"title":7456,"date":7457,"tags":7458},"\u002Fblog\u002F2024\u002F02\u002Fhistory-of-nodered","History of Node-RED","2024-02-28",[5241,6180,7456,612,7459],"Node Red",{"path":7461,"title":7462,"date":7463,"tags":7464},"\u002Fblog\u002F2024\u002F02\u002Fwhy-citizen-development-platforms","Citizen Development: Unleashing Domain Experts","2024-02-26",[5241,6180,7465],"citizen-development",{"path":7467,"title":7468,"date":7469,"tags":7470},"\u002Fblog\u002F2024\u002F02\u002Ftaking-it-further-with-node-red","Storing Data: Getting Started with Node-RED","2024-02-19",[5241,5242,6202],{"path":7472,"title":7473,"date":7474,"tags":7475},"\u002Fblog\u002F2024\u002F02\u002Fnode-red-unified-namespace-architecture","Node-RED in a Unified Namespace Architecture","2024-02-14",[5241,6180,6978],{"path":7477,"title":7478,"date":7479,"tags":7480},"\u002Fblog\u002F2024\u002F02\u002Fconnect-node-red-to-kepware-opc","Connect Node-RED to KepserverEX OPC server.","2024-02-12",[5241,6180,6276],{"path":7482,"title":7483,"date":7484,"tags":7485},"\u002Fblog\u002F2024\u002F02\u002Fnode-red-perfect-adapter-middleware-uns","Node-RED: The perfect adapter and middleware for your UNS","2024-02-06",[5241,6180,6978],{"path":7487,"title":7488,"date":7484,"tags":7489},"\u002Fblog\u002F2024\u002F02\u002Fsoftware-development-in-node-red","Bringing Software Development practices to Node-RED",[5241,6180],{"path":7491,"title":7492,"date":7493,"tags":7494},"\u002Fblog\u002F2024\u002F02\u002Fprofessional-services-for-node-red","Should You Invest in Professional Services for Your Node-RED Development?","2024-02-05",[5241,6180],{"path":7496,"title":7497,"date":7498,"tags":7499},"\u002Fblog\u002F2024\u002F01\u002Frevolutionizing-manufacturing-impact-ai-chatgpt-technologies","AI and ChatGPT - Revolutionizing the Manufacturing Industry","2024-01-31",[5241,6180,6344],{"path":7501,"title":7502,"date":7498,"tags":7503},"\u002Fblog\u002F2024\u002F01\u002Funified-namespace-when-not-to-use","Unified Namespace: When to Use It, and When to Choose Something Else",[5241,6180,6978],{"path":7505,"title":7506,"date":7507,"tags":7508},"\u002Fblog\u002F2024\u002F01\u002Fhow-to-deploy-node-red-with-flowfuse-to-balenacloud","Step-by-Step Guide to Deploying Node-RED with FlowFuse in balenaCloud","2024-01-30",[5241,6180,6202],{"path":7510,"title":7511,"date":7512,"tags":7513},"\u002Fblog\u002F2024\u002F01\u002Fspeech-driven-chatbot-with-node-red","Speech-Driven Chatbot System with Node-RED","2024-01-29",[5241,5242,6191,7514,6344],"virtual assistant",{"path":7516,"title":7517,"date":7518,"tags":7519},"\u002Fblog\u002F2024\u002F01\u002Fdashboard-2-ga","Node-RED Dashboard 2.0 is Generally Available!","2024-01-24",[5241,6215,6265,7334,6191],{"path":7521,"title":7522,"date":7518,"tags":7523},"\u002Fblog\u002F2024\u002F01\u002Fdashboard-2-multi-user","Personalised Multi-user Dashboards with Node-RED Dashboard 2.0!",[5241,6215,6265,7334,6191],{"path":7525,"title":7526,"date":7527,"tags":7528},"\u002Fblog\u002F2024\u002F01\u002Fsentiment-analysis-with-node-red","Sentiment Analysis with Node-RED","2024-01-23",[5241,5242,6191,7529,6344],"sentiment analysis",{"path":7531,"title":7532,"date":7533,"tags":7534},"\u002Fblog\u002F2024\u002F01\u002Funified-namespace-what-broker","Selecting a broker for your Unified Namespace","2024-01-19",[5241,6180,6978],{"path":7536,"title":7537,"date":7538,"tags":7539},"\u002Fblog\u002F2024\u002F01\u002Fflowfuse-release-2-0","FlowFuse 2.0 Release","2024-01-18",[5241,6180,6214,6215],{"path":7541,"title":7542,"date":7543,"tags":7544},"\u002Fblog\u002F2024\u002F01\u002Fcapture-data-edge-with-node-red-flowfuse","Capture Data from edge devices with Node-RED","2024-01-17",[5241,6180,5242,6202],{"path":7546,"title":7547,"date":7548,"tags":7549},"\u002Fblog\u002F2024\u002F01\u002Fsoc2","FlowFuse is now SOC 2 Type 1 Compliant","2024-01-15",[5241,6180,6214],{"path":7551,"title":7552,"date":7553,"tags":7554},"\u002Fblog\u002F2024\u002F01\u002Fimport-a-file","Import a File into Node-RED with Dashboard 2.0","2024-01-05",[5241,6180,6202],{"path":7556,"title":7557,"date":7553,"tags":7558},"\u002Fblog\u002F2024\u002F01\u002Fsend-a-file","Send a File to Node-RED",[5241,6180,6202],{"path":7560,"title":7561,"date":7562,"tags":7563},"\u002Fblog\u002F2023\u002F12\u002Funified-namespace-data-modelling","Data Modeling for your Unified Namespace","2023-12-27",[5241,6180,6978],{"path":7565,"title":7566,"date":7567,"tags":7568},"\u002Fblog\u002F2023\u002F12\u002Fflowfuse-year-review-2023","Thank you for an incredible 2023!","2023-12-22",[5241,6180],{"path":7570,"title":7571,"date":7572,"tags":7573},"\u002Fblog\u002F2023\u002F12\u002Fintroduction-to-unified-namespace","Introduction to the Unified Namespace (UNS) – 2026 Updated Guide","2023-12-20",[5241,6180,6978],{"path":7575,"title":7576,"date":7577,"tags":7578},"\u002Fblog\u002F2023\u002F12\u002Fdevice-agent-as-a-windows-service","Run Node-RED as a service on Windows","2023-12-18",[5241,6180,6202],{"path":7580,"title":7581,"date":7582,"tags":7583},"\u002Fblog\u002F2023\u002F12\u002Fdashboard-0-10-0","Building a Custom Video Player in Dashboard 2.0","2023-12-07",[5241,6215,6265,7334,6191],{"path":7585,"title":7586,"date":7587,"tags":7588},"\u002Fblog\u002F2023\u002F12\u002Fai-use-cases","Beyond Automation - AI Use Cases that are shaping the next manufacturing frontier","2023-12-04",[5241,6344],{"path":7590,"title":7591,"date":7592,"tags":7593},"\u002Fblog\u002F2023\u002F11\u002Fdevice-agent-balena","Deploying the FlowFuse Device Agent via Balena","2023-11-24",[5242,2648,7594],"balena",{"path":7596,"title":7597,"date":7598,"tags":7599},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-0-8-0","Overhauling the Dashboard 2.0 Build Pipeline","2023-11-23",[5241,6215,6265,7334,6191],{"path":7601,"title":7602,"date":7603,"tags":7604},"\u002Fblog\u002F2023\u002F11\u002Fai-assistant","Integrate with ChatGPT Assistants with Node-RED","2023-11-21",[5241,5242,6265,6180,7605,6344],"openai",{"path":7607,"title":7608,"date":7609,"tags":7610},"\u002Fblog\u002F2023\u002F11\u002Fchatgpt-gpt","Node-RED Builder a GPT (Alpha) by FlowFuse","2023-11-15",[5241,5242,6265,6180,7611,6344],"chatgpt",{"path":7613,"title":7614,"date":7615,"tags":7616},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-2.0-user-tracking","Tracking Who Has Opened a Dashboard","2023-11-13",[5242,6191,6180],{"path":7618,"title":7619,"date":7620,"tags":7621},"\u002Fblog\u002F2023\u002F11\u002Fcommunity-news-11","Community News November 2023","2023-11-09",[5241,7622],"newsletter",{"path":7624,"title":7625,"date":7620,"tags":7626},"\u002Fblog\u002F2023\u002F11\u002Fdashboard-0-7","Chart Improvements & Migrating to Dashboard 2.0",[5241,6215,6265,7334,6191],{"path":7628,"title":7629,"date":7630,"tags":7631},"\u002Fblog\u002F2023\u002F11\u002Fmeet-us-at-sps-nuremberg","Meet FlowFuse at SPS Nuremberg","2023-11-08",[5241,6180],{"path":7633,"title":7634,"date":7635,"tags":7636},"\u002Fblog\u002F2023\u002F10\u002Fcitizen-development","Innovate from within - Why manufacturing must embrace Citizen Developers","2023-10-30",[5241,6180,7465],{"path":7638,"title":7639,"date":7640,"tags":7641},"\u002Fblog\u002F2023\u002F10\u002Fcertified-nodes","What are Certified Nodes?","2023-10-27",[5241,6215,6180],{"path":7643,"title":7644,"date":7645,"tags":7646},"\u002Fblog\u002F2023\u002F10\u002Fmes-build-buy","Embracing Innovation: Build vs Buy in MES","2023-10-20",[5241,5242,6265,6180],{"path":7648,"title":7649,"date":7650,"tags":7651},"\u002Fblog\u002F2023\u002F10\u002Fservice-disruption-report-2023-10-11","Service Disruption Report for October 11th, 2023","2023-10-18",[5241,6180,6214],{"path":7653,"title":7654,"date":7655,"tags":7656},"\u002Fblog\u002F2023\u002F10\u002Fblueprints","What are FlowFuse Blueprints?","2023-10-16",[5241,6215,6180],{"path":7658,"title":7659,"date":7660,"tags":7661},"\u002Fblog\u002F2023\u002F10\u002Fdashboard-integrations","Integrate your own widgets with Dashboard 2.0","2023-10-06",[5241,6215,6265,7334,6191],{"path":7663,"title":7664,"date":7665,"tags":7666},"\u002Fblog\u002F2023\u002F10\u002Fcommunity-news-10","Community News October 2023","2023-10-05",[5241,7622],{"path":7668,"title":7669,"date":7670,"tags":7671},"\u002Fblog\u002F2023\u002F10\u002Fcustom-vuetify-components-dashboard","Custom Vuetify components for Dashboard 2.0","2023-10-02",[5241,6202,5242,6191],{"path":7673,"title":7674,"date":7670,"tags":7675},"\u002Fblog\u002F2023\u002F10\u002Fuse-private-custom-nodes-with-flowfuse","How to Use Private Custom Nodes in FlowFuse?",[5241,6180],{"path":7677,"title":7678,"date":7679,"tags":7680},"\u002Fblog\u002F2023\u002F09\u002Frebranding-our-components","Updating our branding across GitHub, npm and Dockerhub","2023-09-27",[5241,6265,6214],{"path":7682,"title":7683,"date":7684,"tags":7685},"\u002Fblog\u002F2023\u002F09\u002Fchatgpt-for-node-red-developers","How ChatGPT improves Node-RED Developer Experience","2023-09-23",[5241,5242,7611,6344],{"path":7687,"title":7688,"date":7689,"tags":7690},"\u002Fblog\u002F2023\u002F09\u002Fflow-viewer","Share & Preview Flows on flows.nodered.org","2023-09-20",[5241,6214,6265,6180,5242],{"path":7692,"title":7693,"date":7694,"tags":7695},"\u002Fblog\u002F2023\u002F09\u002Fmodernize-your-legacy-industrial-data-part2","Modernize your legacy industrial data. Part 2.","2023-09-17",[5241,5242,6265],{"path":7697,"title":7698,"date":7699,"tags":7700},"\u002Fblog\u002F2023\u002F09\u002Fmodernize-your-legacy-industrial-data","Modernize your legacy industrial data","2023-09-14",[5241,5242,6265],{"path":7702,"title":7703,"date":7699,"tags":7704},"\u002Fblog\u002F2023\u002F09\u002Ftulip-event-report","Tulip Operation Calling Event Report",[5241,6180],{"path":7706,"title":7707,"date":7708,"tags":7709},"\u002Fblog\u002F2023\u002F09\u002Fcommunity-news-09","Community News September 2023","2023-09-09",[5241,7622],{"path":7711,"title":7712,"date":7713,"tags":7714},"\u002Fblog\u002F2023\u002F09\u002Fbosch-rexroth-announce","FlowFuse announces a Node-RED stack for Industry 4.0 applications on ctrlX AUTOMATION","2023-09-07",[5241,6214,6180],{"path":7716,"title":7717,"date":7718,"tags":7719},"\u002Fblog\u002F2023\u002F09\u002Fdashboard-notebook-layout","Dynamic Markdown, Tables & Notebooks with Dashboard 2.0","2023-09-06",[5241,6215,6265,7334,6191],{"path":7721,"title":7722,"date":7723,"tags":7724},"\u002Fblog\u002F2023\u002F08\u002Fflowfuse-1-11-release","FlowFuse 1.11 makes it easier to get started with FlowFuse and Node-RED","2023-08-31",[5241,6180,6215],{"path":7726,"title":7727,"date":7728,"tags":7729},"\u002Fblog\u002F2023\u002F08\u002Faws-marketplace-announce","FlowFuse is now available on AWS Marketplace","2023-08-21",[5241,6214,6180],{"path":7731,"title":7732,"date":7733,"tags":7734},"\u002Fblog\u002F2023\u002F08\u002Fopen-source-is-a-tier-not-competition","Our Open Source offering is a tier, not our competition","2023-08-18",[5241,6180],{"path":7736,"title":7737,"date":7738,"tags":7739},"\u002Fblog\u002F2023\u002F08\u002Fflowforge-is-now-flowfuse","FlowForge is now FlowFuse","2023-08-17",[5241,6265,6214],{"path":7741,"title":7742,"date":7743,"tags":7744},"\u002Fblog\u002F2023\u002F08\u002Fdashboard-community-update","Dashboard 2.0 - Community Update","2023-08-10",[5241,6215,6265,6191],{"path":7746,"title":7747,"date":7748,"tags":7749},"\u002Fblog\u002F2023\u002F08\u002Fisa-95-automation-pyramid-to-unified-namespace","Why the Automation Pyramid blocks digital transformation - The Role of Unified Namespace","2023-08-09",[5241,6180,6978],{"path":7751,"title":7752,"date":7753,"tags":7754},"\u002Fblog\u002F2023\u002F08\u002Fcommunity-news-08","Community News August 2023","2023-08-08",[5241,7622],{"path":7756,"title":7757,"date":7758,"tags":7759},"\u002Fblog\u002F2023\u002F08\u002Fflowforge-1-10-release","FlowFuse 1.10 Release Now Available","2023-08-03",[5241,6180,6215],{"path":7761,"title":7762,"date":7763,"tags":7764},"\u002Fblog\u002F2023\u002F07\u002Fdashboard-0-1-release","First Pre-Alpha Release of the new Node-RED Dashboard","2023-07-27",[5241,6215,6191],{"path":7766,"title":7767,"date":7763,"tags":7768},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-build-a-opc-client-dashboard-in-node-red","How to Build an OPC UA Client Dashboard in Node-RED - Part 3 (2026)",[5241,6180,5242,6276,6202],{"path":7770,"title":7771,"date":7772,"tags":7773},"\u002Fblog\u002F2023\u002F07\u002Fflowforge-1-9-3-release","FlowFuse 1.9.3 and Device Agent 1.9.5 released","2023-07-21",[5241,6180,6215],{"path":7775,"title":7776,"date":7772,"tags":7777},"\u002Fblog\u002F2023\u002F07\u002Fimages-in-node-red-dashboards","How to add images to Node-RED dashboards when using FlowFuse (2026)",[5241,6180,5242,6191,6202],{"path":7779,"title":7780,"date":7781,"tags":7782},"\u002Fblog\u002F2023\u002F07\u002Finfluxdb-historical-data","Creating a Historical Data Dashboard with InfluxDB and Node-RED","2023-07-18",[5241,5242],{"path":7784,"title":7785,"date":7786,"tags":7787},"\u002Fblog\u002F2023\u002F07\u002Fhow-to-deploy-a-basic-opc-ua-server-in-node-red","How to Deploy a Basic OPC-UA Server in Node-RED - Part 1 (2026)","2023-07-13",[5241,5242,6276,6202],{"path":7789,"title":7790,"date":7791,"tags":7792},"\u002Fblog\u002F2023\u002F07\u002Fcommunity-news-07","Community News July 2023","2023-07-12",[5241,7622],{"path":7794,"title":7795,"date":7796,"tags":7797},"\u002Fblog\u002F2023\u002F07\u002Fflowforge-1-9-release","FlowFuse now offers API Documentation with Swagger UI","2023-07-06",[5241,6180,6215],{"path":7799,"title":7800,"date":7801,"tags":7802},"\u002Fblog\u002F2023\u002F06\u002Fdashboard-announcement","The Next Step in Data Visualization - Announcing the Successor to the Node-RED Dashboard","2023-06-21",[5241,6191,7803,7804],"nodered dashboard announcement","nodered dashboard depreciated",{"path":7806,"title":7807,"date":7808,"tags":7809},"\u002Fblog\u002F2023\u002F06\u002Fnode-red-as-a-no-code-ethernet_ip-to-s7-protocol-converter","Node-RED as a No-Code EtherNet\u002FIP to S7 Protocol Converter","2023-06-20",[5241,6202,7810,7811,7812,7813,7814,7815,7816,7817],"Industrial protocol converter","EtherNet\u002FIP","S7 Protocol","node red siemens s7","node red s7 communication","node red s7comm","nodered s7","node red s7",{"path":7819,"title":7820,"date":7821,"tags":7822},"\u002Fblog\u002F2023\u002F06\u002Fintroducing-the-flowforge-community-forum","Introducing the FlowFuse Community Forum","2023-06-12",[6214,6180],{"path":7824,"title":7825,"date":7826,"tags":7827},"\u002Fblog\u002F2023\u002F06\u002Fcommunity-news-06","Community News June 2023","2023-06-09",[5241,7622],{"path":7829,"title":7830,"date":7831,"tags":7832},"\u002Fblog\u002F2023\u002F06\u002Fflowforge-1-8-released","FlowFuse now offers High Availability Node-RED","2023-06-08",[5241,6180,6215],{"path":7834,"title":7835,"date":7836,"tags":7837},"\u002Fblog\u002F2023\u002F06\u002Fimport-modules","Use any npm module in Node-RED (2026)","2023-06-05",[5241,6202],{"path":7839,"title":7840,"date":7841,"tags":7842},"\u002Fblog\u002F2023\u002F05\u002Fbringing-high-availability-to-node-red","Bringing High Availability to Node-RED","2023-06-02",[5241,5242,7843],"high availablity",{"path":7845,"title":7846,"date":7847,"tags":7848},"\u002Fblog\u002F2023\u002F06\u002F3-quick-node-red-tips-7","Node-RED Tips - Dashboard Edition","2023-06-01",[5241,6202,5242,6191,7176],{"path":7850,"title":7851,"date":7852,"tags":7853},"\u002Fblog\u002F2023\u002F05\u002Fnode-red-community-survey-results","Node-RED Community Survey Results","2023-05-31",[5241,5242,6265],{"path":7855,"title":7856,"date":7857,"tags":7858},"\u002Fblog\u002F2023\u002F05\u002Fpersisting-chart-data-in-node-red","Persisting chart data in Node-RED Dashboard 1","2023-05-25",[5241,5242,6202,6191],{"path":7860,"title":7861,"date":7862,"tags":7863},"\u002Fblog\u002F2023\u002F05\u002Fintegrating-modbus-with-node-red","Best Practices Integrating a Modbus Device With Node-RED (2026)","2023-05-16",[5241,5242,6202,6364],{"path":7865,"title":7866,"date":7867,"tags":7868},"\u002Fblog\u002F2023\u002F05\u002Fflowforge-1-7-released","FlowFuse 1.7 Now Available with Remote Node-RED Editor Access","2023-05-11",[5241,6180,6215],{"path":7870,"title":7871,"date":7872,"tags":7873},"\u002Fblog\u002F2023\u002F05\u002Fcommunity-news-05","Community News May 2023","2023-05-04",[5241,7622,6265],{"path":7875,"title":7876,"date":7877,"tags":7878},"\u002Fblog\u002F2023\u002F05\u002Fchatgpt-nodered-fcn-node","Chat GPT in Node-RED Function Nodes","2023-05-02",[5241,5242,6265,6202,7611,6344],{"path":7880,"title":7881,"date":7877,"tags":7882},"\u002Fblog\u002F2023\u002F05\u002Fdevice-agent-as-a-service","Running the FlowFuse Device Agent as a service on a Raspberry Pi",[5241,6180,6202,7883],"raspberry pi",{"path":7885,"title":7886,"date":7887,"tags":7888},"\u002Fblog\u002F2023\u002F04\u002F3-quick-node-red-tips-6","Node-RED Tips - Subflows, Link Nodes, and the Range Node","2023-04-20",[5242,7889,6202],"node-red subflow",{"path":7891,"title":7892,"date":7887,"tags":7893},"\u002Fblog\u002F2023\u002F04\u002Fhannover-messe","FlowFuse's visit to Hannover Messe 2023",[5241,6180,5242,6265],{"path":7895,"title":7896,"date":7897,"tags":7898},"\u002Fblog\u002F2023\u002F04\u002Fflowforge-1-6-released","FlowFuse v1.6 Now Available","2023-04-13",[5241,6180,6215],{"path":7900,"title":7901,"date":7897,"tags":7902},"\u002Fblog\u002F2023\u002F04\u002Fnodered-community-health","Node-RED Community Health",[5241,5242,6265,6214],{"path":7904,"title":7905,"date":7906,"tags":7907},"\u002Fblog\u002F2023\u002F04\u002Fcommunity-news-04","Community News April 2023","2023-04-05",[5241,7622,6265],{"path":7909,"title":7910,"date":7906,"tags":7911},"\u002Fblog\u002F2023\u002F04\u002Fsecuring-node-red-in-production","Securing Node-RED (2026)",[5241,5242,6202,7912],"securing node-red",{"path":7914,"title":7915,"date":7916,"tags":7917},"\u002Fblog\u002F2023\u002F03\u002Fibmcloud-starter-removed","IBM Cloud removes Node-RED starter application","2023-03-29",[5241,5242,6214],{"path":7919,"title":7920,"date":7921,"tags":7922},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-5","Node-RED Tips - Importing, Exporting, and Grouping Flows","2023-03-27",[5241,5242,6202,7176],{"path":7924,"title":7925,"date":7926,"tags":7927},"\u002Fblog\u002F2023\u002F03\u002Fwhy-should-you-use-node-red-function-nodes","The benefits and drawbacks of using Node-RED function nodes","2023-03-20",[5241,5242,6202],{"path":7929,"title":7930,"date":7931,"tags":7932},"\u002Fblog\u002F2023\u002F03\u002Fflowforge-1-5-0-released","FlowFuse v1.5 Now Available","2023-03-16",[5241,6180,6215],{"path":7934,"title":7935,"date":7931,"tags":7936},"\u002Fblog\u002F2023\u002F03\u002Fterminology-changes","Terminology Changes",[5241,6180,6214],{"path":7938,"title":7939,"date":7940,"tags":7941},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-4","Node-RED Tips - Smooth, Catch, and Math","2023-03-13",[5241,5242,7942],"tips",{"path":7944,"title":7945,"date":7940,"tags":7946},"\u002Fblog\u002F2023\u002F03\u002Fcomparing-node-red-dashboards","Comparing Node-RED Dashboards Solutions",[6207,5242,6191,7193],{"path":7948,"title":7949,"date":7950,"tags":7951},"\u002Fblog\u002F2023\u002F03\u002F3-quick-node-red-tips-3","Node-RED Tips - Exec, Filter, and Debug","2023-03-07",[5241,5242,6202],{"path":7953,"title":7954,"date":7955,"tags":7956},"\u002Fblog\u002F2023\u002F03\u002Fintegration-platform-for-edge-computing","Node-RED: The Integration Platform for IIoT Edge Computing & PLCs","2023-03-06",[5241,5242,6265],{"path":7958,"title":7959,"date":7960,"tags":7961},"\u002Fblog\u002F2023\u002F03\u002Fcommunity-news-03","Community News March 2023","2023-03-02",[5241,7622,6265],{"path":7963,"title":7964,"date":7965,"tags":7966},"\u002Fblog\u002F2023\u002F02\u002Fwebinar-1-missed-questions","Some questions we didn't get to in our first webinar","2023-02-27",[5242,6265],{"path":7968,"title":7969,"date":7970,"tags":7971},"\u002Fblog\u002F2023\u002F02\u002F3-quick-node-red-tips-2","Node-RED Tips - Deploying, Debugging, and Delaying","2023-02-23",[5241,5242,7942],{"path":7973,"title":7974,"date":7970,"tags":7975},"\u002Fblog\u002F2023\u002F02\u002Fming-blog","MING Stack for IoT",[5241,5242,6265],{"path":7977,"title":7978,"date":7979,"tags":7980},"\u002Fblog\u002F2023\u002F02\u002Fflowforge-1-4-0-released","FlowFuse v1.4 with device provisioning in bulk and staged development process","2023-02-16",[5241,6180,6215],{"path":7982,"title":7983,"date":7984,"tags":7985},"\u002Fblog\u002F2023\u002F02\u002Fhighly-available-node-red","Toward Highly Available Node-RED","2023-02-15",[5241,5242,6180],{"path":7987,"title":7988,"date":7989,"tags":7990},"\u002Fblog\u002F2023\u002F02\u002Fservice-disruption-report-2023-01-27","Service Disruption Report for January 27th, 2023","2023-02-10",[5241,6180,6214],{"path":7992,"title":7993,"date":7994,"tags":7995},"\u002Fblog\u002F2023\u002F02\u002F3-quick-node-red-tips-1","Node-RED Tips - Wiring Shortcuts","2023-02-07",[5241,5242,6202,7176],{"path":7997,"title":7998,"date":7999,"tags":8000},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-story","Telling the FlowFuse Story","2023-02-02",[5241,6180],{"path":8002,"title":8003,"date":7999,"tags":8004},"\u002Fblog\u002F2023\u002F02\u002Fcommunity-news-02","Community News February 2023",[5241,6265,7622],{"path":8006,"title":8007,"date":8008,"tags":8009},"\u002Fblog\u002F2023\u002F01\u002Fenvironment-variables-in-node-red","Using Environment Variables in Node-RED (2026)","2023-01-27",[5241,5242,6202],{"path":8011,"title":8012,"date":8013,"tags":8014},"\u002Fblog\u002F2023\u002F01\u002Fgetting-started-with-node-red","Getting Started with Node-RED","2023-01-23",[5241,5242,6202],{"path":8016,"title":8017,"date":8018,"tags":8019},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-1-3-0-released","FlowFuse 1.3 is now available, share your flows through our new team libraries and much more","2023-01-19",[5241,6180,6215],{"path":8021,"title":8022,"date":8023,"tags":8024},"\u002Fblog\u002F2023\u002F01\u002Fcommunity-news-12","Community News December 2022","2023-01-12",[5241,6265,7622],{"path":8026,"title":8027,"date":8023,"tags":8028},"\u002Fblog\u002F2023\u002F01\u002Fflowforge-1.2.1-released","FlowFuse 1.2.1 released",[5241,6180,6215],{"path":8030,"title":8031,"date":8032,"tags":8033},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-1-2-0-released","FlowFuse 1.2 is now available with single sign on and persistent context storage","2022-12-22",[5241,8034,6215],"flowforge",{"path":8036,"title":8037,"date":8038,"tags":8039},"\u002Fblog\u002F2022\u002F12\u002Fwhat-flowforge-adds-to-node-red","Why you need FlowFuse when you already have Node-RED?","2022-12-15",[5241,6180,5242],{"path":8041,"title":8042,"date":8043,"tags":8044},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-joins-openjs-foundation","FlowFuse Inc. becomes a member of the OpenJS Foundation","2022-12-13",[5241,6180,6214],{"path":8046,"title":8047,"date":8048,"tags":8049},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-1-1-2-released","FlowFuse 1.1.2 released","2022-12-09",[5241,6180,6215],{"path":8051,"title":8052,"date":8048,"tags":8053},"\u002Fblog\u002F2022\u002F12\u002Fflowforge-gcp-https-set-up","Configure FlowFuse in Docker to secure all traffic",[5241,6180,6202,8054,8055],"Acme Companion","Let's Encrypt",{"path":8057,"title":8058,"date":8059,"tags":8060},"\u002Fblog\u002F2022\u002F12\u002Fcreate-http-trigger-with-authentication","Create HTTP triggers with authentication","2022-12-07",[5241,5242,6202],{"path":8062,"title":8063,"date":8064,"tags":8065},"\u002Fblog\u002F2022\u002F12\u002Fnode-red-flow-best-practice","Format your Node-RED flows for better team collaboration","2022-12-05",[5241,5242,6202],{"path":8067,"title":8068,"date":8069,"tags":8070},"\u002Fblog\u002F2022\u002F12\u002Fcommunity-news-11","Community News November 2022","2022-12-02",[5241,7622,6265],{"path":8072,"title":8073,"date":8074,"tags":8075},"\u002Fblog\u002F2022\u002F11\u002Fscaling-node-red-with-diy-tooling","Challenges scaling Node-RED with DIY tooling","2022-11-30",[5241,5242,6202],{"path":8077,"title":8078,"date":8079,"tags":8080},"\u002Fblog\u002F2022\u002F11\u002Frespin-docker-compose-01","Re-spin of Docker-Compose install package","2022-11-25",[5241,6180,6214],{"path":8082,"title":8083,"date":8084,"tags":8085},"\u002Fblog\u002F2022\u002F11\u002Fflowforge-1-1-released","FlowFuse 1.1 released with persistent file storage","2022-11-24",[5241,6180,6215],{"path":8087,"title":8088,"date":8089,"tags":8090},"\u002Fblog\u002F2022\u002F11\u002Fcommunity-news-10","Community News October 2022","2022-11-04",[5241,7622,6265],{"path":8092,"title":8093,"date":8094,"tags":8095},"\u002Fblog\u002F2022\u002F10\u002Fseed-round-bring-node-red-to-enterprise","FlowFuse raises $7.25M Seed Round to bring Node-RED to the Enterprise","2022-11-03",[5241,6180,6214],{"path":8097,"title":8098,"date":8099,"tags":8100},"\u002Fblog\u002F2022\u002F10\u002Fflowforge-1-released","FlowFuse 1.0 released","2022-10-27",[5241,6180,6215],{"path":8102,"title":8103,"date":8104,"tags":8105},"\u002Fblog\u002F2022\u002F10\u002Fdb-migration-01","Scheduled maintenance: Database encryption October 2022","2022-10-18",[5241,6180,6214],{"path":8107,"title":8108,"date":8109,"tags":8110},"\u002Fblog\u002F2022\u002F10\u002Fff-docker-gcp","Install FlowFuse Docker on Google Cloud","2022-10-14",[5241,6180,6202],{"path":8112,"title":8113,"date":8114,"tags":8115},"\u002Fblog\u002F2022\u002F10\u002Fcommunity-news-09","Community News September 2022","2022-10-07",[5241,7622,6265],{"path":8117,"title":8118,"date":8119,"tags":8120},"\u002Fblog\u002F2022\u002F09\u002Fflowforge-010-released","FlowFuse 0.10 released","2022-09-30",[5241,6180,6215],{"path":8122,"title":8123,"date":8124,"tags":8125},"\u002Fblog\u002F2022\u002F09\u002Fstatic-ips","Static Outbound IP Addresses","2022-09-27",[5241,6180,6214],{"path":8127,"title":8128,"date":8129,"tags":8130},"\u002Fblog\u002F2022\u002F09\u002Fcommunity-news-08","Community News August 2022","2022-09-16",[5241,7622,6265],{"path":8132,"title":8133,"date":8134,"tags":8135},"\u002Fblog\u002F2022\u002F09\u002Fflowforge-09-released","FlowFuse 0.9 released","2022-09-01",[5241,6180,6215],{"path":8137,"title":8138,"date":8139,"tags":8140},"\u002Fblog\u002F2022\u002F08\u002Fcommunity-news-06","Community News July 2022","2022-08-11",[5241,7622,6265],{"path":8142,"title":8143,"date":8144,"tags":8145},"\u002Fblog\u002F2022\u002F08\u002Fflowforge-08-released","FlowFuse 0.8 released","2022-08-04",[5241,6180,6215],{"path":8147,"title":8148,"date":8149,"tags":8150},"\u002Fblog\u002F2022\u002F07\u002Fnew-projecttype","Introducing Medium Projects on FlowFuse Cloud","2022-07-22",[5241,6180,6214],{"path":8152,"title":8153,"date":8154,"tags":8155},"\u002Fblog\u002F2022\u002F07\u002Fcommunity-news-06","Community News June 2022","2022-07-19",[5241,7622,6265],{"path":8157,"title":8158,"date":8159,"tags":8160},"\u002Fblog\u002F2022\u002F07\u002Fflowforge-07-released","FlowFuse 0.7 released","2022-07-07",[5241,6180,6215],{"path":8162,"title":8163,"date":8164,"tags":8165},"\u002Fblog\u002F2022\u002F06\u002Fflowforge-06-released","FlowFuse 0.6 released","2022-06-19",[5241,6180,6215],{"path":8167,"title":8168,"date":8169,"tags":8170},"\u002Fblog\u002F2022\u002F06\u002Fcommunity-news-05","Community News May 2022","2022-06-17",[5241,7622,6265],{"path":8172,"title":8173,"date":8174,"tags":8175},"\u002Fblog\u002F2022\u002F05\u002Fsign-up-for-flowforge-cloud","FlowFuse open for everybody","2022-05-25",[5241,6180,6214],{"path":8177,"title":8178,"date":8179,"tags":8180},"\u002Fblog\u002F2022\u002F05\u002Fflowforge-05-released","FlowFuse 0.5 released","2022-05-12",[5241,6180,6215],{"path":8182,"title":8183,"date":8184,"tags":8185},"\u002Fblog\u002F2022\u002F05\u002Fcommunity-news-04","Community News April 2022","2022-05-06",[5241,7622,6265],{"path":8187,"title":8188,"date":8189,"tags":8190},"\u002Fblog\u002F2022\u002F05\u002Fnode-red-3-beta-stack","Node-RED 3.0 Beta Stack","2022-05-04",[5241,5242,6214],{"path":8192,"title":8193,"date":8194,"tags":8195},"\u002Fblog\u002F2022\u002F04\u002Fflowforge-04-released","FlowFuse 0.4 released","2022-04-14",[5241,6180,6215],{"path":8197,"title":8198,"date":8199,"tags":8200},"\u002Fblog\u002F2022\u002F04\u002Fcommunity-news-03","Community News March 2022","2022-04-05",[5241,7622,6265],{"path":8202,"title":8203,"date":8204,"tags":8205},"\u002Fblog\u002F2022\u002F04\u002Fflowforge-accepting-customers","FlowFuse is accepting customers now","2022-04-04",[5241,6180,6214],{"path":8207,"title":8208,"date":8209,"tags":8210},"\u002Fblog\u002F2022\u002F03\u002Fflowforge-03-released","FlowFuse 0.3 released","2022-03-17",[5241,6180,6215],{"path":8212,"title":8213,"date":8214,"tags":8215},"\u002Fblog\u002F2022\u002F03\u002Fcommunity-news-02","Community News February 2022","2022-03-02",[5241,7622,6265],{"path":8217,"title":8218,"date":8219,"tags":8220},"\u002Fblog\u002F2022\u002F02\u002Fannouncing-flowforge-cloud","Announcing FlowFuse Cloud","2022-02-23",[5241,6180,6214,6215],{"path":8222,"title":8223,"date":8224,"tags":8225},"\u002Fblog\u002F2022\u002F02\u002Fflowforge-02-released","FlowFuse 0.2 released","2022-02-17",[5241,6180,6215],{"path":8227,"title":8228,"date":8229,"tags":8230},"\u002Fblog\u002F2022\u002F02\u002Fuse-case-solar-afloat","Using Node-RED to keep Solar PV afloat","2022-02-09",[5241,5242,6265],{"path":8232,"title":8233,"date":8234,"tags":8235},"\u002Fblog\u002F2022\u002F02\u002Fwelcome-joe","Welcome Joe","2022-02-08",[5241,6180,6214],{"path":8237,"title":8238,"date":8239,"tags":8240},"\u002Fblog\u002F2022\u002F01\u002Fcommunity-news-01","Community News January 2022","2022-01-28",[5241,7622,6265],{"path":8242,"title":8243,"date":8244,"tags":8245},"\u002Fblog\u002F2022\u002F01\u002Fflowforge-01-released","FlowFuse 0.1 released","2022-01-20",[5241,6180,6215],{"path":8247,"title":8248,"date":8244,"tags":8249},"\u002Fblog\u002F2022\u002F01\u002Fwelcome-steve","Welcome Steve",[5241,6180,6214],{"path":8251,"title":8252,"date":8253,"tags":8254},"\u002Fblog\u002F2022\u002F01\u002Fwelcome-zj","Welcome ZJ","2022-01-03",[5241,6180,6214],{"path":8256,"title":8257,"date":8258,"tags":8259},"\u002Fblog\u002F2021\u002F05\u002Fwelcome-ben","Welcome Ben","2021-05-10",[6180,6214],{"path":8261,"title":8262,"date":8263,"tags":8264},"\u002Fblog\u002F2021\u002F04\u002Ffirst-deploy","Introducing FlowFuse Inc.","2021-04-06",[6180,6214],1786742759148]