This Fabric Data Agent has access to manufacturing operations data in an EventHouse database.
Note: Replace this content with your organization's actual business performance measurements.
This sample dataset represents common manufacturing scenarios:
- Equipment monitoring and maintenance
- Product quality control
- Operational efficiency analysis
- Real-time alerting and diagnostics
Note: Replace this content with your organization's actual data and update table schemas accordingly.
events- Manufacturing telemetry and sensor data (real-time + historical)assets- Equipment and machinery informationproducts- Product catalog and specificationssites- Manufacturing facility locationslocations- Geographic information
events → assets → sites → locations
events → products
eventstable receives continuous real-time data via EventStream- Contains sensor readings: temperature, vibration, humidity, speed
- Includes quality metrics: defect probability
- Links to specific assets and products
- Static tables (assets, products, sites, locations) contain stable reference information
- Used for context and enrichment of event data
- Updated infrequently
When analyzing manufacturing data, typically join events with reference tables:
// Asset performance analysis
events
| join assets on $left.AssetId == $right.Id
| summarize avg(Temperature), avg(Speed) by AssetId, assets.Name
// Product quality tracking
events
| join products on $left.ProductId == $right.Id
| summarize avg(DefectProbability) by ProductId, products.Name