We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd03144 commit 0647711Copy full SHA for 0647711
4 files changed
libsql-server/src/http/admin/stats.rs
@@ -140,10 +140,12 @@ pub(super) async fn handle_stats<C>(
140
State(app_state): State<Arc<AppState<C>>>,
141
Path(namespace): Path<String>,
142
) -> crate::Result<Json<StatsResponse>> {
143
+ dbg!();
144
let stats = app_state
145
.namespaces
146
.stats(NamespaceName::from_string(namespace)?)
147
.await?;
148
149
let resp: StatsResponse = stats.as_ref().into();
150
151
Ok(Json(resp))
0 commit comments