blob: 32c056712fead517bdd716014407f439a1a3e5d1 [file] [log] [blame]
Willy Tarreau67b5a162019-08-11 16:38:56 +02001/*
2 * include/types/sink.h
3 * This file provides definitions for event sinks
4 *
5 * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_SINK_H
23#define _TYPES_SINK_H
24
25#include <common/buffer.h>
26#include <common/compat.h>
27#include <common/config.h>
28#include <common/ist.h>
29
30/* A sink may be of several types. For now the following types are supported:
Willy Tarreau973e6622019-08-20 11:57:52 +020031 * - file descriptor (such as stdout)
Willy Tarreau67b5a162019-08-11 16:38:56 +020032 */
33enum sink_type {
34 SINK_TYPE_NEW, // not yet initialized
Willy Tarreau973e6622019-08-20 11:57:52 +020035 SINK_TYPE_FD, // events sent to a file descriptor
Willy Tarreau67b5a162019-08-11 16:38:56 +020036};
37
38/* This indicates the default event format, which is the destination's
39 * preferred format, but may be overridden by the source.
40 */
41enum sink_fmt {
42 SINK_FMT_RAW, // raw text sent as-is
43 SINK_FMT_SHORT, // raw text prefixed with a syslog level
44 SINK_FMT_ISO, // raw text prefixed with ISO time
45 SINK_FMT_TIMED, // syslog level then ISO
46 SINK_FMT_RFC3164, // regular syslog
47 SINK_FMT_RFC5424, // extended syslog
48};
49
50/* describes the configuration and current state of an event sink */
51struct sink {
52 struct list sink_list; // position in the sink list
53 const char *name; // sink name
54 const char *desc; // sink description
55 enum sink_fmt fmt; // format expected by the sink
56 enum sink_type type; // type of storage
57 uint8_t syslog_facility; // used by syslog format
58 uint8_t syslog_minlvl; // used by syslog & short formats
59 uint32_t maxlen; // max message length (truncated above)
60 struct {
61 unsigned int dropped; // dropped events since last one.
62 __decl_hathreads(HA_RWLOCK_T lock); // used by some types
Willy Tarreau973e6622019-08-20 11:57:52 +020063 int fd; // fd num for FD type sink
Willy Tarreau67b5a162019-08-11 16:38:56 +020064 } ctx;
65};
66
67#endif /* _TYPES_SINK_H */
68
69/*
70 * Local variables:
71 * c-indent-level: 8
72 * c-basic-offset: 8
73 * End:
74 */