server.tracker ============== .. py:module:: server.tracker Classes ------- .. autoapisummary:: server.tracker.ResourceTracker Functions --------- .. autoapisummary:: server.tracker.current_memory_usage Module Contents --------------- .. py:function:: current_memory_usage() -> int .. py:class:: ResourceTracker(enable_tracemalloc: bool) An object to track memory and other resources during development. .. py:attribute:: tracking_tools :value: ('tracemalloc.py', 'linecache.py', 'objgraph.py', 'server/tracker.py') .. py:attribute:: memory_snapshots :type: collections.deque[int] .. py:attribute:: non_monotonic :type: set[str] .. py:attribute:: tracebacks :type: dict[str, tuple[int, int]] .. py:attribute:: enable_tracemalloc .. py:attribute:: started :value: False .. py:method:: start() -> None .. py:property:: memory_snapshots_count :type: int .. py:property:: memory_usage :type: int .. py:property:: memory_usage_delta :type: int .. py:method:: track() -> None .. py:method:: track_memory() -> None .. py:method:: condense_name(name: str) -> str .. py:method:: track_tracemalloc() -> None .. py:method:: show_memory_usage() -> None .. py:method:: show_monotonically_increasing_traces() -> None