File size: 394 Bytes
778d47d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Memory monitoring configuration
# Easy to turn on/off or modify
# Set to False to completely disable memory monitoring
MEMORY_MONITORING_ENABLED = True
# Default memory limit (60GB = 60 * 1024 MB)
DEFAULT_MAX_MEMORY_MB = 61440 # 60GB default
# Logging settings
LOG_HIGH_MEMORY = True # Set to False to disable logging
LOG_TO_FILE = False # Set to True to log to file instead of console
|