summaryrefslogtreecommitdiff
path: root/contributors
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2022-09-27 17:57:35 -0700
committerGitHub <noreply@github.com>2022-09-27 17:57:35 -0700
commit43e5efab6c09b0da980af34e7302c13cf19a0317 (patch)
treefb80780102e1d5071d4498149a1d2b9530ebb308 /contributors
parent5cc4ecc064c1c4908d16109ae389afa2b483e287 (diff)
parent456ca8eddde6b42b1dda1aeca49d03310702ec40 (diff)
Merge pull request #6871 from mzacho/fix-broken-link
cri-container-stats: fix broken link to legacy summary API
Diffstat (limited to 'contributors')
-rw-r--r--contributors/devel/sig-node/cri-container-stats.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/devel/sig-node/cri-container-stats.md b/contributors/devel/sig-node/cri-container-stats.md
index a1bcb537..fa12baa6 100644
--- a/contributors/devel/sig-node/cri-container-stats.md
+++ b/contributors/devel/sig-node/cri-container-stats.md
@@ -12,7 +12,7 @@ Historically Kubelet relied on the [cAdvisor](https://github.com/google/cadvisor
library, an open-source project hosted in a separate repository, to retrieve
container metrics such as CPU and memory usage. These metrics are then aggregated
and exposed through Kubelet's [Summary
-API](https://git.k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1/types.go)
+API](https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/kubelet/pkg/apis/stats/v1alpha1/types.go)
for the monitoring pipeline (and other components) to consume. Any container
runtime (e.g., Docker and Rkt) integrated with Kubernetes needed to add a
corresponding package in cAdvisor to support tracking container and image file
@@ -86,7 +86,7 @@ message FilesystemUsage {
// The underlying storage of the filesystem.
StorageIdentifier storage_id = 2;
// UsedBytes represents the bytes used for images on the filesystem.
- // This may differ from the total bytes used on the filesystem and may not
+ // This may differ from the total bytes used on the filesystem and may not
// equal CapacityBytes - AvailableBytes.
UInt64Value used_bytes = 3;
// InodesUsed represents the inodes used by the images.