8e4df4ca51
The PR we needed https://github.com/shirou/gopsutil/pull/889 has been merged upstream, which means we can use upstream rather than our fork of psutil.
10 lines
103 B
Go
10 lines
103 B
Go
package cpu
|
|
|
|
type cpuTimes struct {
|
|
User uint64
|
|
Nice uint64
|
|
Sys uint64
|
|
Intr uint64
|
|
Idle uint64
|
|
}
|