mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-15 16:47:57 -05:00
BUG/MINOR: mux_h2: fix incorrect stat titles
Duplicate titles for the stats H2_ST_{OPEN,TOTAL}_{CONN,STREAM}. These
entries are used on csv for the heading.
This must be backported up to 2.3.
This fixes the github issue #1102.
This commit is contained in:
parent
0630038e77
commit
377d8786a7
1 changed files with 2 additions and 2 deletions
|
|
@ -432,9 +432,9 @@ static struct name_desc h2_stats[] = {
|
|||
.desc = "Count of currently open connections" },
|
||||
[H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
|
||||
.desc = "Count of currently open streams" },
|
||||
[H2_ST_TOTAL_CONN] = { .name = "h2_open_connections",
|
||||
[H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
|
||||
.desc = "Total number of connections" },
|
||||
[H2_ST_TOTAL_STREAM] = { .name = "h2_backend_open_streams",
|
||||
[H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
|
||||
.desc = "Total number of streams" },
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue