BufferedEntry
A dict entry in the Monitor buffer, representing a trace or span waiting to be flushed.Overview
The Monitor maintains an internalbuffer list of entries. Each entry is a dict that tracks whether the item is ready to flush, what category it is, and the underlying trace or span data. You can inspect the buffer to observe pending items or build custom flush logic.
Type Definition
Each entry inmonitor.buffer is a dict with the following shape:
Fields
Whether this entry is ready to be flushed to the API. An entry becomes ready when all required fields have been set. The background flush loop only sends entries where
ready is True.