Source File
proc_io.go
Belonging Package
github.com/prometheus/procfs
package procfs
import (
)
func ( Proc) () (ProcIO, error) {
:= ProcIO{}
, := util.ReadFileNoStat(.path("io"))
if != nil {
return ,
}
:= "rchar: %d\nwchar: %d\nsyscr: %d\nsyscw: %d\n" +
"read_bytes: %d\nwrite_bytes: %d\n" +
"cancelled_write_bytes: %d\n"
_, = fmt.Sscanf(string(), , &.RChar, &.WChar, &.SyscR,
&.SyscW, &.ReadBytes, &.WriteBytes, &.CancelledWriteBytes)
return ,
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |