mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-06-26 00:06:07 -04:00
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
|