telegraf/plugins/inputs/procstat/spec_processor.go

103 lines
2.4 KiB
Go
Raw Normal View History

2015-10-04 05:09:18 +00:00
package procstat
import (
"time"
2015-10-04 05:09:18 +00:00
"github.com/shirou/gopsutil/process"
"github.com/influxdata/telegraf"
2015-10-04 05:09:18 +00:00
)
type SpecProcessor struct {
Prefix string
tags map[string]string
2015-12-15 05:37:25 +00:00
fields map[string]interface{}
acc telegraf.Accumulator
2015-10-04 05:09:18 +00:00
proc *process.Process
}
func NewSpecProcessor(
processName string,
prefix string,
acc telegraf.Accumulator,
p *process.Process,
tags map[string]string,
) *SpecProcessor {
if processName != "" {
tags["process_name"] = processName
} else {
name, err := p.Name()
if err == nil {
tags["process_name"] = name
}
}
2015-10-04 05:09:18 +00:00
return &SpecProcessor{
Prefix: prefix,
tags: tags,
2015-12-15 05:37:25 +00:00
fields: make(map[string]interface{}),
2015-10-04 05:09:18 +00:00
acc: acc,
proc: p,
}
}
func (p *SpecProcessor) pushMetrics() {
2016-04-26 02:10:34 +00:00
var prefix string
if p.Prefix != "" {
prefix = p.Prefix + "_"
}
2016-04-26 01:57:38 +00:00
fields := map[string]interface{}{}
2015-10-04 05:09:18 +00:00
2016-03-06 06:42:14 +00:00
numThreads, err := p.proc.NumThreads()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"num_threads"] = numThreads
2016-03-06 06:42:14 +00:00
}
2015-10-04 05:09:18 +00:00
fds, err := p.proc.NumFDs()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"num_fds"] = fds
2015-10-04 05:09:18 +00:00
}
ctx, err := p.proc.NumCtxSwitches()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"voluntary_context_switches"] = ctx.Voluntary
fields[prefix+"involuntary_context_switches"] = ctx.Involuntary
2015-10-04 05:09:18 +00:00
}
io, err := p.proc.IOCounters()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"read_count"] = io.ReadCount
fields[prefix+"write_count"] = io.WriteCount
fields[prefix+"read_bytes"] = io.ReadBytes
fields[prefix+"write_bytes"] = io.WriteCount
2015-10-04 05:09:18 +00:00
}
cpu_time, err := p.proc.Times()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"cpu_time_user"] = cpu_time.User
fields[prefix+"cpu_time_system"] = cpu_time.System
fields[prefix+"cpu_time_idle"] = cpu_time.Idle
fields[prefix+"cpu_time_nice"] = cpu_time.Nice
fields[prefix+"cpu_time_iowait"] = cpu_time.Iowait
fields[prefix+"cpu_time_irq"] = cpu_time.Irq
fields[prefix+"cpu_time_soft_irq"] = cpu_time.Softirq
fields[prefix+"cpu_time_steal"] = cpu_time.Steal
fields[prefix+"cpu_time_stolen"] = cpu_time.Stolen
fields[prefix+"cpu_time_guest"] = cpu_time.Guest
fields[prefix+"cpu_time_guest_nice"] = cpu_time.GuestNice
2015-10-04 05:09:18 +00:00
}
cpu_perc, err := p.proc.Percent(time.Duration(0))
2016-04-26 01:57:38 +00:00
if err == nil && cpu_perc != 0 {
2016-04-26 02:10:34 +00:00
fields[prefix+"cpu_usage"] = cpu_perc
}
2015-12-15 05:37:25 +00:00
2015-10-04 05:09:18 +00:00
mem, err := p.proc.MemoryInfo()
2016-04-26 01:57:38 +00:00
if err == nil {
2016-04-26 02:10:34 +00:00
fields[prefix+"memory_rss"] = mem.RSS
fields[prefix+"memory_vms"] = mem.VMS
fields[prefix+"memory_swap"] = mem.Swap
2015-10-04 05:09:18 +00:00
}
2016-04-26 01:57:38 +00:00
p.acc.AddFields("procstat", fields, p.tags)
2015-10-04 05:09:18 +00:00
}