tile38/internal/server/stats_cpu.go
tidwall 555e47036c Replaced net package with evio
- Added threads startup flag
- Replaced net package with evio
- Refactored controller into server
2018-10-28 15:51:47 -07:00

19 lines
289 B
Go

// +build !linux,!darwin
package server
import (
"bytes"
"fmt"
)
func (c *Controller) writeInfoCPU(w *bytes.Buffer) {
fmt.Fprintf(w,
"used_cpu_sys:%.2f\r\n"+
"used_cpu_user:%.2f\r\n"+
"used_cpu_sys_children:%.2f\r\n"+
"used_cpu_user_children:%.2f\r\n",
0, 0, 0, 0,
)
}