mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
6d64c603c2
* Expr: fix failure to execute due to OrgID Get orgID from the plugin context, which makes more sense anyways. makes expressions work again after https://github.com/grafana/grafana/pull/29449 changes. * Do not save organisation on its alert query model Co-authored-by: Sofia Papagiannaki <sofia@grafana.com>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package expr
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
)
|
|
|
|
// DatasourceName is the string constant used as the datasource name in requests
|
|
// to identify it as an expression command.
|
|
const DatasourceName = "__expr__"
|
|
|
|
// DatasourceID is the fake datasource id used in requests to identify it as an
|
|
// expression command.
|
|
const DatasourceID = -100
|
|
|
|
// Service is service representation for expression handling.
|
|
type Service struct {
|
|
}
|
|
|
|
// BuildPipeline builds a pipeline from a request.
|
|
func (s *Service) BuildPipeline(req *backend.QueryDataRequest) (DataPipeline, error) {
|
|
return buildPipeline(req)
|
|
}
|
|
|
|
// ExecutePipeline executes an expression pipeline and returns all the results.
|
|
func (s *Service) ExecutePipeline(ctx context.Context, pipeline DataPipeline) (*backend.QueryDataResponse, error) {
|
|
res := backend.NewQueryDataResponse()
|
|
vars, err := pipeline.execute(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for refID, val := range vars {
|
|
res.Responses[refID] = backend.DataResponse{
|
|
Frames: val.Values.AsDataFrames(refID),
|
|
}
|
|
}
|
|
return res, nil
|
|
}
|