What is the difference between “container_memory_working_set_bytes” and “container_memory_rss” metric on the container
You are right. I will try to address your questions in more detail. What is the difference between two metrics? container_memory_rss equals to the value of total_rss from /sys/fs/cgroups/memory/memory.status file: // The amount of anonymous and swap cache memory (includes transparent // hugepages). // Units: Bytes. RSS uint64 `json:”rss”` The total amount of anonymous and … Read more