Remove non-existent 'stolen' cpu stat, fix measurement names

This commit is contained in:
Cameron Sparr
2015-09-17 12:23:33 -07:00
parent df651ab98e
commit df15e7b379
4 changed files with 47 additions and 57 deletions

View File

@@ -42,8 +42,7 @@ func (s *DockerStats) Gather(acc plugins.Accumulator) error {
acc.Add("softirq", cts.Softirq, tags)
acc.Add("steal", cts.Steal, tags)
acc.Add("guest", cts.Guest, tags)
acc.Add("guestNice", cts.GuestNice, tags)
acc.Add("stolen", cts.Stolen, tags)
acc.Add("guest_nice", cts.GuestNice, tags)
acc.Add("cache", cont.Mem.Cache, tags)
acc.Add("rss", cont.Mem.RSS, tags)