mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
25 lines
511 B
Go
25 lines
511 B
Go
package graphite
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkRowsUnmarshal(b *testing.B) {
|
|
s := `cpu.usage_user 1.23 1234556768
|
|
cpu.usage_system 23.344 1234556768
|
|
cpu.usage_iowait 3.3443 1234556769
|
|
cpu.usage_irq 0.34432 1234556768
|
|
`
|
|
b.SetBytes(int64(len(s)))
|
|
b.ReportAllocs()
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
var rows Rows
|
|
for pb.Next() {
|
|
rows.Unmarshal(s)
|
|
if len(rows.Rows) != 4 {
|
|
panic(fmt.Errorf("unexpected number of rows unmarshaled: got %d; want 4", len(rows.Rows)))
|
|
}
|
|
}
|
|
})
|
|
}
|