Use cgo to get systems clock ticks for metrics
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
parent
26bd4906d6
commit
ded58db1eb
4 changed files with 33 additions and 2 deletions
9
system/sysconfig_nocgo.go
Normal file
9
system/sysconfig_nocgo.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
// +build linux,!cgo
|
||||
|
||||
package system
|
||||
|
||||
func GetClockTicks() int {
|
||||
// when we cannot call out to C to get the sysconf it is fairly safe to
|
||||
// just return 100
|
||||
return 100
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue