| { |
| "profiles": { |
| "power_saving": { |
| "name": "Power Saving", |
| "description": "Optimize for minimum power consumption and quiet operation", |
| "settings": { |
| "cpu_governor": "powersave", |
| "gpu_power_target": 150, |
| "fan_curve": "silent", |
| "monitoring_interval": 5.0, |
| "data_retention": 3600, |
| "disable_screen_blank": false, |
| "disable_power_save": false |
| }, |
| "enabled": true |
| }, |
| "balanced": { |
| "name": "Balanced", |
| "description": "Balance between performance and power consumption", |
| "settings": { |
| "cpu_governor": "ondemand", |
| "gpu_power_target": 200, |
| "fan_curve": "balanced", |
| "monitoring_interval": 2.0, |
| "data_retention": 7200, |
| "disable_screen_blank": false, |
| "disable_power_save": false |
| }, |
| "enabled": true |
| }, |
| "performance": { |
| "name": "Performance", |
| "description": "Optimize for maximum performance with adequate cooling", |
| "settings": { |
| "cpu_governor": "performance", |
| "gpu_power_target": 250, |
| "fan_curve": "performance", |
| "monitoring_interval": 1.0, |
| "data_retention": 14400, |
| "disable_screen_blank": true, |
| "disable_power_save": true |
| }, |
| "enabled": true |
| }, |
| "gaming": { |
| "name": "Gaming", |
| "description": "Optimize for gaming with maximum performance and cooling", |
| "settings": { |
| "cpu_governor": "performance", |
| "gpu_power_target": 250, |
| "fan_curve": "performance", |
| "monitoring_interval": 0.5, |
| "data_retention": 28800, |
| "disable_screen_blank": true, |
| "disable_power_save": true, |
| "priority_boost": true, |
| "network_optimization": true |
| }, |
| "enabled": true |
| }, |
| "video_editing": { |
| "name": "Video Editing", |
| "description": "Optimize for video processing and rendering tasks", |
| "settings": { |
| "cpu_governor": "performance", |
| "gpu_power_target": 225, |
| "fan_curve": "performance", |
| "monitoring_interval": 1.0, |
| "data_retention": 21600, |
| "disable_screen_blank": true, |
| "disable_power_save": true, |
| "memory_optimization": true |
| }, |
| "enabled": true |
| }, |
| "development": { |
| "name": "Development", |
| "description": "Optimize for development workloads and compilation", |
| "settings": { |
| "cpu_governor": "ondemand", |
| "gpu_power_target": 180, |
| "fan_curve": "balanced", |
| "monitoring_interval": 2.0, |
| "data_retention": 10800, |
| "disable_screen_blank": false, |
| "disable_power_save": false, |
| "compiler_optimization": true |
| }, |
| "enabled": true |
| } |
| }, |
| "default_profile": "balanced", |
| "monitoring": { |
| "enabled": true, |
| "interval": 2.0, |
| "max_history": 1000, |
| "auto_cleanup": true, |
| "cleanup_interval": 3600 |
| }, |
| "recommendations": { |
| "enabled": true, |
| "cpu_threshold": 80.0, |
| "memory_threshold": 80.0, |
| "disk_threshold": 90.0, |
| "gpu_temp_threshold": 80.0, |
| "auto_apply": false |
| } |
| } |