Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for interfaceStats (0.31 sec)

  1. pkg/kubelet/winstats/perfcounter_nodestats.go

    		cpuUsageNanoCores:         p.getCPUUsageNanoCores(),
    		memoryPrivWorkingSetBytes: memWorkingSetValue,
    		memoryCommittedBytes:      memCommittedBytesValue,
    		interfaceStats:            networkAdapterStats,
    		timeStamp:                 time.Now(),
    	}
    }
    
    func (p *perfCounterNodeStatsClient) convertCPUValue(cpuCores int, cpuValue uint64) uint64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider.go

    		if len(components) > 1 {
    			id = components[len(components)-1]
    		}
    	}
    	return id
    }
    
    func criInterfaceToSummary(criIface *runtimeapi.NetworkInterfaceUsage) statsapi.InterfaceStats {
    	return statsapi.InterfaceStats{
    		Name:     criIface.Name,
    		RxBytes:  valueOfUInt64Value(criIface.RxBytes),
    		RxErrors: valueOfUInt64Value(criIface.RxErrors),
    		TxBytes:  valueOfUInt64Value(criIface.TxBytes),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top