Fuuz Machine Telemetry App | Rapid Application Accelerator

Machine Telemetry App — Rapid Application Accelerator

Article Type: Accelerator / Reference Application
Audience: Solution Architects, Operations Engineers, Implementation Partners, Developers
Module: Manufacturing Operations & IIoT Telemetry
Applies to Versions: Fuuz 2026.2+
App Version: 0.0.2  |  Spec Version: 2.0.0

1. Overview

The Machine Telemetry App is a comprehensive industrial operations accelerator built on the Fuuz platform. It provides end-to-end manufacturing visibility covering IIoT telemetry collection, OEE (Overall Equipment Effectiveness) calculation per ISO 22400, alarm management, production tracking, and workcenter state management.

The application ships with built-in data generators that simulate realistic manufacturing operations across a three-site enterprise — making it immediately usable for demos, proof-of-concept evaluations, and as a foundation for production deployments.

Vibe-Coded with Claude AI: This application was vibe-coded with Claude AI using examples of Fuuz flows, queries, and screens as context. Claude generated most of the application artifacts including data models, data flows, screen designs, and OEE calculation logic — demonstrating the speed at which production-ready Fuuz applications can be built with AI assistance.


What’s Included

Component Count Highlights
Data Models24Equipment hierarchy, telemetry (raw/hourly/daily), OEE (ISO 22400), production, alarms, events
Data Flows18Scheduled generators, event-driven OEE, alarm detection, dashboard web flows
Screens123 dashboards (OEE, Reliability, Alarms), 3 CRUD screens, 6 operational history views
Schedules95-minute telemetry, hourly aggregation, daily rollups, weekly work orders
Seed Data1,600+3 sites, 9 areas, 18 lines, 36 cells, 500 assets, 996 data points, 36 workcenters, 21 products, 72 events




Module Structure

Component ID
Module GroupmachineTelemetrySiteApplication — Machine Telemetry Site Application
ModulemachineDataApp — Machine Data App

2. Manufacturing Hierarchy

The application models a multi-site manufacturing enterprise following the ISA-95 physical hierarchy:

Enterprise (mfgx)
  └─ Site
      └─ Area
          └─ Line
              └─ Cell
                  └─ Asset
                      └─ DataPoint

Sites (3)

ID Name Industry Focus
DETDetroitAutomotive parts manufacturing
HOUHoustonChemical compounds / process manufacturing
MKEMilwaukeeFood & beverage manufacturing

Scale Summary

Entity Count Details
Sites3Detroit, Houston, Milwaukee
Areas9Assembly, CIP, Machining, Mixing, Packaging, Reactor, Separation, Stamping, Utilities
Lines18Batch Mix, Reactor, Cartoning, CNC, Fill, Weld, Press, and more
Cells36Operational work cells across all lines
Assets500ASSET-0001 through ASSET-0500
Data Points996+DP-00001 through DP-00996, plus 4 prototype points
Workcenters3618 types × 2 instances each (C1 and C2)
Products21Automotive parts, chemical compounds, food & beverage products
Events72Downtime reasons across 12 categories

3. Data Models (24)

The application includes 24 data models organized into six functional groups:

Equipment & Hierarchy Models

Model Purpose Key Fields
SitePhysical location / campuscode, name, city, country, timezone, industry, isActive, areas[]
AreaFunctional subdivision within a Sitecode, name, isActive, siteId → Site, lines[]
LineProduction line / flow within an Areacode, name, isActive, areaId → Area, cells[], assets[]
CellSmallest operational work cell / stationcode, name, isActive, lineId → Line, assets[]
AssetPhysical equipment with identity & maintenance attributescode, name, type, manufacturer, model, serialNumber, criticality, connectionString, installedAt, nextPmAt, cellId, lineId, workcenterId, dataPoints[]
DataPointTelemetry / process variable on an Assetcode, category, dataType, frequency, precision, deadband, setPoint, tolerance, lowerLimit, upperLimit, alarmEnabled, alarmPriority, historize, assetId, unitId

Telemetry Models

Model Tier Purpose Key Statistical Fields
TelemetryRawRawNumeric sensor readings from devicesvalue, quality, qualityCode, recordedAt
TelemetryRawBoolRawBoolean state readings (on/off, open/closed)valueBool, quality, recordedAt
TelemetryRawStringRawString/text telemetry (status codes, messages)value (String), quality, recordedAt
TelemetryHourlyAggregatedHourly statistical summaries per data pointavg, min, max, sum, std, p05/p25/p50/p75/p95, first, last, countGood, countBad, pctTrue, modeValue
TelemetryDailyAggregatedDaily statistical summaries per data point(same statistical structure as TelemetryHourly)

OEE Models (ISO 22400)

Model Purpose Key Fields
WorkcenterProduction execution point for work orderscode, name, isActive, scheduleGroupId, cellId, lineId, currentWorkOrderId, currentWorkcenterHistoryId
Mode (8 values)Drives availability calculation per ISO 22400PROD, SETUP, MAINT, DOWN, IDLE, CLEAN, ENG, NOSCHED
State (14 values)Operational state categorizationRUN, SLOW, STOP, FLT, ESTOP, HELD, BLKD, STRV, CHGV, CLN, MAINT, WARM, OFF, UNK
WorkcenterHistoryTime-series state change records for OEE & downtimeoccurAt, endAt, duration, modeId, stateId, workcenterId, eventId, scheduleId
OeeHourlyHourly OEE bucket with full ISO 22400 metricsavailability, performance, quality, oee, totalUnits, goodUnits, scrapUnits, plannedMinutes, runMinutes, downtimeMinutes, idealCycleTime, shift
OeeDailyDaily aggregated OEE metrics per workcenteravailability, performance, quality, oee, hoursRecorded, hoursWithProduction, scheduledTime

Mode Definitions — OEE Availability Impact

Code Name Downtime? Production Time? OEE Impact
PRODProductionNoYesProduction
SETUPSetupYesNoSetup
MAINT / DOWN / IDLEMaintenance / Disabled / IdleYesNoUnplanned
CLEAN / ENGCleaning / EngineeringYesNoPlanned
NOSCHEDNo ScheduleNoNoExcluded

Production, Alarm & Event Models

The remaining models cover production execution (Product, WorkOrder, ProductionLog), alarm management (Alarm with 8 AlarmStates: ACTIVE, ACKNOWLEDGED, ACTIVE_ACK, CLEARED_ACK, CLEARED_UNACK, OUT_OF_SERVICE, SHELVED, SUPPRESSED), and downtime categorization (EventCategory with 12 categories, Event with 72 specific downtime reasons).

Event Categories (12) — Downtime Classification

Code Name Affects OEE Planned
chgvChangeoverYesYes
elec / mechElectrical / Mechanical FailureYesNo
matl / proc / qualMaterial / Process / Quality IssuesYesNo
oper / pmntOperator / Planned MaintenanceYesYes
umnt / extl / utilUnplanned Maint / External / UtilitiesYesNo
schdNo ScheduleNoYes

4. Data Flows (18)

Data flows are the server-side automation engine. They run as scheduled jobs, event-driven reactors, and API-invoked sub-flows. The 18 flows are organized into seven functional pipelines:

4.1 Telemetry Data Generation & Aggregation (4 flows)

Flow Trigger Nodes Purpose
Telemetry Generator Scheduler
telemetryGeneratorScheduler
Schedule (5-min)20Main IIoT data generator. Splits data points by type (numeric/boolean/string), batches by frequency, generates realistic values, writes to TelemetryRaw models.
Generate Boolean Raw Data
generateBooleanRawData
API (sub-flow)4Sub-flow for boolean data point batch processing.
Telemetry Hourly Aggregation
telemetryRawDataAggregationHourly
Schedule (hourly)9Aggregates raw telemetry into hourly statistical summaries (avg, min, max, percentiles, quality counts).
Daily Telemetry Aggregation
dailyAggregationFlow
Schedule (daily)9Rolls up hourly summaries into daily aggregations.

4.2 OEE Calculation Pipeline (5 flows)

Flow Trigger Purpose
Generate OeeHourly Stubs
generatePayloadForOeeScheduleTomorrowParentFlowScheduled
Schedule (nightly)Pre-creates next-day OeeHourly records with schedule information.
Workcenter Planned Availability
workcenterPlannedAvailability
ScheduleCalculates and broadcasts planned availability windows for all active workcenters.
Calculate OEE Hourly
calculateOeeHourly
Schedule (hourly)Full recalculation catch-up of OEE hourly metrics from production logs and workcenter history. ISO 22400 compliant.
Production Log → OEE Events
proudctionLogCreateOeeEvents
DataChange: Create on ProductionLogEvent-driven. Calculates OEE impact when a new production log entry is created. Uses mutex lock for concurrency.
WC History → OEE Updates
workcenerHistoryToOeeHourlyUpdatesOnEndAt
DataChange: Update on WorkcenterHistoryEvent-driven. Recalculates availability for all affected OEE hourly buckets when a history record closes. Uses mutex lock.

4.3–4.7 Additional Pipelines (9 flows)

Pipeline Flows Description
Production SimulationproductionSimulatorDaily, weeklyWorkOrderGeneratorDaily production log generation with work order quantity updates. Weekly auto-generation of work orders for all active workcenters.
Workcenter State ManagementworkcenterHistoryScheduler (21 nodes)ISO 22400-compliant state change generator with realistic transitions and proper mode assignments. Uses mutex lock.
Alarm ProcessingcreateAlarmOnTelemetryRawAnomolyDataChangeEvent-driven (DataChange: Create on TelemetryRaw). Evaluates anomalies and creates alarm records when values exceed configured limits.
OEE Daily AggregationoeeDailyAggregationFlowDaily scheduled. Aggregates hourly OEE data into daily summaries per workcenter.
Utility FlowsduplicateAssetWithOptionsFromScreen, updateDataPointFrequenciesScreen-invoked asset duplication with form dialogs. Batch data point frequency updates.
Dashboard Web FlowsoeeRealTimeCalculationsWebFlow, reliabilityDashboardWebFlowBrowser-invoked API flows serving real-time OEE and reliability metrics to dashboard screens.

5. Screens (12)

Screen ID Components Category Description
Workcenter OEE DashboardworkcenterOeeDashboard158DashboardReal-time OEE with Availability, Performance, and Quality pillar cards. Canvas layout with charts powered by OEE Web Flow.
Workcenter Reliability DashboardworkcenterReliabilityDashboard149DashboardEquipment reliability metrics powered by the Reliability Dashboard Web Flow.
Alarms DashboardalarmsDashboard116DashboardAlarm management with active/acknowledged/cleared filtering and visual status indicators.
Assetsassets67Data ManagementAsset CRUD with data point management. “Duplicate Asset” action button. Filter by site/area/line.
Productsproducts38Data ManagementProduct master data with workcenter assignment.
Workcenterworkcenter36Data ManagementWorkcenter configuration within the manufacturing hierarchy.
Workcenter History / Production Log / OEE Hourly / OEE Daily / Telemetry Hourly / Telemetry Daily38–50 eachOperational HistorySix tabular history screens with date-range and workcenter/data-point filtering.

6. Architecture Patterns

Three-Tier Telemetry Pipeline

IIoT Devices / Simulators
    │
    ▼ (5-min schedule)
TelemetryRaw / RawBool / RawString  →  Alarm Detection (DataChange trigger) → Alarm
    │
    ▼ (hourly aggregation)
TelemetryHourly
    │
    ▼ (daily aggregation)
TelemetryDaily

OEE Calculation Architecture

WorkcenterHistory Scheduler (hourly)        Production Simulator (daily)
    │                                                  │
    ▼                                                  ▼
WorkcenterHistory (DataChange)       ProductionLog (DataChange)
    │                                                  │
    └───────────── OeeHourly ─────────────┘
                              │
                              ▼ (daily aggregation)
                          OeeDaily

Concurrency Control

Mutex Locks: Three critical flows use mutex locks to prevent race conditions when multiple triggers update the same OeeHourly records simultaneously: Production Log → OEE Events, WC History → OEE Updates, and WorkcenterHistoryScheduler.

Web Flow Pattern (Dashboard APIs)

Dashboard screens invoke server-side Web Flows via API Request to perform real-time calculations too complex for client-side GraphQL queries. The pattern follows: Browser → API Call → Web Flow (Request → Query → JavaScript → JSONata → Response) → JSON Payload → Browser renders widgets.

7. Schedules & Frequencies

Schedule Frequency Description
Raw Telemetry Data Generation5-minuteReal-time IIoT raw data simulation
Aggregate Raw Telemetry HourlyHourlyPrior hour raw → hourly rollup
Workcenter History GenerationHourlyState change simulation
OEE Hourly Catch-upHourlyFull recalculation of previous hour
Generate OeeHourly StubsNightlyPre-create next day OEE buckets
Production Data CreationDailyProduction log & work order updates
Aggregate Telemetry Hourly to DailyDailyPrior day hourly → daily rollup
OEE Daily AggregationDailyAggregate OEE hourly → daily
Weekly Work Order CreationWeekly (Sunday)Auto-generate weekly work orders

Shift Schedule: Basic schedule group with three shifts (First, Second, Third) and corresponding daily schedule events.

8. Device Drivers & Units of Measure

Device Driver Configuration (18 drivers, 8 protocol families)

Protocol Family Drivers
PLCEthernet/IP PLC, PCCC PLC
OPCOPCUA Client
MQTTMQTT Broker, MQTT Client, MQTT Sparkplug B
ModbusModbus TCP
HTTPHTTP Client, HTTP Server
SQLMicrosoft SQL, MySQL, IBM DB2, Oracle DB
File / PrintLocal File, Native Printer, TCP Printer
NetworkTCP Server, TCP Socket, SAP RFC

Units of Measure (30 units, 15 types)

Time (s, min, h, d, wk, mo, yr), Weight (g, kg, lb, oz, st, t lb, t oz), Length (mm, in, ft), Amount (ea, pc), Currency (USD), Temperature (°C, °F), Electrical (A, kW), Frequency (Hz, RPM), Pressure (bar), Force (kN), Flow Rate (GPM, L/min), and Ratio (%).

9. Key Technical Decisions

Decision Rationale
ISO 22400 compliance for all OEE calculationsModes drive availability; States provide operational categorization. Industry-standard metrics recognized globally.
Three-tier telemetry aggregation (Raw → Hourly → Daily)Scalable time-series analytics. Raw data for real-time; aggregates for dashboards and reporting.
Event-driven OEE updates via DataChange triggersNear-real-time OEE on ProductionLog creates and WorkcenterHistory updates, supplemented by scheduled catch-up for consistency.
Mutex-based concurrency controlEnsures OeeHourly record integrity when multiple concurrent triggers update the same buckets.
Web Flow pattern for dashboard calculationsKeeps complex business logic server-side. Browsers call API endpoints; receive pre-calculated JSON payloads for rendering.

10. Resources

  • Fuuz Platform: fuuz.com
  • Fuuz Support Portal: support.fuuz.com
  • Companion Articles: Fuuz Cloud Connectors Reference, Fuuz Edge Connections Reference, Fuuz EDI Specifications Reference
  • Standards Reference: ISO 22400 (Manufacturing Operations Management — Key Performance Indicators), ISA-95 (Enterprise-Control System Integration)

11. Revision History

Version Date Changes
1.0 2026-02-010 Initial publication — Machine Telemetry App v0.0.2 accelerator reference covering 24 data models, 18 data flows, 12 screens, ISA-95 hierarchy, ISO 22400 OEE, three-tier telemetry pipeline, alarm management, and production simulation.
    • Related Articles

    • Claude AI Skills for the Fuuz Platform

      Article Type: Concept Audience: Enterprise Administrators, Application Administrators, Application Designers, Developers, Partners Module: Fuuz Platform Applies to Versions: 2026.2+ 1. Overview Fuuz publishes a curated set of Claude AI skills that ...
    • Welcome To Industry Accelerators!

      Industry 4.0 Accelerators Article Type: Concept / Feature Overview Audience: Manufacturers, System Integrators, Developers Module: Fuuz Industrial Operations Platform Applies to Versions: 2025.12+ Powering Smart Manufacturing on the Fuuz AI ...
    • Machine Monitoring V1.0.5

      Article Type: Concept / Application Overview Audience: Solution Architects, Application Designers, Partners, Operations Managers Module: Manufacturing / Production Management Applies to Versions: 2025.1.1+ 1. Overview The Machine Monitoring ...
    • Manufacturing Execution (NetSuite SDN Approved MES) V2025.4.0

      Article Type: Concept Audience: Solution Architects, Enterprise Administrators, Integration Specialists, Partners Module: NetSuite ERP Integration Applies to Versions: 2025.4.0+ 1. Overview The MES-NetSuite 2025.4.0 integration package provides ...
    • Screen Generation (AI) Flow Template V1.5.1

      Article Type: Concept Audience: App Admin, Developer Module: App Designer - Packages Applies to Versions: Platform 2023.11.2+ | Package v1.5.1 1. Overview The Screen Generation Package is a Fuuz system package that leverages the platform's native AI ...