From: Christopher Faulet Date: Fri, 4 Oct 2024 13:44:39 +0000 (+0200) Subject: BUG/MINOR: stats: Fix the name for the total number of streams created X-Git-Tag: v3.1-dev10~118 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=131b877565db423930909f0c26f25e000cbd6e3b;p=thirdparty%2Fhaproxy.git BUG/MINOR: stats: Fix the name for the total number of streams created Because of a copy/paste error, CurrStreams was reused by mistake. It should be "CumStreams" No backports needed. --- diff --git a/src/stats.c b/src/stats.c index 93f3e8e826..e54141cc00 100644 --- a/src/stats.c +++ b/src/stats.c @@ -169,7 +169,7 @@ const struct name_desc stat_cols_info[ST_I_INF_MAX] = { [ST_I_INF_BOOTTIME_MS] = { .name = "BootTime_ms", .desc = "How long ago it took to parse and process the config before being ready (milliseconds)" }, [ST_I_INF_NICED_TASKS] = { .name = "Niced_tasks", .desc = "Total number of active tasks+tasklets in the current worker process (Run_queue) that are niced" }, [ST_I_INF_CURR_STRM] = { .name = "CurrStreams", .desc = "Current number of streams on this worker process" }, - [ST_I_INF_CUM_STRM] = { .name = "CurrStreams", .desc = "Total number of streams created on this worker process since started" }, + [ST_I_INF_CUM_STRM] = { .name = "CumStreams", .desc = "Total number of streams created on this worker process since started" }, }; /* one line of info */