mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 13:07:17 +00: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
|
||
|
}
|