skills/cloud/azure/eventstreams/SKILL.md
Use when building real-time streaming pipelines in Microsoft Fabric with Eventstreams, connecting Event Hubs or IoT Hub sources, processing streams with windowed aggregations, or routing to Eventhouse/Lakehouse destinations. Covers DP-700 real-time intelligence domain.
npx skillsauth add kienbui1995/magic-powers eventstreamsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Source | Description | |--------|-------------| | Azure Event Hubs | Most common; connect existing event hub namespace | | Azure IoT Hub | Device telemetry from IoT scenarios | | Apache Kafka | Kafka-compatible endpoint; use consumer group | | Sample data | Built-in sample streams (e.g., Bicycles, Taxis) for testing | | Custom App | Use Fabric SDK or Event Hubs SDK to publish events | | Azure SQL DB (CDC) | Change data capture stream from SQL Server | | PostgreSQL (CDC) | Change data capture stream from PostgreSQL |
| Destination | Latency | Best for | |-------------|---------|---------| | Eventhouse (KQL Database) | Milliseconds | Real-time dashboards, KQL queries, alerts | | Lakehouse (Delta table) | Seconds to minutes | Near-real-time; Delta streaming into medallion | | Reflex | Near real-time | Event-driven alerts and automated actions | | Derived stream | — | Fan-out to multiple downstream transformations |
Transformations applied in-flight before data reaches destination: | Transformation | Description | |----------------|-------------| | Filter | Include/exclude events based on field conditions | | Manage fields | Add, remove, rename, or change types of fields | | Aggregate | Sum, Count, Min, Max, Avg over time window | | Group by | Group aggregations by field values | | Union | Merge multiple streams into one | | Expand | Flatten nested JSON arrays |
// Count events per minute
Events
| where Timestamp > ago(1h)
| summarize count() by bin(Timestamp, 1m)
| render timechart
// Filter and project
Events
| where EventType == "click"
| project UserId, Timestamp, Page
| Aspect | Eventstreams | Azure Event Hubs | |--------|-------------|-----------------| | Scope | Fabric-native streaming pipeline | Standalone messaging service | | Transformation | Built-in (no-code) | Requires Stream Analytics or Spark | | Destinations | Fabric-native (Lakehouse, Eventhouse) | Any Azure service | | Best for | Fabric-first analytics | Cross-service event distribution |
| where, | summarize, | project, | rendersummarize count() by bin(Timestamp, 1m) — standard pattern for 1-minute aggregation on time-series datacontent-media
Use when designing for XR (AR/VR/MR), choosing interaction modes, or adapting 2D UI patterns for spatial computing
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
development
Use when executing a structured workflow — select and run a feature, bugfix, refactor, research, or incident template with correct agent and model assignments per phase.