github.com/newrelic/go-agent@v3.26.0+incompatible/internal/sysinfo/usage.go (about)

     1  // Copyright 2020 New Relic Corporation. All rights reserved.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package sysinfo
     5  
     6  import (
     7  	"time"
     8  )
     9  
    10  // Usage contains process process times.
    11  type Usage struct {
    12  	System time.Duration
    13  	User   time.Duration
    14  }