Add benchmark test for single metric

This commit is contained in:
Daniel Nelson
2017-12-08 13:23:08 -08:00
parent 574034c301
commit 4f42d8a298
+11
View File
@@ -241,6 +241,17 @@ func TestParseInvalidInflux(t *testing.T) {
}
func BenchmarkSingle(b *testing.B) {
parser := InfluxParser{}
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := parser.Parse([]byte("cpu value=42\n"))
if err != nil {
panic(err)
}
}
}
func BenchmarkParse(b *testing.B) {
var err error
parser := InfluxParser{}