github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/ios/api.go (about) 1 // Package ios is a collection of interfaces to the local storage subsystem; 2 // the package includes OS-dependent implementations for those interfaces. 3 /* 4 * Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved. 5 */ 6 package ios 7 8 type ( 9 DiskStats struct{ RBps, Ravg, WBps, Wavg, Util int64 } 10 AllDiskStats map[string]DiskStats 11 )