mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-02 05:10:22 -05:00
BUG/MINOR: stats: make "show stat typed desc" work again
As part of the changes to support per-module stats data in 2.3-dev6
with commit ee63d4bd6 ("MEDIUM: stats: integrate static proxies stats
in new stats"), a small change resulted in the description field to
be replaced by the name field, making it pointless. Let's fix this
back.
This should fix issue #1291. Thanks to Nick Ramirez for reporting this
issue.
This patch can be backported to 2.3.
This commit is contained in:
parent
9abb317683
commit
fc8e438637
1 changed files with 2 additions and 2 deletions
|
|
@ -637,8 +637,8 @@ static int stats_dump_fields_typed(struct buffer *out,
|
|||
if (!stats_emit_typed_data_field(out, &stats[field]))
|
||||
return 0;
|
||||
|
||||
if (flags & STAT_SHOW_FDESC
|
||||
&& !chunk_appendf(out, ":\"%s\"", stat_f[domain][field].name)) {
|
||||
if (flags & STAT_SHOW_FDESC &&
|
||||
!chunk_appendf(out, ":\"%s\"", stat_f[domain][field].desc)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue