Add wired field to mem input (#3632)

This commit is contained in:
Daniel Nelson 2018-01-02 16:37:11 -08:00 committed by GitHub
parent 2f7906d5b9
commit b657480a1b
3 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,7 @@ For a more complete explanation of the difference between *used* and
- used (int)
- available_percent (float)
- used_percent (float)
- wired (int)
### Example Output:
```

View File

@ -32,6 +32,7 @@ func (s *MemStats) Gather(acc telegraf.Accumulator) error {
"buffered": vm.Buffers,
"active": vm.Active,
"inactive": vm.Inactive,
"wired": vm.Wired,
"slab": vm.Slab,
"used_percent": 100 * float64(vm.Used) / float64(vm.Total),
"available_percent": 100 * float64(vm.Available) / float64(vm.Total),

View File

@ -22,9 +22,9 @@ func TestMemStats(t *testing.T) {
Active: 8134,
Inactive: 1124,
Slab: 1234,
Wired: 134,
// Buffers: 771,
// Cached: 4312,
// Wired: 134,
// Shared: 2142,
}
@ -55,6 +55,7 @@ func TestMemStats(t *testing.T) {
"buffered": uint64(0),
"active": uint64(8134),
"inactive": uint64(1124),
"wired": uint64(134),
"slab": uint64(1234),
}
acc.AssertContainsTaggedFields(t, "mem", memfields, make(map[string]string))