forked from Mirrors/privacore-open-source-search-engine
16 lines
298 B
C++
16 lines
298 B
C++
#ifndef GB_STATISTICS_H
|
|
#define GB_STATISTICS_H
|
|
|
|
namespace Statistics {
|
|
|
|
bool initialize();
|
|
void finalize();
|
|
|
|
void register_query_time(unsigned term_count, unsigned qlang, unsigned ms);
|
|
|
|
void register_spider_time( bool is_new, int error_code, int http_status, unsigned ms );
|
|
|
|
} //namespace
|
|
|
|
#endif
|