fix(backend): サーバーメトリクスのメモリ使用率が不正確になることがある不具合の修正 (#10728)
* FIX: サーバーメトリクスのメモリ使用率が不正確になることがある不具合の修正 * Update CHANGELOG
This commit is contained in:
@@ -40,7 +40,7 @@ export class ServerStatsService implements OnApplicationShutdown {
|
||||
const stats = {
|
||||
cpu: roundCpu(cpu),
|
||||
mem: {
|
||||
used: round(memStats.used - memStats.buffers - memStats.cached),
|
||||
used: round(memStats.total - memStats.available),
|
||||
active: round(memStats.active),
|
||||
},
|
||||
net: {
|
||||
|
Reference in New Issue
Block a user