mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-08-11 17:50:59 +00:00
Add show_cache_usage admin room command
Signed-off-by: Jonas Zohren <git-pbkyr@jzohren.de>
This commit is contained in:
parent
5aa56b92ee
commit
e534199195
3 changed files with 196 additions and 82 deletions
|
@ -3,19 +3,21 @@ use std::{
|
|||
sync::Arc,
|
||||
};
|
||||
|
||||
use crate::{pdu::PduBuilder, Database};
|
||||
use rocket::futures::{channel::mpsc, stream::StreamExt};
|
||||
use ruma::{
|
||||
events::{room::message, EventType},
|
||||
events::{EventType, room::message},
|
||||
UserId,
|
||||
};
|
||||
use tokio::sync::{MutexGuard, RwLock, RwLockReadGuard};
|
||||
use tokio::sync::{MutexGuard, RwLock, RwLockWriteGuard};
|
||||
use tracing::warn;
|
||||
|
||||
use crate::{Database, pdu::PduBuilder};
|
||||
|
||||
pub enum AdminCommand {
|
||||
RegisterAppservice(serde_yaml::Value),
|
||||
ListAppservices,
|
||||
SendMessage(message::MessageEventContent),
|
||||
ShowCacheUsage,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
|
@ -59,7 +61,7 @@ impl Admin {
|
|||
drop(guard);
|
||||
|
||||
let send_message = |message: message::MessageEventContent,
|
||||
guard: RwLockReadGuard<'_, Database>,
|
||||
guard: RwLockWriteGuard<'_, Database>,
|
||||
mutex_lock: &MutexGuard<'_, ()>| {
|
||||
guard
|
||||
.rooms
|
||||
|
@ -83,7 +85,7 @@ impl Admin {
|
|||
loop {
|
||||
tokio::select! {
|
||||
Some(event) = receiver.next() => {
|
||||
let guard = db.read().await;
|
||||
let mut guard = db.write().await;
|
||||
let mutex_state = Arc::clone(
|
||||
guard.globals
|
||||
.roomid_mutex_state
|
||||
|
@ -92,6 +94,7 @@ impl Admin {
|
|||
.entry(conduit_room.clone())
|
||||
.or_default(),
|
||||
);
|
||||
|
||||
let state_lock = mutex_state.lock().await;
|
||||
|
||||
match event {
|
||||
|
@ -114,6 +117,37 @@ impl Admin {
|
|||
AdminCommand::SendMessage(message) => {
|
||||
send_message(message, guard, &state_lock);
|
||||
}
|
||||
AdminCommand::ShowCacheUsage => {
|
||||
|
||||
fn format_cache_statistics_triple(name: String, triple: (usize, usize, usize)) -> String {
|
||||
let (memory_usage, item_count, capacity) = triple;
|
||||
format!(
|
||||
"{0} is using {1} MB ({2} bytes) of RAM at {3:.2}% utilization.",
|
||||
name,
|
||||
memory_usage / 100_00,
|
||||
memory_usage ,
|
||||
((item_count as f32 / capacity as f32) * 100.0)
|
||||
)
|
||||
}
|
||||
|
||||
if let Ok(cache_usage_statistics) = guard.get_cache_usage() {
|
||||
|
||||
let mut statistics_lines = Vec::with_capacity(7);
|
||||
statistics_lines.push(format_cache_statistics_triple("pdu_cache".to_string(), cache_usage_statistics.pdu_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("auth_chain_cache".to_string(), cache_usage_statistics.auth_chain_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("shorteventid_cache".to_string(), cache_usage_statistics.shorteventid_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("eventidshort_cache".to_string(), cache_usage_statistics.eventidshort_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("statekeyshort_cache".to_string(), cache_usage_statistics.statekeyshort_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("shortstatekey_cache".to_string(), cache_usage_statistics.shortstatekey_cache));
|
||||
statistics_lines.push(format_cache_statistics_triple("stateinfo_cache".to_string(), cache_usage_statistics.stateinfo_cache));
|
||||
|
||||
send_message(message::MessageEventContent::text_plain(statistics_lines.join("\n")), guard, &state_lock);
|
||||
} else {
|
||||
let result_text = "Could not calculate database cache size";
|
||||
send_message(message::MessageEventContent::text_plain(result_text), guard, &state_lock);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
drop(state_lock);
|
||||
|
|
|
@ -1,38 +1,40 @@
|
|||
mod edus;
|
||||
|
||||
pub use edus::RoomEdus;
|
||||
use member::MembershipState;
|
||||
|
||||
use crate::{pdu::PduBuilder, utils, Database, Error, PduEvent, Result};
|
||||
use lru_cache::LruCache;
|
||||
use regex::Regex;
|
||||
use ring::digest;
|
||||
use rocket::http::RawStr;
|
||||
use ruma::{
|
||||
api::{client::error::ErrorKind, federation},
|
||||
events::{
|
||||
ignored_user_list, push_rules,
|
||||
room::{
|
||||
create::CreateEventContent, member, message, power_levels::PowerLevelsEventContent,
|
||||
},
|
||||
AnyStrippedStateEvent, AnySyncStateEvent, EventType,
|
||||
},
|
||||
push::{self, Action, Tweak},
|
||||
serde::{CanonicalJsonObject, CanonicalJsonValue, Raw},
|
||||
state_res::{self, RoomVersion, StateMap},
|
||||
uint, EventId, RoomAliasId, RoomId, RoomVersionId, ServerName, UserId,
|
||||
};
|
||||
use std::{
|
||||
collections::{BTreeMap, HashMap, HashSet},
|
||||
convert::{TryFrom, TryInto},
|
||||
mem::size_of,
|
||||
sync::{Arc, Mutex},
|
||||
};
|
||||
|
||||
use lru_cache::LruCache;
|
||||
use member::MembershipState;
|
||||
use regex::Regex;
|
||||
use ring::digest;
|
||||
use rocket::http::RawStr;
|
||||
use ruma::{
|
||||
api::{client::error::ErrorKind, federation},
|
||||
EventId,
|
||||
events::{
|
||||
AnyStrippedStateEvent, AnySyncStateEvent,
|
||||
EventType,
|
||||
ignored_user_list, push_rules, room::{
|
||||
create::CreateEventContent, member, message, power_levels::PowerLevelsEventContent,
|
||||
},
|
||||
},
|
||||
push::{self, Action, Tweak},
|
||||
RoomAliasId,
|
||||
RoomId, RoomVersionId, serde::{CanonicalJsonObject, CanonicalJsonValue, Raw}, ServerName, state_res::{self, RoomVersion, StateMap}, uint, UserId,
|
||||
};
|
||||
use tokio::sync::MutexGuard;
|
||||
use tracing::{error, warn};
|
||||
|
||||
pub use edus::RoomEdus;
|
||||
|
||||
use crate::{Database, Error, pdu::PduBuilder, PduEvent, Result, utils};
|
||||
|
||||
use super::{abstraction::Tree, admin::AdminCommand, pusher};
|
||||
|
||||
mod edus;
|
||||
|
||||
/// The unique identifier of each state group.
|
||||
///
|
||||
/// This is created when a state group is added to the database by
|
||||
|
@ -1563,10 +1565,13 @@ impl Rooms {
|
|||
));
|
||||
}
|
||||
}
|
||||
"show_cache_usage" => {
|
||||
db.admin.send(AdminCommand::ShowCacheUsage);
|
||||
}
|
||||
_ => {
|
||||
db.admin.send(AdminCommand::SendMessage(
|
||||
message::MessageEventContent::text_plain(format!(
|
||||
"Unrecognized command: {}",
|
||||
"Unrecognized command: {}\nAvailable commands:\n- register_appservice\n- list_appservices\n- get_pdu\n- show_cache_usage",
|
||||
command
|
||||
)),
|
||||
));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue