haproxy/examples/traces.cfg
Amaury Denoyelle c090e51502 MEDIUM: mux_quic: rename qmux traces to qcm
This patch is part of a renaming affecting mux_quic and related files.
Naming "qcm" will become the new marker for common mux_quic stuffs,
shared both on QUIC and QMux protocols. The final objective is to limit
"qmux" naming for stuffs related to the new experimental protocol of the
same name.

The current patch renames mux_quic traces token to "qcm". This is the
only change with external visible impacts in the whole renaming series.
However, to preserve compatibility, trace source alias is defined with
the older name "qmux". This relies on the previous patch which
introduced "alias" new trace_source member.
2026-05-13 16:23:58 +02:00

21 lines
663 B
INI

# This configuration example enables all trace available and output them on
# stderr.
# "stream" traces need haproxy to be compiled with -DDEBUG_DEV or -DDEBUG_FULL
.if version_atleast(3.1-dev8)
traces
trace all sink stderr level developer
trace pt verbosity complete start now
trace h1 verbosity complete start now
trace h2 verbosity complete start now
trace fcgi verbosity complete start now
trace spop verbosity complete start now
trace stream verbosity complete start now
trace check verbosity complete start now
trace applet verbosity complete start now
trace h3 start now
trace quic start now
trace qcm start now
trace peers start now
.endif