mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
37 lines
1.2 KiB
Go
37 lines
1.2 KiB
Go
package metricdata
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ClusterCockpit/cc-backend/schema"
|
|
)
|
|
|
|
var TestLoadDataCallback func(job *schema.Job, metrics []string, scopes []schema.MetricScope, ctx context.Context) (schema.JobData, error) = func(job *schema.Job, metrics []string, scopes []schema.MetricScope, ctx context.Context) (schema.JobData, error) {
|
|
panic("TODO")
|
|
}
|
|
|
|
// Only a mock for unit-testing.
|
|
type TestMetricDataRepository struct {
|
|
url, token string
|
|
renamings map[string]string
|
|
}
|
|
|
|
func (tmdr *TestMetricDataRepository) Init(url, token string, renamings map[string]string) error {
|
|
tmdr.url = url
|
|
tmdr.token = token
|
|
tmdr.renamings = renamings
|
|
return nil
|
|
}
|
|
|
|
func (tmdr *TestMetricDataRepository) LoadData(job *schema.Job, metrics []string, scopes []schema.MetricScope, ctx context.Context) (schema.JobData, error) {
|
|
return TestLoadDataCallback(job, metrics, scopes, ctx)
|
|
}
|
|
|
|
func (tmdr *TestMetricDataRepository) LoadStats(job *schema.Job, metrics []string, ctx context.Context) (map[string]map[string]schema.MetricStatistics, error) {
|
|
panic("TODO")
|
|
}
|
|
|
|
func (tmdr *TestMetricDataRepository) LoadNodeData(clusterId string, metrics, nodes []string, from, to int64, ctx context.Context) (map[string]map[string][]schema.Float, error) {
|
|
panic("TODO")
|
|
}
|