github.com/lulzWill/go-agent@v2.1.2+incompatible/internal/sysinfo/usage.go (about)

     1  package sysinfo
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  // Usage contains process process times.
     8  type Usage struct {
     9  	System time.Duration
    10  	User   time.Duration
    11  }