Updating hcsshim version to introduce updated version check for dsr mode in winkernel kube-proxy
This commit is contained in:
15
vendor/github.com/containerd/cgroups/stats/v1/metrics.proto
generated
vendored
15
vendor/github.com/containerd/cgroups/stats/v1/metrics.proto
generated
vendored
@@ -12,6 +12,7 @@ message Metrics {
|
||||
BlkIOStat blkio = 5;
|
||||
RdmaStat rdma = 6;
|
||||
repeated NetworkStat network = 7;
|
||||
CgroupStats cgroup_stats = 8;
|
||||
}
|
||||
|
||||
message HugetlbStat {
|
||||
@@ -134,3 +135,17 @@ message NetworkStat {
|
||||
uint64 tx_errors = 8;
|
||||
uint64 tx_dropped = 9;
|
||||
}
|
||||
|
||||
// CgroupStats exports per-cgroup statistics.
|
||||
message CgroupStats {
|
||||
// number of tasks sleeping
|
||||
uint64 nr_sleeping = 1;
|
||||
// number of tasks running
|
||||
uint64 nr_running = 2;
|
||||
// number of tasks in stopped state
|
||||
uint64 nr_stopped = 3;
|
||||
// number of tasks in uninterruptible state
|
||||
uint64 nr_uninterruptible = 4;
|
||||
// number of tasks waiting on IO
|
||||
uint64 nr_io_wait = 5;
|
||||
}
|
||||
|
Reference in New Issue
Block a user