sysstat: lowered default polling interval for cpu/memory/network as there is no resources implications (all use /proc)

This commit is contained in:
Lemmy
2026-02-01 21:48:07 -05:00
parent ce142131b7
commit fcd65ec17c
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -270,13 +270,13 @@
"swapCriticalThreshold": 90,
"diskWarningThreshold": 80,
"diskCriticalThreshold": 90,
"cpuPollingInterval": 3000,
"tempPollingInterval": 3000,
"cpuPollingInterval": 1000,
"tempPollingInterval": 1000,
"gpuPollingInterval": 3000,
"enableDgpuMonitoring": false,
"memPollingInterval": 3000,
"memPollingInterval": 1000,
"diskPollingInterval": 30000,
"networkPollingInterval": 3000,
"networkPollingInterval": 1000,
"loadAvgPollingInterval": 3000,
"useCustomColors": false,
"warningColor": "",
+4 -4
View File
@@ -482,13 +482,13 @@ Singleton {
property int swapCriticalThreshold: 90
property int diskWarningThreshold: 80
property int diskCriticalThreshold: 90
property int cpuPollingInterval: 3000
property int tempPollingInterval: 3000
property int cpuPollingInterval: 1000
property int tempPollingInterval: 1000
property int gpuPollingInterval: 3000
property bool enableDgpuMonitoring: false // Opt-in: reading dGPU sysfs/nvidia-smi wakes it from D3cold, draining battery
property int memPollingInterval: 3000
property int memPollingInterval: 1000
property int diskPollingInterval: 30000
property int networkPollingInterval: 3000
property int networkPollingInterval: 1000
property int loadAvgPollingInterval: 3000
property bool useCustomColors: false
property string warningColor: ""