BcacheStats contains statistics tied to a bcache ID.
| 30 | |
| 31 | // BcacheStats contains statistics tied to a bcache ID. |
| 32 | type BcacheStats struct { // nolint:revive |
| 33 | AverageKeySize uint64 |
| 34 | BtreeCacheSize uint64 |
| 35 | CacheAvailablePercent uint64 |
| 36 | Congested uint64 |
| 37 | RootUsagePercent uint64 |
| 38 | TreeDepth uint64 |
| 39 | Internal InternalStats |
| 40 | FiveMin PeriodStats |
| 41 | Total PeriodStats |
| 42 | } |
| 43 | |
| 44 | // BdevStats contains statistics for one backing device. |
| 45 | type BdevStats struct { |
nothing calls this directly
no outgoing calls
no test coverage detected