mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-13 00:18:50 +00:00
Fix calculation for docker container memory usage (#2167)
This commit is contained in:
parent
4a04347518
commit
7ea1d0dd47
1 changed files with 2 additions and 1 deletions
|
@ -11,5 +11,6 @@ export function calculateCPUPercent(stats) {
|
|||
}
|
||||
|
||||
export function calculateUsedMemory(stats) {
|
||||
return stats.memory_stats.usage - (stats.memory_stats.stats.cache ?? 0)
|
||||
// see https://github.com/docker/cli/blob/dcc161076861177b5eef6cb321722520db3184e7/cli/command/container/stats_helpers.go#L239
|
||||
return stats.memory_stats.usage - (stats.memory_stats.total_inactive_file ?? stats.memory_stats.stats.inactive_file ?? 0)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue