Update cadvisor and hcsshim versions

Signed-off-by: Kirtana Ashok <kiashok@microsoft.com>
This commit is contained in:
Kirtana Ashok
2024-09-05 08:35:53 -07:00
parent 221bf19ee0
commit 3fba9930b7
447 changed files with 27354 additions and 36611 deletions

View File

@@ -333,6 +333,8 @@ type CpuStats struct {
// Load is smoothed over the last 10 seconds. Instantaneous value can be read
// from LoadStats.NrRunning.
LoadAverage int32 `json:"load_average"`
// from LoadStats.NrUninterruptible
LoadDAverage int32 `json:"load_d_average"`
}
type PerDiskStats struct {
@@ -393,6 +395,14 @@ type MemoryStats struct {
// Units: Bytes.
WorkingSet uint64 `json:"working_set"`
// The total amount of active file memory.
// Units: Bytes.
TotalActiveFile uint64 `json:"total_active_file"`
// The total amount of inactive file memory.
// Units: Bytes.
TotalInactiveFile uint64 `json:"total_inactive_file"`
Failcnt uint64 `json:"failcnt"`
// Size of kernel memory allocated in bytes.
@@ -629,7 +639,7 @@ type TcpAdvancedStat struct {
// The number of retransmits failed, including FastRetrans, SlowStartRetrans
TCPRetransFail uint64
// he number of packets collapsed in receive queue due to low socket buffer
// The number of packets collapsed in receive queue due to low socket buffer
TCPRcvCollapsed uint64
// The number of DSACKs sent for old packets
TCPDSACKOldSent uint64