Files
opentf/vendor/github.com/newrelic/go-agent/internal/sysinfo/usage_posix.go
2016-12-15 19:14:59 +00:00

27 lines
471 B
Go

// +build !windows
package sysinfo
import (
"syscall"
"time"
)
func timevalToDuration(tv syscall.Timeval) time.Duration {
return time.Duration(tv.Nano()) * time.Nanosecond
}
// GetUsage gathers process times.
func GetUsage() (Usage, error) {
ru := syscall.Rusage{}
err := syscall.Getrusage(syscall.RUSAGE_SELF, &ru)
if err != nil {
return Usage{}, err
}
return Usage{
System: timevalToDuration(ru.Stime),
User: timevalToDuration(ru.Utime),
}, nil
}