perf: bound runtime memory and storage usage

This commit is contained in:
whyour
2026-08-16 16:29:06 +08:00
parent 31f78e4d1f
commit 276dfc2382
30 changed files with 1350 additions and 68 deletions
+2
View File
@@ -13,6 +13,7 @@ import update from './update';
import dashboard from './dashboard';
import health from './health';
import clientIp from './clientIp';
import retention from './retention';
export default () => {
const app = Router();
@@ -30,6 +31,7 @@ export default () => {
dashboard(app);
health(app);
clientIp(app);
retention(app);
return app;
};