aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stat.c b/stat.c
index b44ee62..72033c3 100644
--- a/stat.c
+++ b/stat.c
@@ -231,7 +231,7 @@ void stat_get_cpuinfo(stat *s)
/* EMA - Exponential Moving Average */
/* DisplayCPU = alpha * raw_cpu + (1 - alpha) * pre_cpu */
- double alpha = 0.1;
+ double alpha = 0.005;
if (total_diff > 0) {
double raw_cpu = (double)(total_diff - idle_diff) /
(double)total_diff * 100.0;