| 123456789101112131415161718 |
- package tsdb
- import (
- "context"
- "github.com/grafana/grafana/pkg/models"
- )
- type HandleRequestFunc func(ctx context.Context, dsInfo *models.DataSource, req *TsdbQuery) (*Response, error)
- func HandleRequest(ctx context.Context, dsInfo *models.DataSource, req *TsdbQuery) (*Response, error) {
- endpoint, err := getTsdbQueryEndpointFor(dsInfo)
- if err != nil {
- return nil, err
- }
- return endpoint.Query(ctx, dsInfo, req)
- }
|