parent
795ea49093
commit
9221f93be9
|
@ -13,6 +13,7 @@
|
||||||
- Memory plugin: cached and buffered measurements re-added
|
- Memory plugin: cached and buffered measurements re-added
|
||||||
- Logging: additional logging for each collection interval, track the number
|
- Logging: additional logging for each collection interval, track the number
|
||||||
of metrics collected and from how many plugins.
|
of metrics collected and from how many plugins.
|
||||||
|
- [#240](https://github.com/influxdb/telegraf/pull/240): procstat plugin, thanks @ranjib!
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- [#228](https://github.com/influxdb/telegraf/pull/228): New version of package will replace old one. Thanks @ekini!
|
- [#228](https://github.com/influxdb/telegraf/pull/228): New version of package will replace old one. Thanks @ekini!
|
||||||
|
|
|
@ -179,6 +179,7 @@ Telegraf currently has support for collecting metrics from
|
||||||
* nginx
|
* nginx
|
||||||
* ping
|
* ping
|
||||||
* postgresql
|
* postgresql
|
||||||
|
* procstat
|
||||||
* prometheus
|
* prometheus
|
||||||
* rabbitmq
|
* rabbitmq
|
||||||
* redis
|
* redis
|
||||||
|
@ -207,6 +208,7 @@ found by running `telegraf -sample-config`
|
||||||
* datadog
|
* datadog
|
||||||
* opentsdb
|
* opentsdb
|
||||||
* amqp (rabbitmq)
|
* amqp (rabbitmq)
|
||||||
|
* mqtt
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
|
@ -5,56 +5,68 @@
|
||||||
The procstat plugin can be used to monitor system resource usage by an
|
The procstat plugin can be used to monitor system resource usage by an
|
||||||
individual process using their /proc data.
|
individual process using their /proc data.
|
||||||
|
|
||||||
|
The plugin will tag processes by their PID and their process name.
|
||||||
|
|
||||||
Processes can be specified either by pid file or by executable name. Procstat
|
Processes can be specified either by pid file or by executable name. Procstat
|
||||||
plugin will use `pgrep` when executable name is provided to obtain the pid.
|
plugin will use `pgrep` when executable name is provided to obtain the pid.
|
||||||
Proctsta plugin will transmit IO, memory, cpu, file descriptor related
|
Proctstas plugin will transmit IO, memory, cpu, file descriptor related
|
||||||
measurements for every process specified. A prefix can be set to isolate
|
measurements for every process specified. A prefix can be set to isolate
|
||||||
individual process specific measurements.
|
individual process specific measurements.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```
|
```
|
||||||
[procstat]
|
[procstat]
|
||||||
|
|
||||||
[[procstat.specifications]]
|
[[procstat.specifications]]
|
||||||
exe = "influxd"
|
exe = "influxd"
|
||||||
prefix = "influxd"
|
prefix = "influxd"
|
||||||
|
|
||||||
[[procstat.specifications]]
|
[[procstat.specifications]]
|
||||||
pid_file = "/var/run/lxc/dnsmasq.pid"
|
pid_file = "/var/run/lxc/dnsmasq.pid"
|
||||||
prefix = "dnsmasq"
|
```
|
||||||
|
|
||||||
|
The above configuration would result in output like:
|
||||||
|
|
||||||
|
```
|
||||||
|
[...]
|
||||||
|
> [name="dnsmasq" pid="44979"] procstat_cpu_user value=0.14
|
||||||
|
> [name="dnsmasq" pid="44979"] procstat_cpu_system value=0.07
|
||||||
|
[...]
|
||||||
|
> [name="influxd" pid="34337"] procstat_influxd_cpu_user value=25.43
|
||||||
|
> [name="influxd" pid="34337"] procstat_influxd_cpu_system value=21.82
|
||||||
```
|
```
|
||||||
|
|
||||||
# Measurements
|
# Measurements
|
||||||
Note: prefix will set by the user, per process.
|
Note: prefix can be set by the user, per process.
|
||||||
|
|
||||||
File descriptor related measurement names:
|
File descriptor related measurement names:
|
||||||
- procstat_prefix_num_fds value=4
|
- procstat_[prefix_]num_fds value=4
|
||||||
|
|
||||||
Context switch related measurement names:
|
Context switch related measurement names:
|
||||||
- procstat_prefix_voluntary_context_switches value=250
|
- procstat_[prefix_]voluntary_context_switches value=250
|
||||||
- procstat_prefix_involuntary_context_switches value=0
|
- procstat_[prefix_]involuntary_context_switches value=0
|
||||||
|
|
||||||
I/O related measurement names:
|
I/O related measurement names:
|
||||||
- procstat_prefix_read_count value=396
|
- procstat_[prefix_]read_count value=396
|
||||||
- procstat_prefix_write_count value=1
|
- procstat_[prefix_]write_count value=1
|
||||||
- procstat_prefix_read_bytes value=1019904
|
- procstat_[prefix_]read_bytes value=1019904
|
||||||
- procstat_prefix_write_bytes value=1
|
- procstat_[prefix_]write_bytes value=1
|
||||||
|
|
||||||
CPU related measurement names:
|
CPU related measurement names:
|
||||||
- procstat_prefix_cpu_user value=0
|
- procstat_[prefix_]cpu_user value=0
|
||||||
- procstat_prefix_cpu_system value=0.01
|
- procstat_[prefix_]cpu_system value=0.01
|
||||||
- procstat_prefix_cpu_idle value=0
|
- procstat_[prefix_]cpu_idle value=0
|
||||||
- procstat_prefix_cpu_nice value=0
|
- procstat_[prefix_]cpu_nice value=0
|
||||||
- procstat_prefix_cpu_iowait value=0
|
- procstat_[prefix_]cpu_iowait value=0
|
||||||
- procstat_prefix_cpu_irq value=0
|
- procstat_[prefix_]cpu_irq value=0
|
||||||
- procstat_prefix_cpu_soft_irq value=0
|
- procstat_[prefix_]cpu_soft_irq value=0
|
||||||
- procstat_prefix_cpu_soft_steal value=0
|
- procstat_[prefix_]cpu_soft_steal value=0
|
||||||
- procstat_prefix_cpu_soft_stolen value=0
|
- procstat_[prefix_]cpu_soft_stolen value=0
|
||||||
- procstat_prefix_cpu_soft_guest value=0
|
- procstat_[prefix_]cpu_soft_guest value=0
|
||||||
- procstat_prefix_cpu_soft_guest_nice value=0
|
- procstat_[prefix_]cpu_soft_guest_nice value=0
|
||||||
|
|
||||||
Memory related measurement names:
|
Memory related measurement names:
|
||||||
- procstat_prefix_memory_rss value=1777664
|
- procstat_[prefix_]memory_rss value=1777664
|
||||||
- procstat_prefix_memory_vms value=24227840
|
- procstat_[prefix_]memory_vms value=24227840
|
||||||
- procstat_prefix_memory_swap value=282624
|
- procstat_[prefix_]memory_swap value=282624
|
||||||
|
|
|
@ -3,6 +3,7 @@ package procstat
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -29,7 +30,7 @@ func NewProcstat() *Procstat {
|
||||||
|
|
||||||
var sampleConfig = `
|
var sampleConfig = `
|
||||||
[[procstat.specifications]]
|
[[procstat.specifications]]
|
||||||
prefix = "nginx" # required
|
prefix = "" # optional string to prefix measurements
|
||||||
# Use one of pid_file or exe to find process
|
# Use one of pid_file or exe to find process
|
||||||
pid_file = "/var/run/nginx.pid"
|
pid_file = "/var/run/nginx.pid"
|
||||||
# executable name (used by pgrep)
|
# executable name (used by pgrep)
|
||||||
|
@ -46,39 +47,65 @@ func (_ *Procstat) Description() string {
|
||||||
|
|
||||||
func (p *Procstat) Gather(acc plugins.Accumulator) error {
|
func (p *Procstat) Gather(acc plugins.Accumulator) error {
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
var outerr error
|
|
||||||
for _, specification := range p.Specifications {
|
for _, specification := range p.Specifications {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
go func(spec *Specification, acc plugins.Accumulator) {
|
go func(spec *Specification, acc plugins.Accumulator) {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
proc, err := spec.createProcess()
|
procs, err := spec.createProcesses()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
outerr = err
|
log.Printf("Error: procstat getting process, exe: %s, pidfile: %s, %s",
|
||||||
|
spec.Exe, spec.PidFile, err.Error())
|
||||||
} else {
|
} else {
|
||||||
outerr = NewSpecProcessor(spec.Prefix, acc, proc).pushMetrics()
|
for _, proc := range procs {
|
||||||
|
p := NewSpecProcessor(spec.Prefix, acc, proc)
|
||||||
|
p.pushMetrics()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}(specification, acc)
|
}(specification, acc)
|
||||||
}
|
}
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
return outerr
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (spec *Specification) createProcess() (*process.Process, error) {
|
func (spec *Specification) createProcesses() ([]*process.Process, error) {
|
||||||
|
var out []*process.Process
|
||||||
|
var errstring string
|
||||||
|
var outerr error
|
||||||
|
var pids []int32
|
||||||
|
|
||||||
if spec.PidFile != "" {
|
if spec.PidFile != "" {
|
||||||
pid, err := pidFromFile(spec.PidFile)
|
pid, err := pidFromFile(spec.PidFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
errstring += err.Error() + " "
|
||||||
|
} else {
|
||||||
|
pids = append(pids, int32(pid))
|
||||||
}
|
}
|
||||||
return process.NewProcess(int32(pid))
|
|
||||||
} else if spec.Exe != "" {
|
} else if spec.Exe != "" {
|
||||||
pid, err := pidFromExe(spec.Exe)
|
exepids, err := pidsFromExe(spec.Exe)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
errstring += err.Error() + " "
|
||||||
}
|
}
|
||||||
return process.NewProcess(int32(pid))
|
pids = append(pids, exepids...)
|
||||||
} else {
|
} else {
|
||||||
return nil, fmt.Errorf("Either exe or pid_file has to be specified")
|
errstring += fmt.Sprintf("Either exe or pid_file has to be specified")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for _, pid := range pids {
|
||||||
|
p, err := process.NewProcess(int32(pid))
|
||||||
|
if err == nil {
|
||||||
|
out = append(out, p)
|
||||||
|
} else {
|
||||||
|
errstring += err.Error() + " "
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if errstring != "" {
|
||||||
|
outerr = fmt.Errorf("%s", errstring)
|
||||||
|
}
|
||||||
|
|
||||||
|
return out, outerr
|
||||||
}
|
}
|
||||||
|
|
||||||
func pidFromFile(file string) (int, error) {
|
func pidFromFile(file string) (int, error) {
|
||||||
|
@ -90,13 +117,24 @@ func pidFromFile(file string) (int, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func pidFromExe(exe string) (int, error) {
|
func pidsFromExe(exe string) ([]int32, error) {
|
||||||
pidString, err := exec.Command("pgrep", exe).Output()
|
var out []int32
|
||||||
|
var outerr error
|
||||||
|
pgrep, err := exec.Command("pgrep", exe).Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return -1, fmt.Errorf("Failed to execute pgrep. Error: '%s'", err)
|
return out, fmt.Errorf("Failed to execute pgrep. Error: '%s'", err)
|
||||||
} else {
|
} else {
|
||||||
return strconv.Atoi(strings.TrimSpace(string(pidString)))
|
pids := strings.Fields(string(pgrep))
|
||||||
|
for _, pid := range pids {
|
||||||
|
ipid, err := strconv.Atoi(pid)
|
||||||
|
if err == nil {
|
||||||
|
out = append(out, int32(ipid))
|
||||||
|
} else {
|
||||||
|
outerr = err
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
return out, outerr
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -17,7 +17,13 @@ type SpecProcessor struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *SpecProcessor) add(metric string, value interface{}) {
|
func (p *SpecProcessor) add(metric string, value interface{}) {
|
||||||
p.acc.Add(p.Prefix+"_"+metric, value, p.tags)
|
var mname string
|
||||||
|
if p.Prefix == "" {
|
||||||
|
mname = metric
|
||||||
|
} else {
|
||||||
|
mname = p.Prefix + "_" + metric
|
||||||
|
}
|
||||||
|
p.acc.Add(mname, value, p.tags)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewSpecProcessor(
|
func NewSpecProcessor(
|
||||||
|
@ -27,6 +33,9 @@ func NewSpecProcessor(
|
||||||
) *SpecProcessor {
|
) *SpecProcessor {
|
||||||
tags := make(map[string]string)
|
tags := make(map[string]string)
|
||||||
tags["pid"] = fmt.Sprintf("%v", p.Pid)
|
tags["pid"] = fmt.Sprintf("%v", p.Pid)
|
||||||
|
if name, err := p.Name(); err == nil {
|
||||||
|
tags["name"] = name
|
||||||
|
}
|
||||||
return &SpecProcessor{
|
return &SpecProcessor{
|
||||||
Prefix: prefix,
|
Prefix: prefix,
|
||||||
tags: tags,
|
tags: tags,
|
||||||
|
@ -35,23 +44,22 @@ func NewSpecProcessor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *SpecProcessor) pushMetrics() error {
|
func (p *SpecProcessor) pushMetrics() {
|
||||||
if err := p.pushFDStats(); err != nil {
|
if err := p.pushFDStats(); err != nil {
|
||||||
log.Printf(err.Error())
|
log.Printf("procstat, fd stats not available: %s", err.Error())
|
||||||
}
|
}
|
||||||
if err := p.pushCtxStats(); err != nil {
|
if err := p.pushCtxStats(); err != nil {
|
||||||
log.Printf(err.Error())
|
log.Printf("procstat, ctx stats not available: %s", err.Error())
|
||||||
}
|
}
|
||||||
if err := p.pushIOStats(); err != nil {
|
if err := p.pushIOStats(); err != nil {
|
||||||
log.Printf(err.Error())
|
log.Printf("procstat, io stats not available: %s", err.Error())
|
||||||
}
|
}
|
||||||
if err := p.pushCPUStats(); err != nil {
|
if err := p.pushCPUStats(); err != nil {
|
||||||
log.Printf(err.Error())
|
log.Printf("procstat, cpu stats not available: %s", err.Error())
|
||||||
}
|
}
|
||||||
if err := p.pushMemoryStats(); err != nil {
|
if err := p.pushMemoryStats(); err != nil {
|
||||||
log.Printf(err.Error())
|
log.Printf("procstat, mem stats not available: %s", err.Error())
|
||||||
}
|
}
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *SpecProcessor) pushFDStats() error {
|
func (p *SpecProcessor) pushFDStats() error {
|
||||||
|
|
Loading…
Reference in New Issue