haproxy/include/types
Emeric Brun 99c453df9d MEDIUM: ring: new section ring to declare custom ring buffers.
It is possible to globally declare ring-buffers, to be used as target for log
servers or traces.

ring <ringname>
  Creates a new ring-buffer with name <ringname>.

description <text>
  The descritpition is an optional description string of the ring. It will
  appear on CLI. By default, <name> is reused to fill this field.

format <format>
  Format used to store events into the ring buffer.

  Arguments:
    <format> is the log format used when generating syslog messages. It may be
             one of the following :

      iso     A message containing only the ISO date, followed by the text.
              The PID, process name and system name are omitted. This is
              designed to be used with a local log server.

      raw     A message containing only the text. The level, PID, date, time,
              process name and system name are omitted. This is designed to be
              used in containers or during development, where the severity
              only depends on the file descriptor used (stdout/stderr). This
              is the default.

      rfc3164 The RFC3164 syslog message format. This is the default.
              (https://tools.ietf.org/html/rfc3164)

      rfc5424 The RFC5424 syslog message format.
              (https://tools.ietf.org/html/rfc5424)

      short   A message containing only a level between angle brackets such as
              '<3>', followed by the text. The PID, date, time, process name
              and system name are omitted. This is designed to be used with a
              local log server. This format is compatible with what the systemd
              logger consumes.

      timed   A message containing only a level between angle brackets such as
              '<3>', followed by ISO date and by the text. The PID, process
              name and system name are omitted. This is designed to be
              used with a local log server.

maxlen <length>
  The maximum length of an event message stored into the ring,
  including formatted header. If an event message is longer than
  <length>, it will be truncated to this length.

size <size>
  This is the optional size in bytes for the ring-buffer. Default value is
  set to BUFSIZE.

  Example:
    global
        log ring@myring local7

    ring myring
        description "My local buffer"
        format rfc3164
        maxlen 1200

Note: ring names are resolved during post configuration processing.
2020-05-26 08:03:15 +02:00
..
acl.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
action.h MEDIUM: http-rules: Rely on http reply for http deny/tarpit rules 2020-05-20 18:27:13 +02:00
activity.h
applet.h MINOR: applet: adopt the wait list entry from the CLI 2020-05-19 19:37:12 +02:00
arg.h MINOR: http-htx/proxy: Add http-error directive using http return syntax 2020-05-20 18:27:14 +02:00
auth.h
backend.h
capture.h
channel.h
checks.h CLEANUP: checks: sort and rename tcpcheck_expect_type types 2020-05-06 12:38:44 +02:00
cli.h
compression.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
connection.h CLEANUP: assorted typo fixes in the code and comments 2020-04-17 09:37:36 +02:00
counters.h
dict.h
dns.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
fcgi-app.h
fd.h CLEANUP: assorted typo fixes in the code and comments 2020-04-17 09:37:36 +02:00
filters.h CLEANUP: assorted typo fixes in the code and comments 2020-03-14 09:42:07 +01:00
freq_ctr.h
global.h MINOR: init: report the haproxy version and executable path once on errors 2020-04-16 10:52:41 +02:00
hlua.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
http_ana.h CLEANUP: http-htx: Remove unused storage of error messages in buffers 2020-05-20 18:27:14 +02:00
http_htx.h CLEANUP: http-htx: Remove unused storage of error messages in buffers 2020-05-20 18:27:14 +02:00
lb_chash.h
lb_fas.h
lb_fwlc.h
lb_fwrr.h
lb_map.h
listener.h MINOR: ssl: split config and runtime variable for ssl-{min,max}-ver 2020-05-20 16:49:02 +02:00
log.h MEDIUM: ring: new section ring to declare custom ring buffers. 2020-05-26 08:03:15 +02:00
mailers.h
map.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
obj_type.h MINOR: checks/obj_type: Add a new object type for checks 2020-04-27 09:39:38 +02:00
pattern.h CLEANUP: assorted typo fixes in the code and comments 2020-03-14 09:42:07 +01:00
peers.h
pipe.h
port_range.h
proto_udp.h
protocol.h CLEANUP: assorted typo fixes in the code and comments 2020-03-14 09:42:07 +01:00
protocol_buffers.h
proxy.h CLEANUP: http-htx: Remove unused storage of error messages in buffers 2020-05-20 18:27:14 +02:00
queue.h
ring.h BUILD: buffer: types/{ring.h,checks.h} should include buf.h, not buffer.h 2020-03-07 06:07:18 +01:00
sample.h MEDIUM: checks: Parse custom action rules in tcp-checks 2020-04-27 09:39:37 +02:00
server.h BUG/MINOR: checks/server: use_ssl member must be signed 2020-04-27 12:13:06 +02:00
session.h
shctx.h
signal.h MINOR: wdt: Move the definitions of WDTSIG and DEBUGSIG into types/signal.h. 2020-03-18 13:07:19 +01:00
sink.h MEDIUM: ring: new section ring to declare custom ring buffers. 2020-05-26 08:03:15 +02:00
spoe.h CLEANUP: assorted typo fixes in the code and comments 2020-04-16 10:04:36 +02:00
ssl_ckch.h REORG: ssl: move the ckch_store related functions to src/ssl_ckch.c 2020-05-15 14:11:54 +02:00
ssl_crtlist.h CLEANUP: ssl: avoid circular dependencies in ssl_crtlist.h 2020-05-15 14:11:54 +02:00
ssl_sock.h BUILD: ssl: include buffer common headers for ssl_sock_ctx 2020-05-18 08:29:32 +02:00
stats.h
stick_table.h
stream.h CLEANUP: assorted typo fixes in the code and comments 2020-04-17 09:37:36 +02:00
stream_interface.h
task.h
template.h
trace.h
vars.h MINOR: checks/vars: Add a check scope for variables 2020-04-27 09:39:37 +02:00