Remove flush_scope logic
This commit is contained in:
parent
ff7e0f117d
commit
80fa87f197
|
@ -41,7 +41,6 @@ All measurements have the following tags:
|
|||
|
||||
```
|
||||
# [[inputs.cgroup]]
|
||||
# flush_scope = 10 # optional (the fields will be divided into parts of 10 items)
|
||||
# paths = [
|
||||
# "/cgroup/memory", # root cgroup
|
||||
# "/cgroup/memory/child1", # container cgroup
|
||||
|
|
|
@ -20,7 +20,6 @@ const metricName = "cgroup"
|
|||
type CGroup struct {
|
||||
Paths []string `toml:"paths"`
|
||||
Files []string `toml:"fields"`
|
||||
FlushScope int `toml:"flush_scope"`
|
||||
}
|
||||
|
||||
var sampleConfig = `
|
||||
|
@ -83,31 +82,11 @@ func (g *CGroup) gatherDir(dir string, acc telegraf.Accumulator) error {
|
|||
|
||||
tags := map[string]string{"path": dir}
|
||||
|
||||
if g.FlushScope <= 0 {
|
||||
acc.AddFields(metricName, fields, tags)
|
||||
return nil
|
||||
}
|
||||
writeWithBatches(acc, fields, tags, g.FlushScope)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func writeWithBatches(acc telegraf.Accumulator, fields map[string]interface{}, tags map[string]string, scope int) {
|
||||
for len(fields) > 0 {
|
||||
batch := make(map[string]interface{})
|
||||
|
||||
for k, v := range fields {
|
||||
batch[k] = v
|
||||
delete(fields, k)
|
||||
if len(batch) == scope || len(fields) == 0 {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
acc.AddFields(metricName, batch, tags)
|
||||
}
|
||||
}
|
||||
|
||||
// ======================================================================
|
||||
|
||||
type pathInfo struct {
|
||||
|
|
Loading…
Reference in New Issue