You are tasked with implementing a system that tracks the inventory levels of various items in a warehouse using a series of events. Each event is represented as a record with the following properties:
The system should process these events sequentially to maintain the current inventory for each item (initially, all inventory counts are zero). Additionally, whenever the inventory for an item falls strictly below a given threshold, an alert must be generated. An alert is a record (in your chosen structure, e.g., a dictionary) that contains at least the following:
Your task is to write a function (or set of functions) that takes as input:
The function should process the list of events and return a list of alert records in the order they were generated. Make sure your solution is capable of handling a large number of events efficiently.
Consider edge cases such as:
Good luck!