fixed spelling mistake -- memoory -> memory

This commit is contained in:
Tyler Nisonoff 2015-06-27 12:56:27 -07:00
parent 86a6f337f6
commit 815e9534b8
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ func Gather(acc plugins.Accumulator) error {
}
acc.Add("cpu", process.CPUTime, tags)
acc.Add("memoory", process.MemoryBytes, tags)
acc.Add("memory", process.MemoryBytes, tags)
}
}
```