SlideShare a Scribd company logo
| © Copyright 2023, InfluxData
Building an Edge to Cloud
Solution with the MING Stack
June 2023
| © Copyright 2023, InfluxData
Past life: Sales Engineer for IIoT Solutions.
Passion: Autonomous and Vision based projects.
Driven: To make IoT accessible to all.
Belief: Industrial IoT’s success belongs to the
domain experts.
Jay Clifford
Developer Advocate, InfluxData
| © Copyright 2023, InfluxData
Past life: Data Integrations for CRM.
Passion: Home automation.
Driven: To help the community get the best value
from Node-RED.
Belief: No-code is the best code.
Rob Marcer
Customer Success Manager,
FlowForge
| © Copyright 2023, InfluxData
Part 3
Edge to Cloud with
FlowForge
Part 2
Intro to Plant Buddy
Part 4
Demo and next steps!
Part 1
What is FlowForge?
4
| © Copyright 2023, InfluxData
What is FlowForge?
| © Copyright 2023, InfluxData
Firstly, what is Node-RED?
| © Copyright 2023, InfluxData
• Low-code programming for event-driven applications
• Open Source, started at IBM
• Huge library of third party ‘custom nodes’
• OpenJS Foundation ‘At Large’ Project
• 100 million + pulls of the official Docker image
| © Copyright 2023, InfluxData
• Founded by one of the co-creators of Node-RED
• DevOps for Node-RED
• Self hosted and SaaS versions available
• It’s the perfect tool to help teams collaborate on small and
large Node-RED applications
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
On The Roadmap
• High Availability and Scalability
• Swagger API
• Custom Instance Domains
• New ‘Dashboard’
| © Copyright 2023, InfluxData
What is MING?
| © Copyright 2023, InfluxData
M . I . N . G
| © Copyright 2023, InfluxData
MING - Example (balena)
| © Copyright 2023, InfluxData
Recap on InfluxDB 3.0
| © Copyright 2023, InfluxData
InfluxDB 3.0
Schema on write
Write and Query Millions of rows
per second
Single datastore for all time series
data (Metrics, Logs & Traces)
SQL and InfluxQL Support
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
Concepts: Data Model
Bucket
• All InfluxDB data is stored in a bucket. A bucket combines the concept of a database
and a retention period (the duration of time that each data point persists).
Measurement
• A name to a group of data at a high level (Table)
Tag set
• A set of key-value pairs to group data at a low level (values are strings)
Field set
• A set of key-value pairs to represent data (values are numerical & strings)
Timestamp
• Time of the data with nanosecond precision
Series
• A unique combination of measure+tags
| © Copyright 2023, InfluxData
Intro to Plant Buddy
| © Copyright 2023, InfluxData
Temperature
&
Humidity
Goal: Create a platform which can monitor the
health of household plants
Provide:
● Data Collection
● Data Storage
● Visualization + Analysis
Light
Soil
Temperature
?
Soil
Moisture
What is Plant Buddy
| © Copyright 2023, InfluxData
22
Determine a state Time in state Anomaly Detection
| © Copyright 2023, InfluxData
InfluxDB
Cloud
FlowForge
Architecture
Grafana
| © Copyright 2023, InfluxData
Sensor
DAQ
Enrichmen
t
Edge to
Cloud
Enrichment Connector database dashboard
Deeper Dive
Health
checker
| © Copyright 2023, InfluxData
Edge to Cloud with FlowForge
| © Copyright 2023, InfluxData
Putting the M in MING
● FlowForge has a built in MQTT Implementation
● Allows Node-RED instances in the same application to talk to each
other
● Supports instances in the cloud as well as on edge devices
● github.com/flowforge/flowforge-nr-project-nodes
| © Copyright 2023, InfluxData
Let’s start!
| © Copyright 2023, InfluxData
Tips and Tricks
| © Copyright 2023, InfluxData
Flow Forge = Task Engine
| © Copyright 2023, InfluxData
Payload Building
msg.payload = [
[{
intValue: '9i',
numValue: 10,
randomValue: Math.random()*10,
strValue: "message1",
time: new Date().getTime()-1
},
{
tag1:"sensor1",
tag2:"device2"
}],
[{
intValue: '11i',
numValue: 20,
randomValue: Math.random()*10,
strValue: "message2",
time: new Date().getTime()
},
{
tag1:"sensor1",
tag2:"device2"
}]
];
return msg;
msg.payload = [
{
measurement: "weather_sensor",
fields: {
temp: 5.5,
light: 678,
humidity: 51
},
tags:{
location:"garden"
},
timestamp: new Date()
},
{
measurement: "alarm_sensor",
fields: {
proximity: 999,
temp: 19.5
},
tags:{
location:"home"
},
timestamp: new Date()
}
];
return msg;
VS.
| © Copyright 2023, InfluxData
Connecting to InfluxDB 3.0
influx v1 dbrp create 
--token <token>
--db flowforge 
--rp flowforge 
--bucket-id 3b1a3a72281a9367 
--default
1
2
| © Copyright 2023, InfluxData
● Use off-the-peg custom nodes (such as
node-red-contrib-influxdb)
● Create yourself a basic UI using Dashboard early in your
development process
● Use groups in the design interface to make it easier to
organise your flows
● The Exec node make it easy to interact with a device’s
hardware and OS
● https://discourse.nodered.org/ is a great place to get help
More Node-RED tips - https://flowforge.com/blog/tips/
Node-RED Tips
| © Copyright 2023, InfluxData
What next?
| © Copyright 2023, InfluxData
Try it yourself
34
https://github.com/InfluxCommunity/
FlowForge
| © Copyright 2023, InfluxData
FlowForge Resources
Community Forums - community.flowforge.com
Github - github.com/flowforge
Documentation - flowforge.com/docs
Blog - flowforge.com/blog
| © Copyright 2023, InfluxData
https://influxdbu.com/ https://influxcommunity.slack.com/
Learning and Community
36
| © Copyright 2023, InfluxData
Any Questions?
| © Copyright 2023, InfluxData
www.influxdata.com
| © Copyright 2023, InfluxData
Demo Screenshots
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData
| © Copyright 2023, InfluxData

More Related Content

PPTX
Preparing_for_PCA_Workbook.pptx
PPTX
AI Sustainability Mascots 23-f.pptx
PDF
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
PDF
Industry 4.0: Building the Unified Namespace with Confluent, HiveMQ and Spark...
PPTX
AWS-Architecture-Icons-Deck_For-Light-BG_02062024.pptx
PDF
Introduction to InfluxDB and TICK Stack
PPTX
Data In Motion Paris 2023
PPTX
Feature Store as a Data Foundation for Machine Learning
Preparing_for_PCA_Workbook.pptx
AI Sustainability Mascots 23-f.pptx
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
Industry 4.0: Building the Unified Namespace with Confluent, HiveMQ and Spark...
AWS-Architecture-Icons-Deck_For-Light-BG_02062024.pptx
Introduction to InfluxDB and TICK Stack
Data In Motion Paris 2023
Feature Store as a Data Foundation for Machine Learning

What's hot (20)

PDF
Loki - like prometheus, but for logs
PDF
Intro to Telegraf
PPTX
Intro to InfluxDB 2.0 and Your First Flux Query by Sonia Gupta
PDF
Start Automating InfluxDB Deployments at the Edge with balena
PDF
Best Practices: How to Analyze IoT Sensor Data with InfluxDB
PDF
Apache Spark in Depth: Core Concepts, Architecture & Internals
PDF
Intro to InfluxDB
PPTX
PPTX
Hive + Tez: A Performance Deep Dive
PDF
Apache Spark on Kubernetes Anirudh Ramanathan and Tim Chen
PDF
Intro to open source observability with grafana, prometheus, loki, and tempo(...
PDF
Kappa vs Lambda Architectures and Technology Comparison
PDF
How to Prepare for CKA Exam
PPTX
Real-time Analytics with Trino and Apache Pinot
PDF
PostgreSQLレプリケーション(pgcon17j_t4)
PDF
Managing traffic routing with istio and envoy workshop
PDF
GCP for Apache Kafka® Users: Stream Ingestion and Processing
PPTX
RDB開発者のためのApache Cassandra データモデリング入門
PPTX
Introduction to Apache Kafka
PDF
Confluent Workshop Series: ksqlDB로 스트리밍 앱 빌드
Loki - like prometheus, but for logs
Intro to Telegraf
Intro to InfluxDB 2.0 and Your First Flux Query by Sonia Gupta
Start Automating InfluxDB Deployments at the Edge with balena
Best Practices: How to Analyze IoT Sensor Data with InfluxDB
Apache Spark in Depth: Core Concepts, Architecture & Internals
Intro to InfluxDB
Hive + Tez: A Performance Deep Dive
Apache Spark on Kubernetes Anirudh Ramanathan and Tim Chen
Intro to open source observability with grafana, prometheus, loki, and tempo(...
Kappa vs Lambda Architectures and Technology Comparison
How to Prepare for CKA Exam
Real-time Analytics with Trino and Apache Pinot
PostgreSQLレプリケーション(pgcon17j_t4)
Managing traffic routing with istio and envoy workshop
GCP for Apache Kafka® Users: Stream Ingestion and Processing
RDB開発者のためのApache Cassandra データモデリング入門
Introduction to Apache Kafka
Confluent Workshop Series: ksqlDB로 스트리밍 앱 빌드
Ad

Similar to Build an Edge-to-Cloud Solution with the MING Stack (20)

PPTX
InfluxDB Roadmap: What’s New and What’s Coming
PDF
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
PDF
Virtual training intro to InfluxDB - June 2021
PPTX
InfluxDB 101 – Concepts and Architecture by Michael DeSa, Software Engineer |...
PDF
OPTIMIZING THE TICK STACK
PDF
Russ Savage [Ngrok] | InfluxDB QuickStart | InfluxDays NA 2021
PPTX
InfluxDB 1.0 - Optimizing InfluxDB by Sam Dillard
PDF
Time Series to Vectors: Leveraging InfluxDB and Milvus for Similarity Search
PDF
Flux QL - Nexgen Management of Time Series Inspired by JS
PDF
Announcing: Native MQTT Integration with HiveMQ and InfluxDB Cloud
PDF
Intro to Time Series
PDF
Brian Gilmore [InfluxData] | InfluxDB in an IoT Application Architecture | In...
PDF
Balaji Palani [InfluxData] | InfluxDB Tasks Overview | InfluxDays 2022
PDF
Michael Hall [InfluxData] | Become an InfluxDB Pro in 20 Minutes | InfluxDays...
PDF
Devoxx france 2015 influx db
PDF
Devoxx france 2015 influxdb
PDF
Time Series Tech Stack for the IoT Edge
PPTX
Anais Dotis-Georgiou & Faith Chikwekwe [InfluxData] | Top 10 Hurdles for Flux...
PPTX
Paul Dix [InfluxData] | InfluxDays Keynote: Future of InfluxDB | InfluxDays N...
InfluxDB Roadmap: What’s New and What’s Coming
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
Virtual training intro to InfluxDB - June 2021
InfluxDB 101 – Concepts and Architecture by Michael DeSa, Software Engineer |...
OPTIMIZING THE TICK STACK
Russ Savage [Ngrok] | InfluxDB QuickStart | InfluxDays NA 2021
InfluxDB 1.0 - Optimizing InfluxDB by Sam Dillard
Time Series to Vectors: Leveraging InfluxDB and Milvus for Similarity Search
Flux QL - Nexgen Management of Time Series Inspired by JS
Announcing: Native MQTT Integration with HiveMQ and InfluxDB Cloud
Intro to Time Series
Brian Gilmore [InfluxData] | InfluxDB in an IoT Application Architecture | In...
Balaji Palani [InfluxData] | InfluxDB Tasks Overview | InfluxDays 2022
Michael Hall [InfluxData] | Become an InfluxDB Pro in 20 Minutes | InfluxDays...
Devoxx france 2015 influx db
Devoxx france 2015 influxdb
Time Series Tech Stack for the IoT Edge
Anais Dotis-Georgiou & Faith Chikwekwe [InfluxData] | Top 10 Hurdles for Flux...
Paul Dix [InfluxData] | InfluxDays Keynote: Future of InfluxDB | InfluxDays N...
Ad

More from InfluxData (20)

PPTX
Announcing InfluxDB Clustered
PDF
Best Practices for Leveraging the Apache Arrow Ecosystem
PDF
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
PDF
Power Your Predictive Analytics with InfluxDB
PDF
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
PDF
Meet the Founders: An Open Discussion About Rewriting Using Rust
PDF
Introducing InfluxDB Cloud Dedicated
PDF
Gain Better Observability with OpenTelemetry and InfluxDB
PPTX
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
PDF
How Delft University's Engineering Students Make Their EV Formula-Style Race ...
PPTX
Introducing InfluxDB’s New Time Series Database Storage Engine
PDF
Understanding InfluxDB’s New Storage Engine
PDF
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
PPTX
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
PDF
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
PDF
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
PDF
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
PDF
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
PDF
Paul Dix [InfluxData] The Journey of InfluxDB | InfluxDays 2022
PDF
Jay Clifford [InfluxData] | Tips & Tricks for Analyzing IIoT in Real-Time | I...
Announcing InfluxDB Clustered
Best Practices for Leveraging the Apache Arrow Ecosystem
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
Power Your Predictive Analytics with InfluxDB
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
Meet the Founders: An Open Discussion About Rewriting Using Rust
Introducing InfluxDB Cloud Dedicated
Gain Better Observability with OpenTelemetry and InfluxDB
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
How Delft University's Engineering Students Make Their EV Formula-Style Race ...
Introducing InfluxDB’s New Time Series Database Storage Engine
Understanding InfluxDB’s New Storage Engine
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
Paul Dix [InfluxData] The Journey of InfluxDB | InfluxDays 2022
Jay Clifford [InfluxData] | Tips & Tricks for Analyzing IIoT in Real-Time | I...

Recently uploaded (20)

PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
KodekX | Application Modernization Development
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
PDF
Machine learning based COVID-19 study performance prediction
PDF
Electronic commerce courselecture one. Pdf
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Chapter 3 Spatial Domain Image Processing.pdf
NewMind AI Weekly Chronicles - August'25 Week I
“AI and Expert System Decision Support & Business Intelligence Systems”
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
KodekX | Application Modernization Development
CIFDAQ's Market Insight: SEC Turns Pro Crypto
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Empathic Computing: Creating Shared Understanding
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
20250228 LYD VKU AI Blended-Learning.pptx
Review of recent advances in non-invasive hemoglobin estimation
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
Machine learning based COVID-19 study performance prediction
Electronic commerce courselecture one. Pdf
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....

Build an Edge-to-Cloud Solution with the MING Stack

  • 1. | © Copyright 2023, InfluxData Building an Edge to Cloud Solution with the MING Stack June 2023
  • 2. | © Copyright 2023, InfluxData Past life: Sales Engineer for IIoT Solutions. Passion: Autonomous and Vision based projects. Driven: To make IoT accessible to all. Belief: Industrial IoT’s success belongs to the domain experts. Jay Clifford Developer Advocate, InfluxData
  • 3. | © Copyright 2023, InfluxData Past life: Data Integrations for CRM. Passion: Home automation. Driven: To help the community get the best value from Node-RED. Belief: No-code is the best code. Rob Marcer Customer Success Manager, FlowForge
  • 4. | © Copyright 2023, InfluxData Part 3 Edge to Cloud with FlowForge Part 2 Intro to Plant Buddy Part 4 Demo and next steps! Part 1 What is FlowForge? 4
  • 5. | © Copyright 2023, InfluxData What is FlowForge?
  • 6. | © Copyright 2023, InfluxData Firstly, what is Node-RED?
  • 7. | © Copyright 2023, InfluxData • Low-code programming for event-driven applications • Open Source, started at IBM • Huge library of third party ‘custom nodes’ • OpenJS Foundation ‘At Large’ Project • 100 million + pulls of the official Docker image
  • 8. | © Copyright 2023, InfluxData • Founded by one of the co-creators of Node-RED • DevOps for Node-RED • Self hosted and SaaS versions available • It’s the perfect tool to help teams collaborate on small and large Node-RED applications
  • 9. | © Copyright 2023, InfluxData
  • 10. | © Copyright 2023, InfluxData
  • 11. | © Copyright 2023, InfluxData
  • 12. | © Copyright 2023, InfluxData On The Roadmap • High Availability and Scalability • Swagger API • Custom Instance Domains • New ‘Dashboard’
  • 13. | © Copyright 2023, InfluxData What is MING?
  • 14. | © Copyright 2023, InfluxData M . I . N . G
  • 15. | © Copyright 2023, InfluxData MING - Example (balena)
  • 16. | © Copyright 2023, InfluxData Recap on InfluxDB 3.0
  • 17. | © Copyright 2023, InfluxData InfluxDB 3.0 Schema on write Write and Query Millions of rows per second Single datastore for all time series data (Metrics, Logs & Traces) SQL and InfluxQL Support
  • 18. | © Copyright 2023, InfluxData
  • 19. | © Copyright 2023, InfluxData Concepts: Data Model Bucket • All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). Measurement • A name to a group of data at a high level (Table) Tag set • A set of key-value pairs to group data at a low level (values are strings) Field set • A set of key-value pairs to represent data (values are numerical & strings) Timestamp • Time of the data with nanosecond precision Series • A unique combination of measure+tags
  • 20. | © Copyright 2023, InfluxData Intro to Plant Buddy
  • 21. | © Copyright 2023, InfluxData Temperature & Humidity Goal: Create a platform which can monitor the health of household plants Provide: ● Data Collection ● Data Storage ● Visualization + Analysis Light Soil Temperature ? Soil Moisture What is Plant Buddy
  • 22. | © Copyright 2023, InfluxData 22 Determine a state Time in state Anomaly Detection
  • 23. | © Copyright 2023, InfluxData InfluxDB Cloud FlowForge Architecture Grafana
  • 24. | © Copyright 2023, InfluxData Sensor DAQ Enrichmen t Edge to Cloud Enrichment Connector database dashboard Deeper Dive Health checker
  • 25. | © Copyright 2023, InfluxData Edge to Cloud with FlowForge
  • 26. | © Copyright 2023, InfluxData Putting the M in MING ● FlowForge has a built in MQTT Implementation ● Allows Node-RED instances in the same application to talk to each other ● Supports instances in the cloud as well as on edge devices ● github.com/flowforge/flowforge-nr-project-nodes
  • 27. | © Copyright 2023, InfluxData Let’s start!
  • 28. | © Copyright 2023, InfluxData Tips and Tricks
  • 29. | © Copyright 2023, InfluxData Flow Forge = Task Engine
  • 30. | © Copyright 2023, InfluxData Payload Building msg.payload = [ [{ intValue: '9i', numValue: 10, randomValue: Math.random()*10, strValue: "message1", time: new Date().getTime()-1 }, { tag1:"sensor1", tag2:"device2" }], [{ intValue: '11i', numValue: 20, randomValue: Math.random()*10, strValue: "message2", time: new Date().getTime() }, { tag1:"sensor1", tag2:"device2" }] ]; return msg; msg.payload = [ { measurement: "weather_sensor", fields: { temp: 5.5, light: 678, humidity: 51 }, tags:{ location:"garden" }, timestamp: new Date() }, { measurement: "alarm_sensor", fields: { proximity: 999, temp: 19.5 }, tags:{ location:"home" }, timestamp: new Date() } ]; return msg; VS.
  • 31. | © Copyright 2023, InfluxData Connecting to InfluxDB 3.0 influx v1 dbrp create --token <token> --db flowforge --rp flowforge --bucket-id 3b1a3a72281a9367 --default 1 2
  • 32. | © Copyright 2023, InfluxData ● Use off-the-peg custom nodes (such as node-red-contrib-influxdb) ● Create yourself a basic UI using Dashboard early in your development process ● Use groups in the design interface to make it easier to organise your flows ● The Exec node make it easy to interact with a device’s hardware and OS ● https://discourse.nodered.org/ is a great place to get help More Node-RED tips - https://flowforge.com/blog/tips/ Node-RED Tips
  • 33. | © Copyright 2023, InfluxData What next?
  • 34. | © Copyright 2023, InfluxData Try it yourself 34 https://github.com/InfluxCommunity/ FlowForge
  • 35. | © Copyright 2023, InfluxData FlowForge Resources Community Forums - community.flowforge.com Github - github.com/flowforge Documentation - flowforge.com/docs Blog - flowforge.com/blog
  • 36. | © Copyright 2023, InfluxData https://influxdbu.com/ https://influxcommunity.slack.com/ Learning and Community 36
  • 37. | © Copyright 2023, InfluxData Any Questions?
  • 38. | © Copyright 2023, InfluxData www.influxdata.com
  • 39. | © Copyright 2023, InfluxData Demo Screenshots
  • 40. | © Copyright 2023, InfluxData
  • 41. | © Copyright 2023, InfluxData
  • 42. | © Copyright 2023, InfluxData
  • 43. | © Copyright 2023, InfluxData
  • 44. | © Copyright 2023, InfluxData
  • 45. | © Copyright 2023, InfluxData
  • 46. | © Copyright 2023, InfluxData
  • 47. | © Copyright 2023, InfluxData
  • 48. | © Copyright 2023, InfluxData
  • 49. | © Copyright 2023, InfluxData
  • 50. | © Copyright 2023, InfluxData
  • 51. | © Copyright 2023, InfluxData
  • 52. | © Copyright 2023, InfluxData