2022-05-13 13:28:54 -05:00
|
|
|
package querydata_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
|
|
"github.com/grafana/grafana/pkg/tsdb/prometheus/models"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// when memory-profiling this benchmark, these commands are recommended:
|
|
|
|
// - go test -benchmem -run=^$ -benchtime 1x -memprofile memprofile.out -memprofilerate 1 -bench ^BenchmarkJson$ github.com/grafana/grafana/pkg/tsdb/prometheus
|
|
|
|
// - go tool pprof -http=localhost:6061 memprofile.out
|
|
|
|
func BenchmarkJson(b *testing.B) {
|
|
|
|
body, q := createJsonTestData(1642000000, 1, 300, 400)
|
2022-05-24 15:17:11 -05:00
|
|
|
tCtx := setup(true)
|
2022-05-13 13:28:54 -05:00
|
|
|
b.ResetTimer()
|
|
|
|
for n := 0; n < b.N; n++ {
|
|
|
|
res := http.Response{
|
|
|
|
StatusCode: 200,
|
|
|
|
Body: ioutil.NopCloser(bytes.NewReader(body)),
|
|
|
|
}
|
|
|
|
tCtx.httpProvider.setResponse(&res)
|
|
|
|
_, err := tCtx.queryData.Execute(context.Background(), q)
|
|
|
|
require.NoError(b, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const nanRate = 0.002
|
|
|
|
|
|
|
|
// we build the JSON file from strings,
|
|
|
|
// it was easier to write it this way.
|
|
|
|
func makeJsonTestMetric(index int) string {
|
|
|
|
return fmt.Sprintf(`{"server":"main","category":"maintenance","case":"%v"}`, index)
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a value between -100 and +100, sometimes NaN, in string
|
|
|
|
func makeJsonTestValue(r *rand.Rand) string {
|
|
|
|
if r.Float64() < nanRate {
|
|
|
|
return "NaN"
|
|
|
|
} else {
|
|
|
|
return fmt.Sprintf("%f", (r.Float64()*200)-100)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create one time-series
|
|
|
|
func makeJsonTestSeries(start int64, step int64, timestampCount int, r *rand.Rand, seriesIndex int) string {
|
|
|
|
var values []string
|
|
|
|
for i := 0; i < timestampCount; i++ {
|
2022-05-25 22:32:55 -05:00
|
|
|
// create out of order timestamps to test sorting
|
|
|
|
if seriesIndex == 0 && i%2 == 0 {
|
|
|
|
continue
|
|
|
|
}
|
2022-05-13 13:28:54 -05:00
|
|
|
value := fmt.Sprintf(`[%d,"%v"]`, start+(int64(i)*step), makeJsonTestValue(r))
|
|
|
|
values = append(values, value)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf(`{"metric":%v,"values":[%v]}`, makeJsonTestMetric(seriesIndex), strings.Join(values, ","))
|
|
|
|
}
|
|
|
|
|
|
|
|
func createJsonTestData(start int64, step int64, timestampCount int, seriesCount int) ([]byte, *backend.QueryDataRequest) {
|
|
|
|
// we use random numbers as values, but they have to be the same numbers
|
|
|
|
// every time we call this, so we create a random source.
|
|
|
|
r := rand.New(rand.NewSource(42))
|
|
|
|
var allSeries []string
|
|
|
|
for i := 0; i < seriesCount; i++ {
|
|
|
|
allSeries = append(allSeries, makeJsonTestSeries(start, step, timestampCount, r, i))
|
|
|
|
}
|
|
|
|
bytes := []byte(fmt.Sprintf(`{"status":"success","data":{"resultType":"matrix","result":[%v]}}`, strings.Join(allSeries, ",")))
|
|
|
|
|
|
|
|
qm := models.QueryModel{
|
|
|
|
RangeQuery: true,
|
|
|
|
Expr: "test",
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := json.Marshal(&qm)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res := backend.QueryDataRequest{
|
|
|
|
Queries: []backend.DataQuery{
|
|
|
|
{
|
|
|
|
RefID: "A",
|
|
|
|
TimeRange: backend.TimeRange{
|
|
|
|
From: time.Unix(start, 0),
|
|
|
|
To: time.Unix(start+((int64(timestampCount)-1)*step), 0),
|
|
|
|
},
|
|
|
|
Interval: time.Second * time.Duration(step),
|
|
|
|
JSON: data,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return bytes, &res
|
|
|
|
}
|