Update server configuration and enhance network monitoring. Changed SERVER_NAME in .env file. Added network download and upload speed tracking to system stats in index.ts, and updated SessionServer model to store these metrics.

This commit is contained in:
2026-02-17 19:12:30 +05:00
parent d977290646
commit eef57a9b21
3 changed files with 40 additions and 1 deletions
+6
View File
@@ -36,6 +36,12 @@ const sessionServerSchema = new Schema(
localIP: {
type: String,
},
networkDownloadSpeed: {
type: Number,
},
networkUploadSpeed: {
type: Number,
},
},
{
timestamps: true,