aboutsummaryrefslogtreecommitdiffstats
path: root/metrics/disk.go
blob: 1b6c56773f0000b4628a7f4df282eec222ff774f (plain) (blame)
1
2
3
4
5
6
7
8
9
package metrics

// DiskStats is the per process disk io stats.
type DiskStats struct {
    ReadCount  int64 // Number of read operations executed
    ReadBytes  int64 // Total number of bytes read
    WriteCount int64 // Number of write operations executed
    WriteBytes int64 // Total number of byte written
}