mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package testdata
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/log"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
)
|
|
|
|
type TestDataExecutor struct {
|
|
*models.DataSource
|
|
log log.Logger
|
|
}
|
|
|
|
func NewTestDataExecutor(dsInfo *models.DataSource) (tsdb.TsdbQueryEndpoint, error) {
|
|
return &TestDataExecutor{
|
|
DataSource: dsInfo,
|
|
log: log.New("tsdb.testdata"),
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
tsdb.RegisterTsdbQueryEndpoint("grafana-testdata-datasource", NewTestDataExecutor)
|
|
}
|
|
|
|
func (e *TestDataExecutor) Query(ctx context.Context, dsInfo *models.DataSource, context *tsdb.TsdbQuery) *tsdb.BatchResult {
|
|
result := &tsdb.BatchResult{}
|
|
result.QueryResults = make(map[string]*tsdb.QueryResult)
|
|
|
|
for _, query := range context.Queries {
|
|
scenarioId := query.Model.Get("scenarioId").MustString("random_walk")
|
|
if scenario, exist := ScenarioRegistry[scenarioId]; exist {
|
|
result.QueryResults[query.RefId] = scenario.Handler(query, context)
|
|
result.QueryResults[query.RefId].RefId = query.RefId
|
|
} else {
|
|
e.log.Error("Scenario not found", "scenarioId", scenarioId)
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|