[PATCH yocto-autobuilder-helper] config.json: measure every 60 seconds
With the previous interval of 10 seconds, there would be
serveral times when the system was very busy and the script would not return before the next run was scheduled resulting in no measurement. In addition, build: https://autobuilder.yocto.io/pub/non-release/20210417-13/ produced 17 files with top output with top running 454 times and that's a bit too much data to analyze for each run. By decreasing the measurements, we'll find the worse problems first, fix them and then we can increase the freqency of measurement if needed. Signed-off-by: Randy MacLeod <Randy.MacLeod@...> --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index aad5257..962d8ae 100644 --- a/config.json +++ b/config.json @@ -56,7 +56,7 @@ "BB_DISKMON_DIRS = 'STOPTASKS,${TMPDIR},1G,100K STOPTASKS,${DL_DIR},1G STOPTASKS,${SSTATE_DIR},1G STOPTASKS,/tmp,100M,100K ABORT,${TMPDIR},100M,1K ABORT,${DL_DIR},100M ABORT,${SSTATE_DIR},100M ABORT,/tmp,10M,1K'", "BB_HASHSERVE = 'typhoon.yocto.io:8686'", "RUNQEMU_TMPFS_DIR = '/home/pokybuild/tmp'", - "BB_HEARTBEAT_EVENT = '10'", + "BB_HEARTBEAT_EVENT = '60'", "BB_LOG_HOST_STAT_ON_INTERVAL = '1'", "BB_LOG_HOST_STAT_CMDS = 'oe-time-dd-test.sh 100'" ] -- 2.27.0 |
|