Add start && hup time
[freeradius.git] / src / include / stats.h
1 #ifndef FR_STATS_H
2 #define FR_STATS_H
3
4 /*
5  * stats.h      Structures and functions for statistics.
6  *
7  * Version:     $Id$
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * Copyright 2005,2006,2007,2008  The FreeRADIUS server project
24  */
25
26 #include <freeradius-devel/ident.h>
27 RCSIDH(stats_h, "$Id$")
28
29 #ifdef WITH_STATS_64BIT
30 typedef uint64_t fr_uint_t;
31 #else
32 typedef uint32_t fr_uint_t;
33 #endif
34
35 #ifdef WITH_STATS
36 typedef struct fr_stats_t {
37         fr_uint_t               total_requests;
38         fr_uint_t               total_invalid_requests;
39         fr_uint_t               total_dup_requests;
40         fr_uint_t               total_responses;
41         fr_uint_t               total_access_accepts;
42         fr_uint_t               total_access_rejects;
43         fr_uint_t               total_access_challenges;
44         fr_uint_t               total_malformed_requests;
45         fr_uint_t               total_bad_authenticators;
46         fr_uint_t               total_packets_dropped;
47         fr_uint_t               total_no_records;
48         fr_uint_t               total_unknown_types;
49 } fr_stats_t;
50
51 extern fr_stats_t       radius_auth_stats;
52 extern fr_stats_t       radius_acct_stats;
53
54 void radius_stats_init(int flag);
55 void request_stats_final(REQUEST *request);
56 void request_stats_reply(REQUEST *request);
57
58 #define RAD_STATS_INC(_x) _x++
59 #ifdef WITH_ACCOUNTING
60 #define RAD_STATS_TYPE_INC(_listener, _x) if (_listener->type == RAD_LISTEN_AUTH) { \
61                                        radius_auth_stats._x++; \
62                                      } else if (_listener->type == RAD_LISTEN_ACCT) { \
63                                        radius_acct_stats._x++; } \
64                                        _listener->stats._x++
65
66 #define RAD_STATS_CLIENT_INC(_listener, _client, _x) if (_listener->type == RAD_LISTEN_AUTH) \
67                                        _client->auth->_x++; \
68                                      else if (_listener->type == RAD_LISTEN_ACCT) \
69                                        _client->acct->_x++
70
71 #else  /* WITH_ACCOUNTING */
72
73 #define RAD_STATS_TYPE_INC(_listener, _x) { radius_auth_stats._x++; _listener->stats._x++; }
74
75 #define RAD_STATS_CLIENT_INC(_listener, _client, _x) _client->auth->_x++
76
77 #endif /* WITH_ACCOUNTING */
78
79
80 #else  /* WITH_STATS */
81 #define request_stats_init(_x)
82 #define request_stats_final(_x)
83
84 #define  RAD_STATS_INC(_x)
85 #define RAD_STATS_TYPE_INC(_listener, _x)
86 #define RAD_STATS_CLIENT_INC(_listener, _client, _x)
87
88 #endif
89
90 #endif /* FR_STATS_H */