Kubernetes CRI CLI: crictl-shaped client, simulator server, proxy
0

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-cri / lib / filesystem.mli
670 B 25 lines
1(** [runtime.v1] filesystem usage, shared by ImageFsInfo and container stats. *) 2 3type identifier = { mountpoint : string } 4 5val identifier : identifier Protobuf.t 6(** Codec for {!type-identifier}. *) 7 8type usage = { 9 timestamp : int64; 10 fs_id : identifier option; 11 used_bytes : Wrapper.uint64_value option; 12 inodes_used : Wrapper.uint64_value option; 13} 14 15val usage : usage Protobuf.t 16(** Codec for {!type-usage}. *) 17 18type windows_filesystem_usage = { 19 timestamp : int64; 20 fs_id : identifier option; 21 used_bytes : Wrapper.uint64_value option; 22} 23 24val windows_filesystem_usage : windows_filesystem_usage Protobuf.t 25(** Codec for {!type-windows_filesystem_usage}. *)