Remove all stats tracking (fixes #7)

This commit is contained in:
Matthew Esposito 2023-12-30 10:22:49 -05:00
parent d86b77ab56
commit 53e8811f32
No known key found for this signature in database
6 changed files with 2 additions and 68 deletions

View file

@ -1,5 +1,3 @@
use std::sync::atomic::{AtomicU32, Ordering::SeqCst};
use crate::{
config::{Config, CONFIG},
server::RequestExt,
@ -91,8 +89,6 @@ pub struct InstanceInfo {
deploy_date: String,
compile_mode: String,
deploy_unix_ts: i64,
pub(crate) reddit_requests: AtomicU32,
pub(crate) total_requests: AtomicU32,
config: Config,
}
@ -109,8 +105,6 @@ impl InstanceInfo {
compile_mode: "Release".into(),
deploy_unix_ts: OffsetDateTime::now_local().unwrap_or_else(|_| OffsetDateTime::now_utc()).unix_timestamp(),
config: CONFIG.clone(),
reddit_requests: AtomicU32::new(0),
total_requests: AtomicU32::new(0),
}
}
fn to_table(&self) -> String {
@ -131,9 +125,6 @@ impl InstanceInfo {
["Deploy timestamp", &self.deploy_unix_ts.to_string()],
["Compile mode", &self.compile_mode],
["SFW only", &convert(&self.config.sfw_only)],
["Disable stats collection", &convert(&self.config.disable_stats_collection)],
["Reddit request count", &self.reddit_requests.load(SeqCst).to_string()],
["Total request count", &self.total_requests.load(SeqCst).to_string()],
["Pushshift frontend", &convert(&self.config.pushshift)],
//TODO: fallback to crate::config::DEFAULT_PUSHSHIFT_FRONTEND
])
@ -171,9 +162,6 @@ impl InstanceInfo {
Deploy timestamp: {}\n
Compile mode: {}\n
SFW only: {:?}\n
Disable stats collection: {:?}\n
Reddit request count: {}\n
Total request count: {}\n
Pushshift frontend: {:?}\n
Config:\n
Banner: {:?}\n
@ -197,9 +185,6 @@ impl InstanceInfo {
self.deploy_unix_ts,
self.compile_mode,
self.config.sfw_only,
self.config.disable_stats_collection,
self.reddit_requests.load(SeqCst),
self.total_requests.load(SeqCst),
self.config.pushshift,
self.config.banner,
self.config.default_hide_awards,