Track Basic Memory Usage as reported by cgroups

Track current memory usage, `memory.usage_in_bytes`, in addition to
`memory.max_memory_usage_in_bytes` and friends.  This number is closer
what Docker reports.

Related to https://github.com/hashicorp/nomad/issues/5165 .
This commit is contained in:
Mahmood Ali
2019-01-14 18:47:52 -05:00
parent 97a73e0116
commit b5c20aa50b
19 changed files with 336 additions and 306 deletions

View File

@@ -16,6 +16,7 @@ type MemoryStats struct {
RSS uint64
Cache uint64
Swap uint64
Usage uint64
MaxUsage uint64
KernelUsage uint64
KernelMaxUsage uint64