/usr/include/syslog-ng/stats.h is in syslog-ng-dev 3.5.6-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | /*
* Copyright (c) 2002-2013 BalaBit IT Ltd, Budapest, Hungary
* Copyright (c) 1998-2012 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#ifndef STATS_H_INCLUDED
#define STATS_H_INCLUDED
#include "syslog-ng.h"
#include "cfg.h"
#include "mainloop.h"
typedef enum
{
SC_TYPE_MIN,
SC_TYPE_DROPPED=0, /* number of messages dropped */
SC_TYPE_PROCESSED, /* number of messages processed */
SC_TYPE_STORED, /* number of messages on disk */
SC_TYPE_SUPPRESSED,/* number of messages suppressed */
SC_TYPE_STAMP, /* timestamp */
SC_TYPE_MAX
} StatsCounterType;
enum
{
STATS_LEVEL0 = 0,
STATS_LEVEL1,
STATS_LEVEL2,
STATS_LEVEL3
};
enum
{
SCS_SOURCE = 0x0100,
SCS_DESTINATION = 0x0200,
SCS_FILE = 1,
SCS_PIPE = 2,
SCS_TCP = 3,
SCS_UDP = 4,
SCS_TCP6 = 5,
SCS_UDP6 = 6,
SCS_UNIX_STREAM = 7,
SCS_UNIX_DGRAM = 8,
SCS_SYSLOG = 9,
SCS_NETWORK = 10,
SCS_INTERNAL = 11,
SCS_LOGSTORE = 12,
SCS_PROGRAM = 13,
SCS_SQL = 14,
SCS_SUN_STREAMS = 15,
SCS_USERTTY = 16,
SCS_GROUP = 17,
SCS_CENTER = 18,
SCS_HOST = 19,
SCS_GLOBAL = 20,
SCS_MONGODB = 21,
SCS_CLASS = 22,
SCS_RULE_ID = 23,
SCS_TAG = 24,
SCS_SEVERITY = 25,
SCS_FACILITY = 26,
SCS_SENDER = 27,
SCS_SMTP = 28,
SCS_AMQP = 29,
SCS_STOMP = 30,
SCS_REDIS = 31,
SCS_MAX,
SCS_SOURCE_MASK = 0xff
};
typedef struct _StatsCounter StatsCounter;
typedef struct _StatsCounterItem
{
gint value;
} StatsCounterItem;
extern gint current_stats_level;
extern GStaticMutex stats_mutex;
extern gboolean stats_locked;
void stats_generate_log(void);
gchar *stats_generate_csv(void);
void stats_register_counter(gint level, gint source, const gchar *id, const gchar *instance, StatsCounterType type, StatsCounterItem **counter);
StatsCounter *
stats_register_dynamic_counter(gint stats_level, gint source, const gchar *id, const gchar *instance, StatsCounterType type, StatsCounterItem **counter, gboolean *new);
void stats_instant_inc_dynamic_counter(gint stats_level, gint source_mask, const gchar *id, const gchar *instance, time_t timestamp);
void stats_register_associated_counter(StatsCounter *handle, StatsCounterType type, StatsCounterItem **counter);
void stats_unregister_counter(gint source, const gchar *id, const gchar *instance, StatsCounterType type, StatsCounterItem **counter);
void stats_unregister_dynamic_counter(StatsCounter *handle, StatsCounterType type, StatsCounterItem **counter);
void stats_cleanup_orphans(void);
void stats_counter_inc_pri(guint16 pri);
void stats_reinit(GlobalConfig *cfg);
void stats_init(void);
void stats_destroy(void);
static inline gboolean
stats_check_level(gint level)
{
return (current_stats_level >= level);
}
static inline void
stats_lock(void)
{
g_static_mutex_lock(&stats_mutex);
stats_locked = TRUE;
}
static inline void
stats_unlock(void)
{
stats_locked = FALSE;
g_static_mutex_unlock(&stats_mutex);
}
static inline void
stats_counter_add(StatsCounterItem *counter, gint add)
{
if (counter)
g_atomic_int_add(&counter->value, add);
}
static inline void
stats_counter_inc(StatsCounterItem *counter)
{
if (counter)
g_atomic_int_inc(&counter->value);
}
static inline void
stats_counter_dec(StatsCounterItem *counter)
{
if (counter)
g_atomic_int_add(&counter->value, -1);
}
/* NOTE: this is _not_ atomic and doesn't have to be as sets would race anyway */
static inline void
stats_counter_set(StatsCounterItem *counter, guint32 value)
{
if (counter)
counter->value = value;
}
/* NOTE: this is _not_ atomic and doesn't have to be as sets would race anyway */
static inline guint32
stats_counter_get(StatsCounterItem *counter)
{
guint32 result = 0;
if (counter)
result = counter->value;
return result;
}
#endif
|