mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
c22905f864
* Use Dataframes and extract tags from response * Fix timestamp conversion * Add tests for data frame conversion * Add missing RefID and simplify returning an error * draft dataframe/sdk convertion for graphite * intermedia * modify init because registration failed * Allocate memory for each data point value * Remove redundant memory aliasing * Remove redundant new line * Sort imports * Simplify returning nil values * fix lint * remove unused jsondata * add checks on query length * remove basic auth from request Co-authored-by: Piotr Jamróz <pm.jamroz@gmail.com>
93 lines
3.3 KiB
Go
93 lines
3.3 KiB
Go
package tsdb
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/httpclient"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
"github.com/grafana/grafana/pkg/plugins/backendplugin"
|
|
"github.com/grafana/grafana/pkg/registry"
|
|
"github.com/grafana/grafana/pkg/services/oauthtoken"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/tsdb/azuremonitor"
|
|
"github.com/grafana/grafana/pkg/tsdb/cloudmonitoring"
|
|
"github.com/grafana/grafana/pkg/tsdb/elasticsearch"
|
|
"github.com/grafana/grafana/pkg/tsdb/influxdb"
|
|
"github.com/grafana/grafana/pkg/tsdb/loki"
|
|
"github.com/grafana/grafana/pkg/tsdb/mssql"
|
|
"github.com/grafana/grafana/pkg/tsdb/mysql"
|
|
"github.com/grafana/grafana/pkg/tsdb/postgres"
|
|
"github.com/grafana/grafana/pkg/tsdb/prometheus"
|
|
"github.com/grafana/grafana/pkg/tsdb/tempo"
|
|
)
|
|
|
|
// NewService returns a new Service.
|
|
func NewService() Service {
|
|
return Service{
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
registry: map[string]func(*models.DataSource) (plugins.DataPlugin, error){},
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
svc := NewService()
|
|
registry.Register(®istry.Descriptor{
|
|
Name: "DataService",
|
|
Instance: &svc,
|
|
})
|
|
}
|
|
|
|
// Service handles data requests to data sources.
|
|
type Service struct {
|
|
Cfg *setting.Cfg `inject:""`
|
|
PostgresService *postgres.PostgresService `inject:""`
|
|
CloudMonitoringService *cloudmonitoring.Service `inject:""`
|
|
AzureMonitorService *azuremonitor.Service `inject:""`
|
|
PluginManager plugins.Manager `inject:""`
|
|
BackendPluginManager backendplugin.Manager `inject:""`
|
|
HTTPClientProvider httpclient.Provider `inject:""`
|
|
OAuthTokenService *oauthtoken.Service `inject:""`
|
|
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
registry map[string]func(*models.DataSource) (plugins.DataPlugin, error)
|
|
}
|
|
|
|
// Init initialises the service.
|
|
func (s *Service) Init() error {
|
|
s.registry["prometheus"] = prometheus.New(s.HTTPClientProvider)
|
|
s.registry["influxdb"] = influxdb.New(s.HTTPClientProvider)
|
|
s.registry["mssql"] = mssql.NewExecutor
|
|
s.registry["postgres"] = s.PostgresService.NewExecutor
|
|
s.registry["mysql"] = mysql.New(s.HTTPClientProvider)
|
|
s.registry["elasticsearch"] = elasticsearch.New(s.HTTPClientProvider)
|
|
s.registry["stackdriver"] = s.CloudMonitoringService.NewExecutor
|
|
s.registry["loki"] = loki.New(s.HTTPClientProvider)
|
|
s.registry["tempo"] = tempo.New(s.HTTPClientProvider)
|
|
return nil
|
|
}
|
|
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
func (s *Service) HandleRequest(ctx context.Context, ds *models.DataSource, query plugins.DataQuery) (plugins.DataResponse, error) {
|
|
if factory, exists := s.registry[ds.Type]; exists {
|
|
var err error
|
|
plugin, err := factory(ds)
|
|
if err != nil {
|
|
return plugins.DataResponse{}, fmt.Errorf("could not instantiate endpoint for data plugin %q: %w",
|
|
ds.Type, err)
|
|
}
|
|
|
|
return plugin.DataQuery(ctx, ds, query)
|
|
}
|
|
|
|
return dataPluginQueryAdapter(ds.Type, s.BackendPluginManager, s.OAuthTokenService).DataQuery(ctx, ds, query)
|
|
}
|
|
|
|
// RegisterQueryHandler registers a query handler factory.
|
|
// This is only exposed for tests!
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
func (s *Service) RegisterQueryHandler(name string, factory func(*models.DataSource) (plugins.DataPlugin, error)) {
|
|
s.registry[name] = factory
|
|
}
|