You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 8, 2021. It is now read-only.
Kubelet has already added image metrics API in CRI (see here), we should decide how to support it.
// StorageIdentifier uniquely identify the storage..messageStorageIdentifier{
// UUID of the device.stringuuid=1;
}
// FilesystemUsage provides the filesystem usage information.messageFilesystemUsage {
// Timestamp in nanoseconds at which the information were collected. Must be > 0.int64timestamp=1;
// The underlying storage of the filesystem.StorageIdentifierstorage_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// equal CapacityBytes - AvailableBytes.UInt64Valueused_bytes=3;
// InodesUsed represents the inodes used by the images.// This may not equal InodesCapacity - InodesAvailable because the underlying// filesystem may also be used for purposes other than storing images.UInt64Valueinodes_used=4;
}
messageImageFsInfoResponse {
// Information of image filesystem(s).repeatedFilesystemUsageimage_filesystems=1;
}