disk.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package disk
  2. import (
  3. "encoding/json"
  4. "github.com/shirou/gopsutil/internal/common"
  5. )
  6. var invoke common.Invoker = common.Invoke{}
  7. type UsageStat struct {
  8. Path string `json:"path"`
  9. Fstype string `json:"fstype"`
  10. Total uint64 `json:"total"`
  11. Free uint64 `json:"free"`
  12. Used uint64 `json:"used"`
  13. UsedPercent float64 `json:"usedPercent"`
  14. InodesTotal uint64 `json:"inodesTotal"`
  15. InodesUsed uint64 `json:"inodesUsed"`
  16. InodesFree uint64 `json:"inodesFree"`
  17. InodesUsedPercent float64 `json:"inodesUsedPercent"`
  18. }
  19. type PartitionStat struct {
  20. Device string `json:"device"`
  21. Mountpoint string `json:"mountpoint"`
  22. Fstype string `json:"fstype"`
  23. Opts string `json:"opts"`
  24. }
  25. type IOCountersStat struct {
  26. ReadCount uint64 `json:"readCount"`
  27. MergedReadCount uint64 `json:"mergedReadCount"`
  28. WriteCount uint64 `json:"writeCount"`
  29. MergedWriteCount uint64 `json:"mergedWriteCount"`
  30. ReadBytes uint64 `json:"readBytes"`
  31. WriteBytes uint64 `json:"writeBytes"`
  32. ReadTime uint64 `json:"readTime"`
  33. WriteTime uint64 `json:"writeTime"`
  34. IopsInProgress uint64 `json:"iopsInProgress"`
  35. IoTime uint64 `json:"ioTime"`
  36. WeightedIO uint64 `json:"weightedIO"`
  37. Name string `json:"name"`
  38. SerialNumber string `json:"serialNumber"`
  39. Label string `json:"label"`
  40. }
  41. func (d UsageStat) String() string {
  42. s, _ := json.Marshal(d)
  43. return string(s)
  44. }
  45. func (d PartitionStat) String() string {
  46. s, _ := json.Marshal(d)
  47. return string(s)
  48. }
  49. func (d IOCountersStat) String() string {
  50. s, _ := json.Marshal(d)
  51. return string(s)
  52. }