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
|
#ifndef FR_STATS_H
#define FR_STATS_H
/*
* stats.h Structures and functions for statistics.
*
* Version: $Id$
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
* Copyright 2005,2006,2007,2008 The FreeRADIUS server project
*/
RCSIDH(stats_h, "$Id$")
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WITH_STATS
typedef struct fr_stats_t {
uint64_t total_requests;
uint64_t total_invalid_requests;
uint64_t total_dup_requests;
uint64_t total_responses;
uint64_t total_access_accepts;
uint64_t total_access_rejects;
uint64_t total_access_challenges;
uint64_t total_malformed_requests;
uint64_t total_bad_authenticators;
uint64_t total_packets_dropped;
uint64_t total_no_records;
uint64_t total_unknown_types;
uint64_t total_timeouts;
uint64_t total_conflicts;
uint64_t unresponsive_child;
time_t last_packet;
uint64_t elapsed[8];
} fr_stats_t;
typedef struct fr_stats_ema_t {
uint32_t window;
uint32_t f1, f10;
uint32_t ema1, ema10;
} fr_stats_ema_t;
extern fr_stats_t radius_auth_stats;
#ifdef WITH_ACCOUNTING
extern fr_stats_t radius_acct_stats;
#endif
#ifdef WITH_COA
extern fr_stats_t radius_coa_stats;
extern fr_stats_t radius_dsc_stats;
#endif
#ifdef WITH_PROXY
extern fr_stats_t proxy_auth_stats;
#ifdef WITH_ACCOUNTING
extern fr_stats_t proxy_acct_stats;
#endif
#ifdef WITH_COA
extern fr_stats_t proxy_coa_stats;
extern fr_stats_t proxy_dsc_stats;
#endif
#endif
void radius_stats_init(int flag);
void request_stats_final(REQUEST *request);
void request_stats_reply(REQUEST *request);
void radius_stats_ema(fr_stats_ema_t *ema,
struct timeval *start, struct timeval *end);
#define FR_STATS_INC(_x, _y) radius_ ## _x ## _stats._y++;if (listener) listener->stats._y++;if (client) client->_x._y++;
#define FR_STATS_TYPE_INC(_x) _x++
#else /* WITH_STATS */
#define request_stats_init(_x)
#define request_stats_final(_x)
#define FR_STATS_INC(_x, _y)
#define FR_STATS_TYPE_INC(_x)
#endif
#ifdef __cplusplus
}
#endif
#endif /* FR_STATS_H */
|