Commit e9f8f627 by Seefs

fix: raise default overload disk threshold to 95%

parent 5fe8e98e
...@@ -36,7 +36,7 @@ var performanceSetting = PerformanceSetting{ ...@@ -36,7 +36,7 @@ var performanceSetting = PerformanceSetting{
MonitorEnabled: true, MonitorEnabled: true,
MonitorCPUThreshold: 90, MonitorCPUThreshold: 90,
MonitorMemoryThreshold: 90, MonitorMemoryThreshold: 90,
MonitorDiskThreshold: 90, MonitorDiskThreshold: 95,
} }
func init() { func init() {
......
...@@ -68,7 +68,7 @@ export default function SettingsPerformance(props) { ...@@ -68,7 +68,7 @@ export default function SettingsPerformance(props) {
'performance_setting.monitor_enabled': false, 'performance_setting.monitor_enabled': false,
'performance_setting.monitor_cpu_threshold': 90, 'performance_setting.monitor_cpu_threshold': 90,
'performance_setting.monitor_memory_threshold': 90, 'performance_setting.monitor_memory_threshold': 90,
'performance_setting.monitor_disk_threshold': 90, 'performance_setting.monitor_disk_threshold': 95,
}); });
const refForm = useRef(); const refForm = useRef();
const [inputsRow, setInputsRow] = useState(inputs); const [inputsRow, setInputsRow] = useState(inputs);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment