]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-stat.ts
import 14.2.4 nautilus point release
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / pool / pool-stat.ts
CommitLineData
11fdf7f2
TL
1export class PoolStat {
2 latest: number;
3 rate: number;
494da23a 4 rates: number[];
11fdf7f2 5}
81eedcae
TL
6
7export class PoolStats {
8 bytes_used?: PoolStat;
9 max_avail?: PoolStat;
10 rd_bytes?: PoolStat;
11 wr_bytes?: PoolStat;
12 rd?: PoolStat;
13 wr?: PoolStat;
14}