mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
9 lines
301 B
Go
9 lines
301 B
Go
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
|
|
}
|