]> jfr.im git - irc/rqf/shadowircd.git/blame - include/s_stats.h
Add mr_flea (and Taros) to the list of Charybdis contributors.
[irc/rqf/shadowircd.git] / include / s_stats.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_stats.h: A header for the statistics functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
212380e3 24 */
25
26#ifndef INCLUDED_s_stats_h
27#define INCLUDED_s_stats_h
28
212380e3 29#define _1MEG (1024.0)
30#define _1GIG (1024.0*1024.0)
31#define _1TER (1024.0*1024.0*1024.0)
32#define _GMKs(x) ( (x > _1TER) ? "Terabytes" : ((x > _1GIG) ? "Gigabytes" : \
33 ((x > _1MEG) ? "Megabytes" : "Kilobytes")))
34#define _GMKv(x) ( (x > _1TER) ? (float)(x/_1TER) : ((x > _1GIG) ? \
35 (float)(x/_1GIG) : ((x > _1MEG) ? (float)(x/_1MEG) : (float)x)))
36
37struct Client;
38
39/*
40 * statistics structures
41 */
42struct ServerStatistics
43{
44 unsigned int is_cl; /* number of client connections */
45 unsigned int is_sv; /* number of server connections */
46 unsigned int is_ni; /* connection but no idea who it was */
b717a466
JT
47 unsigned long long int is_cbs; /* bytes sent to clients */
48 unsigned long long int is_cbr; /* bytes received to clients */
49 unsigned long long int is_sbs; /* bytes sent to servers */
6b7c7401 50 unsigned long long int is_sbr; /* bytes received to servers */
17d00839
AS
51 unsigned long long int is_cti; /* time spent connected by clients */
52 unsigned long long int is_sti; /* time spent connected by servers */
212380e3 53 unsigned int is_ac; /* connections accepted */
54 unsigned int is_ref; /* accepts refused */
55 unsigned int is_unco; /* unknown commands */
56 unsigned int is_wrdi; /* command going in wrong direction */
57 unsigned int is_unpf; /* unknown prefix */
58 unsigned int is_empt; /* empty message */
59 unsigned int is_num; /* numeric message */
60 unsigned int is_kill; /* number of kills generated on collisions */
61 unsigned int is_save; /* number of saves generated on collisions */
62 unsigned int is_asuc; /* successful auth requests */
63 unsigned int is_abad; /* bad auth requests */
64 unsigned int is_rej; /* rejected from cache */
76d49681 65 unsigned int is_thr; /* number of throttled connections */
212380e3 66 unsigned int is_ssuc; /* successful sasl authentications */
67 unsigned int is_sbad; /* failed sasl authentications */
26f754d9 68 unsigned int is_tgch; /* messages blocked due to target change */
212380e3 69};
70
83251205 71extern struct ServerStatistics ServerStats;
212380e3 72
73#endif /* INCLUDED_s_stats_h */