2021-05-12 17:47:12 +02:00
|
|
|
package collectors
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const NUM_PROCS = 5
|
|
|
|
|
|
|
|
type TopProcsCollector struct {
|
|
|
|
MetricCollector
|
|
|
|
}
|
|
|
|
|
2021-05-14 19:21:16 +02:00
|
|
|
func (m *TopProcsCollector) Init() error {
|
2021-05-12 17:47:12 +02:00
|
|
|
m.name = "TopProcsCollector"
|
|
|
|
m.setup()
|
2021-05-14 19:21:16 +02:00
|
|
|
return nil
|
2021-05-12 17:47:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TopProcsCollector) Read(interval time.Duration) {
|
2021-05-18 15:14:37 +02:00
|
|
|
command := exec.Command("ps", "-Ao", "comm", "--sort=-pcpu")
|
2021-05-12 17:47:12 +02:00
|
|
|
command.Wait()
|
|
|
|
stdout, err := command.Output()
|
|
|
|
if err != nil {
|
|
|
|
log.Print(m.name, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
lines := strings.Split(string(stdout), "\n")
|
|
|
|
for i := 1; i < NUM_PROCS+1; i++ {
|
|
|
|
m.node[fmt.Sprintf("topproc%d", i)] = lines[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TopProcsCollector) Close() {
|
|
|
|
return
|
|
|
|
}
|