2015-12-09 22:18:31 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2016-02-21 07:40:09 +00:00
|
|
|
"bufio"
|
2015-12-09 22:18:31 +00:00
|
|
|
"errors"
|
2016-02-01 19:02:41 +00:00
|
|
|
"fmt"
|
2016-02-21 07:40:09 +00:00
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2015-12-09 22:18:31 +00:00
|
|
|
"syscall"
|
2016-02-12 18:17:59 +00:00
|
|
|
"time"
|
2015-12-09 22:18:31 +00:00
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
|
|
|
|
"github.com/docker/containerd/api/grpc/types"
|
|
|
|
"github.com/docker/containerd/runtime"
|
2015-12-18 00:07:04 +00:00
|
|
|
"github.com/docker/containerd/supervisor"
|
2016-02-11 22:36:32 +00:00
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
|
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
2016-02-21 07:40:09 +00:00
|
|
|
"github.com/opencontainers/runc/libcontainer/system"
|
2015-12-09 22:18:31 +00:00
|
|
|
"github.com/opencontainers/specs"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type apiServer struct {
|
2015-12-18 00:07:04 +00:00
|
|
|
sv *supervisor.Supervisor
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewServer returns grpc server instance
|
2015-12-18 00:07:04 +00:00
|
|
|
func NewServer(sv *supervisor.Supervisor) types.APIServer {
|
2015-12-09 22:18:31 +00:00
|
|
|
return &apiServer{
|
|
|
|
sv: sv,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) CreateContainer(ctx context.Context, c *types.CreateContainerRequest) (*types.CreateContainerResponse, error) {
|
|
|
|
if c.BundlePath == "" {
|
|
|
|
return nil, errors.New("empty bundle path")
|
|
|
|
}
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.StartTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = c.Id
|
|
|
|
e.BundlePath = c.BundlePath
|
2016-02-03 21:56:15 +00:00
|
|
|
e.Stdin = c.Stdin
|
|
|
|
e.Stdout = c.Stdout
|
|
|
|
e.Stderr = c.Stderr
|
2016-02-11 21:44:25 +00:00
|
|
|
e.Labels = c.Labels
|
2015-12-18 00:07:04 +00:00
|
|
|
e.StartResponse = make(chan supervisor.StartResponse, 1)
|
2015-12-09 22:18:31 +00:00
|
|
|
if c.Checkpoint != "" {
|
|
|
|
e.Checkpoint = &runtime.Checkpoint{
|
|
|
|
Name: c.Checkpoint,
|
|
|
|
}
|
|
|
|
}
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-02-11 19:56:11 +00:00
|
|
|
r := <-e.StartResponse
|
2016-02-12 22:01:24 +00:00
|
|
|
apiC, err := createAPIContainer(r.Container, false)
|
2016-02-11 19:56:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.CreateContainerResponse{
|
|
|
|
Container: apiC,
|
|
|
|
}, nil
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) Signal(ctx context.Context, r *types.SignalRequest) (*types.SignalResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.SignalTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = r.Id
|
2016-02-17 18:55:54 +00:00
|
|
|
e.PID = r.Pid
|
2015-12-09 22:18:31 +00:00
|
|
|
e.Signal = syscall.Signal(int(r.Signal))
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.SignalResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) AddProcess(ctx context.Context, r *types.AddProcessRequest) (*types.AddProcessResponse, error) {
|
2016-02-26 02:39:03 +00:00
|
|
|
process := &runtime.ProcessSpec{
|
2015-12-09 22:18:31 +00:00
|
|
|
Terminal: r.Terminal,
|
|
|
|
Args: r.Args,
|
|
|
|
Env: r.Env,
|
|
|
|
Cwd: r.Cwd,
|
|
|
|
User: specs.User{
|
|
|
|
UID: r.User.Uid,
|
|
|
|
GID: r.User.Gid,
|
|
|
|
AdditionalGids: r.User.AdditionalGids,
|
|
|
|
},
|
|
|
|
}
|
2016-02-01 19:02:41 +00:00
|
|
|
if r.Id == "" {
|
|
|
|
return nil, fmt.Errorf("container id cannot be empty")
|
|
|
|
}
|
|
|
|
if r.Pid == "" {
|
|
|
|
return nil, fmt.Errorf("process id cannot be empty")
|
|
|
|
}
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.AddProcessTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = r.Id
|
2016-02-17 18:55:54 +00:00
|
|
|
e.PID = r.Pid
|
2016-01-06 21:32:46 +00:00
|
|
|
e.ProcessSpec = process
|
2016-02-03 21:56:15 +00:00
|
|
|
e.Stdin = r.Stdin
|
|
|
|
e.Stdout = r.Stdout
|
|
|
|
e.Stderr = r.Stderr
|
2016-02-01 19:02:41 +00:00
|
|
|
e.StartResponse = make(chan supervisor.StartResponse, 1)
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-02-03 21:56:15 +00:00
|
|
|
<-e.StartResponse
|
|
|
|
return &types.AddProcessResponse{}, nil
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) CreateCheckpoint(ctx context.Context, r *types.CreateCheckpointRequest) (*types.CreateCheckpointResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.CreateCheckpointTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = r.Id
|
|
|
|
e.Checkpoint = &runtime.Checkpoint{
|
|
|
|
Name: r.Checkpoint.Name,
|
|
|
|
Exit: r.Checkpoint.Exit,
|
|
|
|
Tcp: r.Checkpoint.Tcp,
|
|
|
|
UnixSockets: r.Checkpoint.UnixSockets,
|
|
|
|
Shell: r.Checkpoint.Shell,
|
|
|
|
}
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.CreateCheckpointResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) DeleteCheckpoint(ctx context.Context, r *types.DeleteCheckpointRequest) (*types.DeleteCheckpointResponse, error) {
|
|
|
|
if r.Name == "" {
|
|
|
|
return nil, errors.New("checkpoint name cannot be empty")
|
|
|
|
}
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.DeleteCheckpointTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = r.Id
|
|
|
|
e.Checkpoint = &runtime.Checkpoint{
|
|
|
|
Name: r.Name,
|
|
|
|
}
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.DeleteCheckpointResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) ListCheckpoint(ctx context.Context, r *types.ListCheckpointRequest) (*types.ListCheckpointResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.GetContainersTask{}
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var container runtime.Container
|
|
|
|
for _, c := range e.Containers {
|
|
|
|
if c.ID() == r.Id {
|
|
|
|
container = c
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if container == nil {
|
|
|
|
return nil, grpc.Errorf(codes.NotFound, "no such containers")
|
|
|
|
}
|
|
|
|
var out []*types.Checkpoint
|
2016-02-01 23:07:02 +00:00
|
|
|
checkpoints, err := container.Checkpoints()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, c := range checkpoints {
|
|
|
|
out = append(out, &types.Checkpoint{
|
|
|
|
Name: c.Name,
|
|
|
|
Tcp: c.Tcp,
|
|
|
|
Shell: c.Shell,
|
|
|
|
UnixSockets: c.UnixSockets,
|
|
|
|
// TODO: figure out timestamp
|
|
|
|
//Timestamp: c.Timestamp,
|
|
|
|
})
|
|
|
|
}
|
2015-12-09 22:18:31 +00:00
|
|
|
return &types.ListCheckpointResponse{Checkpoints: out}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *apiServer) State(ctx context.Context, r *types.StateRequest) (*types.StateResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.GetContainersTask{}
|
2016-02-11 20:20:29 +00:00
|
|
|
e.ID = r.Id
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m := s.sv.Machine()
|
|
|
|
state := &types.StateResponse{
|
|
|
|
Machine: &types.Machine{
|
|
|
|
Cpus: uint32(m.Cpus),
|
2016-02-11 23:55:19 +00:00
|
|
|
Memory: uint64(m.Memory),
|
2015-12-09 22:18:31 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, c := range e.Containers {
|
2016-02-12 22:01:24 +00:00
|
|
|
apiC, err := createAPIContainer(c, true)
|
2015-12-09 22:18:31 +00:00
|
|
|
if err != nil {
|
2016-02-11 19:56:11 +00:00
|
|
|
return nil, err
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
2016-02-11 19:56:11 +00:00
|
|
|
state.Containers = append(state.Containers, apiC)
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
|
|
|
return state, nil
|
|
|
|
}
|
|
|
|
|
2016-02-12 22:01:24 +00:00
|
|
|
func createAPIContainer(c runtime.Container, getPids bool) (*types.Container, error) {
|
2016-02-11 19:56:11 +00:00
|
|
|
processes, err := c.Processes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, grpc.Errorf(codes.Internal, "get processes for container")
|
|
|
|
}
|
|
|
|
var procs []*types.Process
|
|
|
|
for _, p := range processes {
|
|
|
|
oldProc := p.Spec()
|
|
|
|
stdio := p.Stdio()
|
|
|
|
procs = append(procs, &types.Process{
|
|
|
|
Pid: p.ID(),
|
|
|
|
SystemPid: uint32(p.SystemPid()),
|
|
|
|
Terminal: oldProc.Terminal,
|
|
|
|
Args: oldProc.Args,
|
|
|
|
Env: oldProc.Env,
|
|
|
|
Cwd: oldProc.Cwd,
|
|
|
|
Stdin: stdio.Stdin,
|
|
|
|
Stdout: stdio.Stdout,
|
|
|
|
Stderr: stdio.Stderr,
|
|
|
|
User: &types.User{
|
|
|
|
Uid: oldProc.User.UID,
|
|
|
|
Gid: oldProc.User.GID,
|
|
|
|
AdditionalGids: oldProc.User.AdditionalGids,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2016-02-12 22:01:24 +00:00
|
|
|
var pids []int
|
|
|
|
if getPids {
|
|
|
|
if pids, err = c.Pids(); err != nil {
|
|
|
|
return nil, grpc.Errorf(codes.Internal, "get all pids for container")
|
|
|
|
}
|
2016-02-11 22:07:34 +00:00
|
|
|
}
|
2016-02-11 19:56:11 +00:00
|
|
|
return &types.Container{
|
|
|
|
Id: c.ID(),
|
|
|
|
BundlePath: c.Path(),
|
|
|
|
Processes: procs,
|
2016-02-11 21:44:25 +00:00
|
|
|
Labels: c.Labels(),
|
2016-02-11 19:56:11 +00:00
|
|
|
Status: string(c.State()),
|
2016-02-11 22:07:34 +00:00
|
|
|
Pids: toUint32(pids),
|
2016-02-11 19:56:11 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2016-02-11 22:07:34 +00:00
|
|
|
func toUint32(its []int) []uint32 {
|
|
|
|
o := []uint32{}
|
|
|
|
for _, i := range its {
|
|
|
|
o = append(o, uint32(i))
|
|
|
|
}
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
2015-12-09 22:18:31 +00:00
|
|
|
func (s *apiServer) UpdateContainer(ctx context.Context, r *types.UpdateContainerRequest) (*types.UpdateContainerResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.UpdateTask{}
|
2015-12-09 22:18:31 +00:00
|
|
|
e.ID = r.Id
|
2016-01-27 22:19:10 +00:00
|
|
|
e.State = runtime.State(r.Status)
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2015-12-09 22:18:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.UpdateContainerResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2016-02-02 22:21:25 +00:00
|
|
|
func (s *apiServer) UpdateProcess(ctx context.Context, r *types.UpdateProcessRequest) (*types.UpdateProcessResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.UpdateProcessTask{}
|
2016-02-02 22:21:25 +00:00
|
|
|
e.ID = r.Id
|
2016-02-17 18:55:54 +00:00
|
|
|
e.PID = r.Pid
|
2016-02-02 22:21:25 +00:00
|
|
|
e.Height = int(r.Height)
|
|
|
|
e.Width = int(r.Width)
|
|
|
|
e.CloseStdin = r.CloseStdin
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2016-02-02 22:21:25 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &types.UpdateProcessResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2015-12-09 22:18:31 +00:00
|
|
|
func (s *apiServer) Events(r *types.EventsRequest, stream types.API_EventsServer) error {
|
2016-02-12 21:29:53 +00:00
|
|
|
t := time.Time{}
|
|
|
|
if r.Timestamp != 0 {
|
|
|
|
t = time.Unix(int64(r.Timestamp), 0)
|
|
|
|
}
|
|
|
|
events := s.sv.Events(t)
|
2015-12-10 20:30:04 +00:00
|
|
|
defer s.sv.Unsubscribe(events)
|
2016-02-12 01:26:24 +00:00
|
|
|
for e := range events {
|
|
|
|
if err := stream.Send(&types.Event{
|
|
|
|
Id: e.ID,
|
|
|
|
Type: e.Type,
|
|
|
|
Timestamp: uint64(e.Timestamp.Unix()),
|
2016-02-17 18:55:54 +00:00
|
|
|
Pid: e.PID,
|
2016-02-12 01:26:24 +00:00
|
|
|
Status: uint32(e.Status),
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
2015-12-16 00:22:53 +00:00
|
|
|
}
|
2015-12-09 22:18:31 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-12-14 22:43:00 +00:00
|
|
|
|
2016-02-11 22:36:32 +00:00
|
|
|
func (s *apiServer) Stats(ctx context.Context, r *types.StatsRequest) (*types.StatsResponse, error) {
|
2016-02-17 18:55:54 +00:00
|
|
|
e := &supervisor.StatsTask{}
|
2015-12-14 22:43:00 +00:00
|
|
|
e.ID = r.Id
|
2016-02-11 22:36:32 +00:00
|
|
|
e.Stat = make(chan *runtime.Stat, 1)
|
2016-02-12 01:26:24 +00:00
|
|
|
s.sv.SendTask(e)
|
2016-02-17 18:55:54 +00:00
|
|
|
if err := <-e.ErrorCh(); err != nil {
|
2016-02-11 22:36:32 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
stats := <-e.Stat
|
|
|
|
t := convertToPb(stats)
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertToPb(st *runtime.Stat) *types.StatsResponse {
|
|
|
|
pbSt := &types.StatsResponse{
|
|
|
|
Timestamp: uint64(st.Timestamp.Unix()),
|
|
|
|
CgroupStats: &types.CgroupStats{},
|
|
|
|
}
|
|
|
|
lcSt, ok := st.Data.(*libcontainer.Stats)
|
|
|
|
if !ok {
|
|
|
|
return pbSt
|
|
|
|
}
|
|
|
|
cpuSt := lcSt.CgroupStats.CpuStats
|
2016-02-21 07:40:09 +00:00
|
|
|
systemUsage, _ := getSystemCPUUsage()
|
2016-02-11 22:36:32 +00:00
|
|
|
pbSt.CgroupStats.CpuStats = &types.CpuStats{
|
|
|
|
CpuUsage: &types.CpuUsage{
|
|
|
|
TotalUsage: cpuSt.CpuUsage.TotalUsage,
|
|
|
|
PercpuUsage: cpuSt.CpuUsage.PercpuUsage,
|
|
|
|
UsageInKernelmode: cpuSt.CpuUsage.UsageInKernelmode,
|
|
|
|
UsageInUsermode: cpuSt.CpuUsage.UsageInUsermode,
|
|
|
|
},
|
|
|
|
ThrottlingData: &types.ThrottlingData{
|
|
|
|
Periods: cpuSt.ThrottlingData.Periods,
|
|
|
|
ThrottledPeriods: cpuSt.ThrottlingData.ThrottledPeriods,
|
|
|
|
ThrottledTime: cpuSt.ThrottlingData.ThrottledTime,
|
|
|
|
},
|
2016-02-21 07:40:09 +00:00
|
|
|
SystemUsage: systemUsage,
|
2016-02-11 22:36:32 +00:00
|
|
|
}
|
|
|
|
memSt := lcSt.CgroupStats.MemoryStats
|
|
|
|
pbSt.CgroupStats.MemoryStats = &types.MemoryStats{
|
|
|
|
Cache: memSt.Cache,
|
|
|
|
Usage: &types.MemoryData{
|
|
|
|
Usage: memSt.Usage.Usage,
|
|
|
|
MaxUsage: memSt.Usage.MaxUsage,
|
|
|
|
Failcnt: memSt.Usage.Failcnt,
|
2016-02-19 23:22:58 +00:00
|
|
|
Limit: memSt.Usage.Limit,
|
2016-02-11 22:36:32 +00:00
|
|
|
},
|
|
|
|
SwapUsage: &types.MemoryData{
|
|
|
|
Usage: memSt.SwapUsage.Usage,
|
|
|
|
MaxUsage: memSt.SwapUsage.MaxUsage,
|
|
|
|
Failcnt: memSt.SwapUsage.Failcnt,
|
2016-02-19 23:22:58 +00:00
|
|
|
Limit: memSt.SwapUsage.Limit,
|
2016-02-11 22:36:32 +00:00
|
|
|
},
|
2016-02-19 23:29:51 +00:00
|
|
|
KernelUsage: &types.MemoryData{
|
|
|
|
Usage: memSt.KernelUsage.Usage,
|
|
|
|
MaxUsage: memSt.KernelUsage.MaxUsage,
|
|
|
|
Failcnt: memSt.KernelUsage.Failcnt,
|
|
|
|
Limit: memSt.KernelUsage.Limit,
|
|
|
|
},
|
2016-02-11 22:36:32 +00:00
|
|
|
}
|
|
|
|
blkSt := lcSt.CgroupStats.BlkioStats
|
|
|
|
pbSt.CgroupStats.BlkioStats = &types.BlkioStats{
|
|
|
|
IoServiceBytesRecursive: convertBlkioEntryToPb(blkSt.IoServiceBytesRecursive),
|
|
|
|
IoServicedRecursive: convertBlkioEntryToPb(blkSt.IoServicedRecursive),
|
|
|
|
IoQueuedRecursive: convertBlkioEntryToPb(blkSt.IoQueuedRecursive),
|
|
|
|
IoServiceTimeRecursive: convertBlkioEntryToPb(blkSt.IoServiceTimeRecursive),
|
|
|
|
IoWaitTimeRecursive: convertBlkioEntryToPb(blkSt.IoWaitTimeRecursive),
|
|
|
|
IoMergedRecursive: convertBlkioEntryToPb(blkSt.IoMergedRecursive),
|
|
|
|
IoTimeRecursive: convertBlkioEntryToPb(blkSt.IoTimeRecursive),
|
|
|
|
SectorsRecursive: convertBlkioEntryToPb(blkSt.SectorsRecursive),
|
|
|
|
}
|
|
|
|
pbSt.CgroupStats.HugetlbStats = make(map[string]*types.HugetlbStats)
|
|
|
|
for k, st := range lcSt.CgroupStats.HugetlbStats {
|
|
|
|
pbSt.CgroupStats.HugetlbStats[k] = &types.HugetlbStats{
|
|
|
|
Usage: st.Usage,
|
|
|
|
MaxUsage: st.MaxUsage,
|
|
|
|
Failcnt: st.Failcnt,
|
2015-12-14 22:43:00 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-11 22:36:32 +00:00
|
|
|
return pbSt
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertBlkioEntryToPb(b []cgroups.BlkioStatEntry) []*types.BlkioStatsEntry {
|
|
|
|
var pbEs []*types.BlkioStatsEntry
|
|
|
|
for _, e := range b {
|
|
|
|
pbEs = append(pbEs, &types.BlkioStatsEntry{
|
|
|
|
Major: e.Major,
|
|
|
|
Minor: e.Minor,
|
|
|
|
Op: e.Op,
|
|
|
|
Value: e.Value,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return pbEs
|
2015-12-14 22:43:00 +00:00
|
|
|
}
|
2016-02-21 07:40:09 +00:00
|
|
|
|
|
|
|
const nanoSecondsPerSecond = 1e9
|
|
|
|
|
|
|
|
var clockTicksPerSecond = uint64(system.GetClockTicks())
|
|
|
|
|
|
|
|
// getSystemCPUUsage returns the host system's cpu usage in
|
|
|
|
// nanoseconds. An error is returned if the format of the underlying
|
|
|
|
// file does not match.
|
|
|
|
//
|
|
|
|
// Uses /proc/stat defined by POSIX. Looks for the cpu
|
|
|
|
// statistics line and then sums up the first seven fields
|
|
|
|
// provided. See `man 5 proc` for details on specific field
|
|
|
|
// information.
|
|
|
|
func getSystemCPUUsage() (uint64, error) {
|
|
|
|
var line string
|
|
|
|
f, err := os.Open("/proc/stat")
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
bufReader := bufio.NewReaderSize(nil, 128)
|
|
|
|
defer func() {
|
|
|
|
bufReader.Reset(nil)
|
|
|
|
f.Close()
|
|
|
|
}()
|
|
|
|
bufReader.Reset(f)
|
|
|
|
err = nil
|
|
|
|
for err == nil {
|
|
|
|
line, err = bufReader.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
parts := strings.Fields(line)
|
|
|
|
switch parts[0] {
|
|
|
|
case "cpu":
|
|
|
|
if len(parts) < 8 {
|
|
|
|
return 0, fmt.Errorf("bad format of cpu stats")
|
|
|
|
}
|
|
|
|
var totalClockTicks uint64
|
|
|
|
for _, i := range parts[1:8] {
|
|
|
|
v, err := strconv.ParseUint(i, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("error parsing cpu stats")
|
|
|
|
}
|
|
|
|
totalClockTicks += v
|
|
|
|
}
|
|
|
|
return (totalClockTicks * nanoSecondsPerSecond) /
|
|
|
|
clockTicksPerSecond, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0, fmt.Errorf("bad stats format")
|
|
|
|
}
|