mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 14:52:26 +08:00
74 lines
2.3 KiB
Go
74 lines
2.3 KiB
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/storage/unified/resource"
|
|
"github.com/grafana/grafana/pkg/storage/unified/resourcepb"
|
|
"github.com/grafana/grafana/pkg/storage/unified/sql/db"
|
|
"github.com/grafana/grafana/pkg/storage/unified/sql/dbutil"
|
|
"github.com/grafana/grafana/pkg/storage/unified/sql/sqltemplate"
|
|
)
|
|
|
|
// Support using SQL as fallback when the indexer is not running
|
|
var _ resourcepb.ResourceIndexServer = &backend{}
|
|
|
|
// GetStats implements resource.ResourceIndexServer.
|
|
// This will use the SQL index to count values
|
|
func (b *backend) GetStats(ctx context.Context, req *resourcepb.ResourceStatsRequest) (*resourcepb.ResourceStatsResponse, error) {
|
|
ctx, span := b.tracer.Start(ctx, tracePrefix+"GetStats")
|
|
defer span.End()
|
|
|
|
sreq := &sqlStatsRequest{
|
|
SQLTemplate: sqltemplate.New(b.dialect),
|
|
Namespace: req.Namespace,
|
|
Folder: req.Folder,
|
|
}
|
|
|
|
rsp := &resourcepb.ResourceStatsResponse{}
|
|
err := b.db.WithTx(ctx, ReadCommittedRO, func(ctx context.Context, tx db.Tx) error {
|
|
rows, err := dbutil.QueryRows(ctx, tx, sqlResourceStats, sreq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for rows.Next() {
|
|
row := resource.ResourceStats{}
|
|
err = rows.Scan(&row.Namespace, &row.Group, &row.Resource, &row.Count, &row.ResourceVersion)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rsp.Stats = append(rsp.Stats, &resourcepb.ResourceStatsResponse_Stats{
|
|
Group: row.Group,
|
|
Resource: row.Resource,
|
|
Count: row.Count,
|
|
})
|
|
}
|
|
return err
|
|
})
|
|
if err != nil {
|
|
rsp.Error = resource.AsErrorResult(err)
|
|
}
|
|
return rsp, nil
|
|
}
|
|
|
|
func (b *backend) RepositoryList(ctx context.Context, req *resourcepb.ListManagedObjectsRequest) (*resourcepb.ListManagedObjectsResponse, error) {
|
|
return nil, fmt.Errorf("SQL backend does not implement RepositoryList")
|
|
}
|
|
|
|
func (b *backend) RepositoryStats(context.Context, *resourcepb.CountManagedObjectsRequest) (*resourcepb.CountManagedObjectsResponse, error) {
|
|
return nil, fmt.Errorf("SQL backend does not implement RepositoryStats")
|
|
}
|
|
|
|
// Search implements resource.ResourceIndexServer.
|
|
func (b *backend) Search(context.Context, *resourcepb.ResourceSearchRequest) (*resourcepb.ResourceSearchResponse, error) {
|
|
return &resourcepb.ResourceSearchResponse{
|
|
Error: &resourcepb.ErrorResult{
|
|
Code: http.StatusNotImplemented,
|
|
Message: "SQL backend does not implement Search",
|
|
},
|
|
}, nil
|
|
}
|