feat: improve logs client (#10229)

This commit is contained in:
jif-oai
2026-01-30 18:23:18 +01:00
committed by GitHub
Unverified
parent 887bec0dee
commit eff11f792b
3 changed files with 148 additions and 61 deletions
+4 -3
View File
@@ -32,9 +32,10 @@ pub struct LogQuery {
pub level_upper: Option<String>,
pub from_ts: Option<i64>,
pub to_ts: Option<i64>,
pub module_like: Option<String>,
pub file_like: Option<String>,
pub thread_id: Option<String>,
pub module_like: Vec<String>,
pub file_like: Vec<String>,
pub thread_ids: Vec<String>,
pub include_threadless: bool,
pub after_id: Option<i64>,
pub limit: Option<usize>,
pub descending: bool,