github.com/TykTechnologies/newrelic-go-agent@v0.0.0-20230823062834-3c80ff5627f6/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 }