mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 22:16:45 +01:00
10 lines
301 B
Go
10 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
|
|
}
|