forked from digitalocean/do-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc.go
123 lines (103 loc) · 2.79 KB
/
proc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright 2016 DigitalOcean
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package procfs
import (
"fmt"
"sync"
"github.com/prometheus/procfs"
)
// ProcProc contains the data exposed by various proc files in the
// pseudo-file system.
type ProcProc struct {
PID int
CPUUtilization float64 //value in % (0.0 ~ 1.0)
ResidentMemory int //value in bytes
VirtualMemory int //value in bytes
Comm string
CmdLine []string
}
// Procer is a collection of process metrics exposed by the
// procfs.
type Procer interface {
NewProcProc() ([]ProcProc, error)
}
var state struct {
lock sync.Mutex
cpuTally map[int]uint64
totalCPUTime uint64
}
// NewProcProc collects data from various proc pseudo-file system files
// and converts it into a ProcProc structure.
func NewProcProc() ([]ProcProc, error) {
allProcs, err := procfs.AllProcs()
if err != nil {
return []ProcProc{}, err
}
output := []ProcProc{}
newCPUTally := map[int]uint64{}
newTotalCPUTime, err := totalCPUTime()
if err != nil {
return []ProcProc{}, err
}
for _, proc := range allProcs {
cli, err := proc.CmdLine()
if err != nil || len(cli) == 0 {
continue
}
comm, err := proc.Comm()
if err != nil {
continue
}
stat, err := proc.NewStat()
if err != nil {
continue
}
var utilization float64
newProcCPUTime := uint64(stat.UTime + stat.STime)
newCPUTally[proc.PID] = newProcCPUTime
if _, exists := state.cpuTally[proc.PID]; exists {
utilization = float64(newProcCPUTime-state.cpuTally[proc.PID]) / float64(newTotalCPUTime-state.totalCPUTime)
}
output = append(output, ProcProc{
CmdLine: cli,
PID: proc.PID,
Comm: comm,
VirtualMemory: stat.VirtualMemory(),
ResidentMemory: stat.ResidentMemory(),
CPUUtilization: utilization,
})
}
state.lock.Lock()
defer state.lock.Unlock()
state.cpuTally = newCPUTally
state.totalCPUTime = newTotalCPUTime
return output, nil
}
func totalCPUTime() (uint64, error) {
stats, err := NewStat()
if err != nil {
return 0, err
}
var aggregateCPU *CPU
for _, stat := range stats.CPUS {
if stat.CPU == "cpu" {
aggregateCPU = &stat
}
}
if aggregateCPU == nil {
return 0, fmt.Errorf("could not find 'cpu' line in /proc/stat")
}
return aggregateCPU.TotalTime(), nil
}