]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-stat.ts
bump version to 15.2.4-pve1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / pool / pool-stat.ts
1 export class PoolStat {
2 latest: number;
3 rate: number;
4 rates: number[];
5 }
6
7 export 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 }