-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathprocess.go
650 lines (557 loc) · 18.2 KB
/
process.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you 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.
//go:build darwin || freebsd || linux || windows || aix
// +build darwin freebsd linux windows aix
package process
import (
"fmt"
"os"
"runtime"
"sort"
"strings"
"time"
"github.com/pkg/errors"
"github.com/elastic/go-sysinfo/types"
"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/libbeat/common/match"
"github.com/elastic/beats/v7/libbeat/logp"
"github.com/elastic/beats/v7/libbeat/metric/system/cgroup"
"github.com/elastic/beats/v7/libbeat/metric/system/numcpu"
sysinfo "github.com/elastic/go-sysinfo"
sigar "github.com/elastic/gosigar"
)
// ProcsMap is a map where the keys are the names of processes and the value is the Process with that name
type ProcsMap map[int]*Process
// Process is the structure which holds the information of a process running on the host.
// It includes pid, gid and it interacts with gosigar to fetch process data from the host.
type Process struct {
Pid int `json:"pid"`
Ppid int `json:"ppid"`
Pgid int `json:"pgid"`
Name string `json:"name"`
Username string `json:"username"`
State string `json:"state"`
Args []string `json:"args"`
CmdLine string `json:"cmdline"`
Cwd string `json:"cwd"`
Executable string `json:"executable"`
Mem sigar.ProcMem
CPU sigar.ProcTime
SampleTime time.Time
FD sigar.ProcFDUsage
Env common.MapStr
// cpu stats
cpuSinceStart float64
cpuTotalPct float64
cpuTotalPctNorm float64
// cgroup stats
RawStats cgroup.CGStats
}
// CgroupPctStats stores rendered percent values from cgroup CPU data
type CgroupPctStats struct {
CPUTotalPct float64
CPUTotalPctNorm float64
CPUUserPct float64
CPUUserPctNorm float64
CPUSystemPct float64
CPUSystemPctNorm float64
}
// Stats stores the stats of processes on the host.
type Stats struct {
Procs []string
ProcsMap ProcsMap
CPUTicks bool
EnvWhitelist []string
CacheCmdLine bool
IncludeTop IncludeTopConfig
CgroupOpts cgroup.ReaderOptions
EnableCgroups bool
procRegexps []match.Matcher // List of regular expressions used to whitelist processes.
envRegexps []match.Matcher // List of regular expressions used to whitelist env vars.
cgroups *cgroup.Reader
logger *logp.Logger
host types.Host
}
// Ticks of CPU for a process
type Ticks struct {
User uint64
System uint64
Total uint64
}
// newProcess creates a new Process object and initializes it with process
// state information. If the process's command line and environment variables
// are known they should be passed in to avoid re-fetching the information.
func newProcess(pid int, cmdline string, env common.MapStr) (*Process, error) {
state := sigar.ProcState{}
err := state.Get(pid)
// we have to keep up that behavior somewhat, as there are numerous cases where ProcState could "normally" fail
// If something has failed this early, assume the PID is bad, invalid, or dead in some way, and just continue.
// Instead, log the error.
if err != nil {
logp.L().Debugf("Could not fetch info for PID %d: %s", pid, err)
return nil, nil
}
exe := sigar.ProcExe{}
if err := exe.Get(pid); err != nil && !sigar.IsNotImplemented(err) && !os.IsPermission(err) && !os.IsNotExist(err) {
return nil, fmt.Errorf("error getting process exe for pid=%d: %v", pid, err)
}
proc := Process{
Pid: pid,
Ppid: state.Ppid,
Pgid: state.Pgid,
Name: state.Name,
Username: state.Username,
State: getProcState(byte(state.State)),
CmdLine: cmdline,
Cwd: exe.Cwd,
Executable: exe.Name,
Env: env,
}
return &proc, nil
}
// getDetails fetches CPU, memory, FD usage, command line arguments, and
// environment variables for the process. The envPredicate parameter is an
// optional predicate function that should return true if an environment
// variable should be saved with the process. If the argument is nil then all
// environment variables are stored.
func (proc *Process) getDetails(envPredicate func(string) bool) error {
proc.SampleTime = time.Now()
proc.Mem = sigar.ProcMem{}
if err := proc.Mem.Get(proc.Pid); err != nil {
return fmt.Errorf("error getting process mem for pid=%d: %v", proc.Pid, err)
}
proc.CPU = sigar.ProcTime{}
if err := proc.CPU.Get(proc.Pid); err != nil {
return fmt.Errorf("error getting process cpu time for pid=%d: %v", proc.Pid, err)
}
if len(proc.Args) == 0 {
args := sigar.ProcArgs{}
if err := args.Get(proc.Pid); err != nil && !sigar.IsNotImplemented(err) {
return fmt.Errorf("error getting process arguments for pid=%d: %v", proc.Pid, err)
}
proc.Args = args.List
}
if proc.CmdLine == "" && len(proc.Args) > 0 {
proc.CmdLine = strings.Join(proc.Args, " ")
}
if fd, err := getProcFDUsage(proc.Pid); err != nil {
return fmt.Errorf("error getting process file descriptor usage for pid=%d: %v", proc.Pid, err)
} else if fd != nil {
proc.FD = *fd
}
if proc.Env == nil {
proc.Env = common.MapStr{}
if err := getProcEnv(proc.Pid, proc.Env, envPredicate); err != nil {
return fmt.Errorf("error getting process environment variables for pid=%d: %v", proc.Pid, err)
}
}
return nil
}
// getProcFDUsage returns file descriptor usage information for the process
// identified by the given PID. If the feature is not implemented then nil
// is returned with no error. If there is a permission error while reading the
// data then nil is returned with no error (/proc/[pid]/fd requires root
// permissions). Any other errors that occur are returned.
func getProcFDUsage(pid int) (*sigar.ProcFDUsage, error) {
// It's not possible to collect FD usage from other processes on FreeBSD
// due to linprocfs not exposing the information.
if runtime.GOOS == "freebsd" && pid != os.Getpid() {
return nil, nil
}
fd := sigar.ProcFDUsage{}
if err := fd.Get(pid); err != nil {
switch {
case sigar.IsNotImplemented(err):
return nil, nil
case os.IsPermission(err):
return nil, nil
default:
return nil, err
}
}
return &fd, nil
}
// getProcEnv gets the process's environment variables and writes them to the
// out parameter. It handles ErrNotImplemented and permission errors. Any other
// errors are returned.
//
// The filter function should return true if a given environment variable should
// be added to the out parameter.
//
// On Linux you must be root to read other processes' environment variables.
func getProcEnv(pid int, out common.MapStr, filter func(v string) bool) error {
env := &sigar.ProcEnv{}
if err := env.Get(pid); err != nil {
switch {
case sigar.IsNotImplemented(err):
return nil
case os.IsPermission(err):
return nil
default:
return err
}
}
for k, v := range env.Vars {
if filter == nil || filter(k) {
out[k] = v
}
}
return nil
}
// GetProcMemPercentage returns process memory usage as a percent of total memory usage
func GetProcMemPercentage(proc *Process, totalPhyMem uint64) float64 {
if totalPhyMem == 0 {
return 0
}
perc := (float64(proc.Mem.Resident) / float64(totalPhyMem))
return common.Round(perc, 4)
}
// Pids returns a list of PIDs
func Pids() ([]int, error) {
pids := sigar.ProcList{}
err := pids.Get()
if err != nil {
return nil, err
}
return pids.List, nil
}
func getProcState(b byte) string {
switch b {
case 'S':
return "sleeping"
case 'R':
return "running"
case 'D':
return "idle"
case 'T':
return "stopped"
case 'Z':
return "zombie"
}
return "unknown"
}
// GetOwnResourceUsageTimeInMillis return the user and system CPU usage time in milliseconds
func GetOwnResourceUsageTimeInMillis() (int64, int64, error) {
r := sigar.Rusage{}
err := r.Get(0)
if err != nil {
return 0, 0, err
}
uTime := int64(r.Utime / time.Millisecond)
sTime := int64(r.Stime / time.Millisecond)
return uTime, sTime, nil
}
func (procStats *Stats) getProcessEvent(process *Process) common.MapStr {
// This is a holdover until we migrate this library to metricbeat/internal
// At which point we'll use the memory code there.
var totalPhyMem uint64
if procStats.host != nil {
memStats, err := procStats.host.Memory()
if err != nil {
procStats.logger.Warnf("Getting memory details: %v", err)
} else {
totalPhyMem = memStats.Total
}
}
proc := common.MapStr{
"pid": process.Pid,
"ppid": process.Ppid,
"pgid": process.Pgid,
"name": process.Name,
"state": process.State,
"username": process.Username,
"memory": common.MapStr{
"size": process.Mem.Size,
"rss": common.MapStr{
"bytes": process.Mem.Resident,
"pct": GetProcMemPercentage(process, totalPhyMem),
},
"share": process.Mem.Share,
},
}
if len(process.Args) > 0 {
proc["args"] = process.Args
}
if process.CmdLine != "" {
proc["cmdline"] = process.CmdLine
}
if process.Cwd != "" {
proc["cwd"] = process.Cwd
}
if process.Executable != "" {
proc["exe"] = process.Executable
}
if len(process.Env) > 0 {
proc["env"] = process.Env
}
proc["cpu"] = common.MapStr{
"total": common.MapStr{
"value": process.cpuSinceStart,
"pct": process.cpuTotalPct,
"norm": common.MapStr{
"pct": process.cpuTotalPctNorm,
},
},
"start_time": unixTimeMsToTime(process.CPU.StartTime),
}
if procStats.CPUTicks {
proc.Put("cpu.user.ticks", process.CPU.User)
proc.Put("cpu.system.ticks", process.CPU.Sys)
proc.Put("cpu.total.ticks", process.CPU.Total)
}
if process.FD != (sigar.ProcFDUsage{}) {
proc["fd"] = common.MapStr{
"open": process.FD.Open,
"limit": common.MapStr{
"soft": process.FD.SoftLimit,
"hard": process.FD.HardLimit,
},
}
}
if procStats.EnableCgroups && process.RawStats != nil {
statsMap, err := process.RawStats.Format()
if err != nil {
procStats.logger.Warnf("Getting memory details: %v", err)
} else {
proc["cgroup"] = statsMap
}
}
return proc
}
// GetProcCPUPercentage returns the percentage of total CPU time consumed by
// the process during the period between the given samples. Two percentages are
// returned (these must be multiplied by 100). The first is a normalized based
// on the number of cores such that the value ranges on [0, 1]. The second is
// not normalized and the value ranges on [0, number_of_cores].
//
// Implementation note: The total system CPU time (including idle) is not
// provided so this method will resort to using the difference in wall-clock
// time multiplied by the number of cores as the total amount of CPU time
// available between samples. This could result in incorrect percentages if the
// wall-clock is adjusted (prior to Go 1.9) or the machine is suspended.
func GetProcCPUPercentage(s0, s1 *Process) (normalizedPct, pct, totalPct float64) {
if s0 != nil && s1 != nil {
timeDelta := s1.SampleTime.Sub(s0.SampleTime)
timeDeltaMillis := timeDelta / time.Millisecond
totalCPUDeltaMillis := int64(s1.CPU.Total - s0.CPU.Total)
pct := float64(totalCPUDeltaMillis) / float64(timeDeltaMillis)
normalizedPct := pct / float64(numcpu.NumCPU())
return common.Round(normalizedPct, common.DefaultDecimalPlacesCount),
common.Round(pct, common.DefaultDecimalPlacesCount),
common.Round(float64(s1.CPU.Total), common.DefaultDecimalPlacesCount)
}
return 0, 0, 0
}
// matchProcess checks if the provided process name matches any of the process regexes
func (procStats *Stats) matchProcess(name string) bool {
for _, reg := range procStats.procRegexps {
if reg.MatchString(name) {
return true
}
}
return false
}
// Init initializes a Stats instance. It returns errors if the provided process regexes
// cannot be compiled.
func (procStats *Stats) Init() error {
procStats.logger = logp.NewLogger("processes")
var err error
procStats.host, err = sysinfo.Host()
if err != nil {
procStats.host = nil
procStats.logger.Warnf("Getting host details: %v", err)
}
procStats.ProcsMap = make(ProcsMap)
if len(procStats.Procs) == 0 {
return nil
}
procStats.procRegexps = []match.Matcher{}
for _, pattern := range procStats.Procs {
reg, err := match.Compile(pattern)
if err != nil {
return fmt.Errorf("Failed to compile regexp [%s]: %v", pattern, err)
}
procStats.procRegexps = append(procStats.procRegexps, reg)
}
procStats.envRegexps = make([]match.Matcher, 0, len(procStats.EnvWhitelist))
for _, pattern := range procStats.EnvWhitelist {
reg, err := match.Compile(pattern)
if err != nil {
return fmt.Errorf("failed to compile env whitelist regexp [%v]: %v", pattern, err)
}
procStats.envRegexps = append(procStats.envRegexps, reg)
}
if procStats.EnableCgroups {
cgReader, err := cgroup.NewReaderOptions(procStats.CgroupOpts)
if err == cgroup.ErrCgroupsMissing {
logp.Warn("cgroup data collection will be disabled: %v", err)
procStats.EnableCgroups = false
} else if err != nil {
return errors.Wrap(err, "error initializing cgroup reader")
}
procStats.cgroups = cgReader
}
return nil
}
// Get fetches process data which matches the provided regexes from the host.
func (procStats *Stats) Get() ([]common.MapStr, error) {
if len(procStats.Procs) == 0 {
return nil, nil
}
pids, err := Pids()
if err != nil {
return nil, errors.Wrap(err, "failed to fetch the list of PIDs")
}
var processes []Process
newProcs := make(ProcsMap, len(pids))
for _, pid := range pids {
process := procStats.getSingleProcess(pid, newProcs)
if process == nil {
continue
}
processes = append(processes, *process)
}
procStats.ProcsMap = newProcs
processes = procStats.includeTopProcesses(processes)
procStats.logger.Debugf("Filtered top processes down to %d processes", len(processes))
procs := make([]common.MapStr, 0, len(processes))
for _, process := range processes {
proc := procStats.getProcessEvent(&process)
procs = append(procs, proc)
}
return procs, nil
}
// GetOne fetches process data for a given PID if its name matches the regexes provided from the host.
func (procStats *Stats) GetOne(pid int) (common.MapStr, error) {
if len(procStats.Procs) == 0 {
return nil, nil
}
newProcs := make(ProcsMap, 1)
p := procStats.getSingleProcess(pid, newProcs)
if p == nil {
return common.MapStr{}, nil
}
e := procStats.getProcessEvent(p)
procStats.ProcsMap = newProcs
return e, nil
}
func (procStats *Stats) getSingleProcess(pid int, newProcs ProcsMap) *Process {
var cmdline string
var env common.MapStr
// In the future we really should find a better way of distinguishing between serious and non-serious errors
// for now, just log and continue
logger := logp.L()
if previousProc := procStats.ProcsMap[pid]; previousProc != nil {
if procStats.CacheCmdLine {
cmdline = previousProc.CmdLine
}
env = previousProc.Env
}
process, err := newProcess(pid, cmdline, env)
if err != nil {
logger.Debugf("Skip process pid=%d; err=%s", pid, err)
}
// The process is now gone. Skip.
if process == nil {
return nil
}
if !procStats.matchProcess(process.Name) {
logger.Debugf("Process name does not matches the provided regex; pid=%d; name=%s", pid, process.Name)
return nil
}
err = process.getDetails(procStats.isWhitelistedEnvVar)
if err != nil {
logger.Debugf("Error getting details for process %s with pid=%d; err=%s", process.Name, process.Pid, err)
return nil
}
if procStats.EnableCgroups {
cgStats, err := procStats.cgroups.GetStatsForPid(pid)
if err != nil {
logger.Debugf("Error fetching cgroup data for process %s with pid=%d; err=%s", process.Name, process.Pid, err)
} else {
process.RawStats = cgStats
last := procStats.ProcsMap[process.Pid]
if last != nil {
process.RawStats.FillPercentages(last.RawStats, process.SampleTime, last.SampleTime)
}
}
}
newProcs[process.Pid] = process
last := procStats.ProcsMap[process.Pid]
process.cpuTotalPctNorm, process.cpuTotalPct, process.cpuSinceStart = GetProcCPUPercentage(last, process)
return process
}
func (procStats *Stats) includeTopProcesses(processes []Process) []Process {
if !procStats.IncludeTop.Enabled ||
(procStats.IncludeTop.ByCPU == 0 && procStats.IncludeTop.ByMemory == 0) {
return processes
}
var result []Process
if procStats.IncludeTop.ByCPU > 0 {
numProcs := procStats.IncludeTop.ByCPU
if len(processes) < procStats.IncludeTop.ByCPU {
numProcs = len(processes)
}
sort.Slice(processes, func(i, j int) bool {
return processes[i].cpuTotalPct > processes[j].cpuTotalPct
})
result = append(result, processes[:numProcs]...)
}
if procStats.IncludeTop.ByMemory > 0 {
numProcs := procStats.IncludeTop.ByMemory
if len(processes) < procStats.IncludeTop.ByMemory {
numProcs = len(processes)
}
sort.Slice(processes, func(i, j int) bool {
return processes[i].Mem.Resident > processes[j].Mem.Resident
})
for _, proc := range processes[:numProcs] {
if !isProcessInSlice(result, &proc) {
result = append(result, proc)
}
}
}
return result
}
// isProcessInSlice looks up proc in the processes slice and returns if
// found or not
func isProcessInSlice(processes []Process, proc *Process) bool {
for _, p := range processes {
if p.Pid == proc.Pid {
return true
}
}
return false
}
// isWhitelistedEnvVar returns true if the given variable name is a match for
// the whitelist. If the whitelist is empty it returns false.
func (procStats Stats) isWhitelistedEnvVar(varName string) bool {
if len(procStats.envRegexps) == 0 {
return false
}
for _, p := range procStats.envRegexps {
if p.MatchString(varName) {
return true
}
}
return false
}
// unixTimeMsToTime converts a unix time given in milliseconds since Unix epoch
// to a common.Time value.
func unixTimeMsToTime(unixTimeMs uint64) common.Time {
return common.Time(time.Unix(0, int64(unixTimeMs*1000000)))
}