Skip to main content

MemoryInfo

crawlee._utils.system.MemoryInfo

Information about the memory usage.

Args: total_size: Total memory available in the system. current_size: Memory usage of the current Python process and its children. created_at: The time at which the measurement was taken.

Index

Properties

created_at

created_at: datetime

current_size

current_size: Annotated[ ByteSize, PlainValidator(ByteSize.validate), PlainSerializer(lambda size: size.bytes), Field(alias='currentSize'), ]

model_config

model_config:

total_size

total_size: Annotated[ ByteSize, PlainValidator(ByteSize.validate), PlainSerializer(lambda size: size.bytes), Field(alias='totalSize') ]