From 9117c090376533848f820ee5b76f7fcd07cfb0ab Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 9 Oct 2025 17:56:25 -0400 Subject: [PATCH] graphstats: Set MAXBUFFER=1 Signed-off-by: Kevin O'Connor --- scripts/graphstats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/graphstats.py b/scripts/graphstats.py index 5cd2ad34f..c49223705 100755 --- a/scripts/graphstats.py +++ b/scripts/graphstats.py @@ -1,14 +1,14 @@ #!/usr/bin/env python # Script to parse a logging file, extract the stats, and graph them # -# Copyright (C) 2016-2021 Kevin O'Connor +# Copyright (C) 2016-2025 Kevin O'Connor # # This file may be distributed under the terms of the GNU GPLv3 license. import optparse, datetime import matplotlib MAXBANDWIDTH=25000. -MAXBUFFER=2. +MAXBUFFER=1. STATS_INTERVAL=5. TASK_MAX=0.0025