gpu_monitoring_system / config /monitoring.json
meccatronis's picture
Upload config/monitoring.json with huggingface_hub
367e4aa verified
Raw
History Blame Contribute Delete
899 Bytes
{
"update_interval": 1.0,
"display_mode": "overlay",
"show_gpu_load": true,
"show_temperature": true,
"show_fan_speed": true,
"show_power": true,
"show_vram": true,
"show_clocks": true,
"show_efficiency": true,
"alerts": {
"enabled": true,
"temp_warning": 75.0,
"temp_critical": 85.0,
"power_warning": 200.0,
"load_warning": 90.0,
"fan_warning": 95
},
"ui": {
"theme": "dark",
"font_size": 12,
"opacity": 0.9,
"border_radius": 8,
"refresh_rate": 60
},
"logging": {
"enabled": true,
"level": "INFO",
"file": "logs/gpu_monitoring.log",
"max_size": "10MB",
"backup_count": 5
},
"database": {
"path": "data/gpu_monitoring.db",
"cleanup_days": 7,
"retention_days": 30
},
"web": {
"enabled": true,
"host": "0.0.0.0",
"port": 5000,
"debug": false,
"cors_enabled": true
}
}