1 #ifndef STATS_SETTINGS_H
2 #define STATS_SETTINGS_H
3 
4 struct old_stats_settings {
5 	uoff_t memory_limit;
6 
7 	unsigned int command_min_time;
8 	unsigned int session_min_time;
9 	unsigned int user_min_time;
10 	unsigned int domain_min_time;
11 	unsigned int ip_min_time;
12 
13 	unsigned int carbon_interval;
14 	const char *carbon_server;
15 	const char *carbon_name;
16 };
17 
18 extern const struct setting_parser_info old_stats_setting_parser_info;
19 extern const struct old_stats_settings *stats_settings;
20 
21 #endif
22 
23