Say you have events telling you when given doors in a building are opened and closed and how long each door is allowed to remained opened before an alarm is triggered.
Something like: (might need a timestamp too on events...) { "id": 1, "event":"Opened", "toBeClosedInSeconds":30 } { "id": 1, "event": "Closed" }
Is it possible to use Azure stream analytics to identify doors left open for more than the given timeframe? That is, identify the absence of closed before the given timeout passes? And if so, what would such a query look like?