mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-05-17 08:36:55 +03:00
98 lines
1.8 KiB
Go
98 lines
1.8 KiB
Go
package prompb
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkWriteRequestUnmarshalProtobuf(b *testing.B) {
|
|
data := benchWriteRequest.MarshalProtobuf(nil)
|
|
|
|
b.ReportAllocs()
|
|
b.SetBytes(int64(len(benchWriteRequest.Timeseries)))
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
wru := &WriteRequestUnmarshaler{}
|
|
for pb.Next() {
|
|
if _, err := wru.UnmarshalProtobuf(data); err != nil {
|
|
panic(fmt.Errorf("unexpected error: %s", err))
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkWriteRequestMarshalProtobuf(b *testing.B) {
|
|
b.ReportAllocs()
|
|
b.SetBytes(int64(len(benchWriteRequest.Timeseries)))
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
var data []byte
|
|
for pb.Next() {
|
|
data = benchWriteRequest.MarshalProtobuf(data[:0])
|
|
}
|
|
})
|
|
}
|
|
|
|
var benchWriteRequest = func() *WriteRequest {
|
|
var tss []TimeSeries
|
|
for i := range 1_000 {
|
|
ts := TimeSeries{
|
|
Labels: []Label{
|
|
{
|
|
Name: "__name__",
|
|
Value: "process_cpu_seconds_total",
|
|
},
|
|
{
|
|
Name: "instance",
|
|
Value: fmt.Sprintf("host-%d:4567", i),
|
|
},
|
|
{
|
|
Name: "job",
|
|
Value: "node-exporter",
|
|
},
|
|
{
|
|
Name: "pod",
|
|
Value: "foo-bar-pod-8983423843",
|
|
},
|
|
{
|
|
Name: "cpu",
|
|
Value: "1",
|
|
},
|
|
{
|
|
Name: "mode",
|
|
Value: "system",
|
|
},
|
|
{
|
|
Name: "node",
|
|
Value: "host-123",
|
|
},
|
|
{
|
|
Name: "namespace",
|
|
Value: "foo-bar-baz",
|
|
},
|
|
{
|
|
Name: "container",
|
|
Value: fmt.Sprintf("aaa-bb-cc-dd-ee-%d", i),
|
|
},
|
|
},
|
|
Samples: []Sample{
|
|
{
|
|
Value: float64(i),
|
|
Timestamp: 1e9 + int64(i)*1000,
|
|
},
|
|
},
|
|
}
|
|
tss = append(tss, ts)
|
|
}
|
|
wr := &WriteRequest{
|
|
Timeseries: tss,
|
|
Metadata: []MetricMetadata{
|
|
{
|
|
Type: 1,
|
|
MetricFamilyName: "process_cpu_seconds_total",
|
|
Help: "Total user and system CPU time spent in seconds",
|
|
Unit: "seconds",
|
|
},
|
|
},
|
|
}
|
|
return wr
|
|
}()
|