2017-01-14 15:39:04 +00:00
|
|
|
package textparse
|
|
|
|
|
|
|
|
import (
|
2017-01-15 12:55:53 +00:00
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"io"
|
2017-01-14 15:39:04 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
"github.com/prometheus/common/expfmt"
|
|
|
|
"github.com/prometheus/common/model"
|
2017-01-14 15:39:04 +00:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2017-01-14 18:30:19 +00:00
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
input := `# HELP go_gc_duration_seconds A summary of the GC invocation durations.
|
|
|
|
# TYPE go_gc_duration_seconds summary
|
|
|
|
go_gc_duration_seconds{quantile="0"} 4.9351e-05
|
|
|
|
go_gc_duration_seconds{quantile="0.25"} 7.424100000000001e-05
|
|
|
|
go_gc_duration_seconds{quantile="0.5",a="b"} 8.3835e-05
|
|
|
|
go_gc_duration_seconds_count 99
|
|
|
|
# HELP go_goroutines Number of goroutines that currently exist.
|
|
|
|
# TYPE go_goroutines gauge
|
|
|
|
go_goroutines 33`
|
|
|
|
|
|
|
|
exp := []struct {
|
|
|
|
lset labels.Labels
|
|
|
|
m string
|
|
|
|
v float64
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
m: `go_gc_duration_seconds{quantile="0"}`,
|
|
|
|
v: 4.9351e-05,
|
|
|
|
lset: labels.FromStrings("__name__", "go_gc_duration_seconds", "quantile", "0"),
|
|
|
|
}, {
|
|
|
|
m: `go_gc_duration_seconds{quantile="0.25"}`,
|
|
|
|
v: 7.424100000000001e-05,
|
|
|
|
lset: labels.FromStrings("__name__", "go_gc_duration_seconds", "quantile", "0.25"),
|
|
|
|
}, {
|
|
|
|
m: `go_gc_duration_seconds{quantile="0.5",a="b"}`,
|
|
|
|
v: 8.3835e-05,
|
|
|
|
lset: labels.FromStrings("__name__", "go_gc_duration_seconds", "quantile", "0.5", "a", "b"),
|
|
|
|
}, {
|
|
|
|
m: `go_gc_duration_seconds_count`,
|
|
|
|
v: 99,
|
|
|
|
lset: labels.FromStrings("__name__", "go_gc_duration_seconds_count"),
|
|
|
|
}, {
|
|
|
|
m: `go_goroutines`,
|
|
|
|
v: 33,
|
|
|
|
lset: labels.FromStrings("__name__", "go_goroutines"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
p := New([]byte(input))
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
var res labels.Labels
|
|
|
|
|
|
|
|
for p.Next() {
|
|
|
|
m, _, v := p.At()
|
|
|
|
|
|
|
|
p.Metric(&res)
|
|
|
|
|
|
|
|
require.Equal(t, exp[i].m, string(m))
|
|
|
|
require.Equal(t, exp[i].v, v)
|
|
|
|
require.Equal(t, exp[i].lset, res)
|
|
|
|
|
|
|
|
i++
|
|
|
|
res = res[:0]
|
|
|
|
}
|
|
|
|
|
|
|
|
require.NoError(t, p.Err())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
const (
|
|
|
|
testdataSampleCount = 410
|
|
|
|
)
|
|
|
|
|
2017-01-14 15:39:04 +00:00
|
|
|
func BenchmarkParse(b *testing.B) {
|
2017-01-15 12:55:53 +00:00
|
|
|
for _, fn := range []string{"testdata.txt", "testdata.nometa.txt"} {
|
|
|
|
f, err := os.Open(fn)
|
|
|
|
require.NoError(b, err)
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
buf, err := ioutil.ReadAll(f)
|
|
|
|
require.NoError(b, err)
|
|
|
|
|
|
|
|
b.Run("no-decode-metric/"+fn, func(b *testing.B) {
|
|
|
|
total := 0
|
|
|
|
|
|
|
|
b.SetBytes(int64(len(buf) * (b.N / testdataSampleCount)))
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i += testdataSampleCount {
|
|
|
|
p := New(buf)
|
|
|
|
|
|
|
|
for p.Next() && i < b.N {
|
|
|
|
m, _, _ := p.At()
|
|
|
|
|
|
|
|
total += len(m)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
require.NoError(b, p.Err())
|
|
|
|
}
|
|
|
|
_ = total
|
|
|
|
})
|
|
|
|
b.Run("decode-metric/"+fn, func(b *testing.B) {
|
|
|
|
total := 0
|
|
|
|
|
|
|
|
b.SetBytes(int64(len(buf) * (b.N / testdataSampleCount)))
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i += testdataSampleCount {
|
|
|
|
p := New(buf)
|
|
|
|
|
|
|
|
for p.Next() && i < b.N {
|
|
|
|
m, _, _ := p.At()
|
|
|
|
|
|
|
|
res := make(labels.Labels, 0, 5)
|
|
|
|
p.Metric(&res)
|
|
|
|
|
|
|
|
total += len(m)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
require.NoError(b, p.Err())
|
|
|
|
}
|
|
|
|
_ = total
|
|
|
|
})
|
|
|
|
b.Run("decode-metric-reuse/"+fn, func(b *testing.B) {
|
|
|
|
total := 0
|
|
|
|
res := make(labels.Labels, 0, 5)
|
|
|
|
|
|
|
|
b.SetBytes(int64(len(buf) * (b.N / testdataSampleCount)))
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i += testdataSampleCount {
|
|
|
|
p := New(buf)
|
|
|
|
|
|
|
|
for p.Next() && i < b.N {
|
|
|
|
m, _, _ := p.At()
|
|
|
|
|
|
|
|
p.Metric(&res)
|
|
|
|
|
|
|
|
total += len(m)
|
|
|
|
i++
|
|
|
|
res = res[:0]
|
|
|
|
}
|
|
|
|
require.NoError(b, p.Err())
|
|
|
|
}
|
|
|
|
_ = total
|
|
|
|
})
|
|
|
|
b.Run("expfmt-text/"+fn, func(b *testing.B) {
|
|
|
|
b.SetBytes(int64(len(buf) * (b.N / testdataSampleCount)))
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
total := 0
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i += testdataSampleCount {
|
|
|
|
var (
|
|
|
|
decSamples = make(model.Vector, 0, 50)
|
|
|
|
)
|
|
|
|
sdec := expfmt.SampleDecoder{
|
|
|
|
Dec: expfmt.NewDecoder(bytes.NewReader(buf), expfmt.FmtText),
|
|
|
|
Opts: &expfmt.DecodeOptions{
|
|
|
|
Timestamp: model.TimeFromUnixNano(0),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
if err = sdec.Decode(&decSamples); err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
total += len(decSamples)
|
|
|
|
decSamples = decSamples[:0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ = total
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
func BenchmarkGzip(b *testing.B) {
|
|
|
|
for _, fn := range []string{"testdata.txt", "testdata.nometa.txt"} {
|
|
|
|
b.Run(fn, func(b *testing.B) {
|
|
|
|
f, err := os.Open(fn)
|
|
|
|
require.NoError(b, err)
|
|
|
|
defer f.Close()
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
var buf bytes.Buffer
|
|
|
|
gw := gzip.NewWriter(&buf)
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
n, err := io.Copy(gw, f)
|
|
|
|
require.NoError(b, err)
|
|
|
|
require.NoError(b, gw.Close())
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
gbuf, err := ioutil.ReadAll(&buf)
|
|
|
|
require.NoError(b, err)
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
k := b.N / testdataSampleCount
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
b.ReportAllocs()
|
|
|
|
b.SetBytes(int64(k) * int64(n))
|
|
|
|
b.ResetTimer()
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
total := 0
|
2017-01-14 15:39:04 +00:00
|
|
|
|
2017-01-15 12:55:53 +00:00
|
|
|
for i := 0; i < k; i++ {
|
|
|
|
gr, err := gzip.NewReader(bytes.NewReader(gbuf))
|
|
|
|
require.NoError(b, err)
|
|
|
|
|
|
|
|
d, err := ioutil.ReadAll(gr)
|
|
|
|
require.NoError(b, err)
|
|
|
|
require.NoError(b, gr.Close())
|
|
|
|
|
|
|
|
total += len(d)
|
|
|
|
}
|
|
|
|
_ = total
|
|
|
|
})
|
2017-01-14 15:39:04 +00:00
|
|
|
}
|
|
|
|
}
|