mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-12-26 13:29:05 +01:00
Add metrics to histoselect, add userfilters
- edit struct to make only count return required
This commit is contained in:
parent
7d14086e54
commit
1185737eaa
@ -293,10 +293,10 @@ type MetricHistoPoints {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type MetricHistoPoint {
|
type MetricHistoPoint {
|
||||||
min: Int!
|
bin: Int
|
||||||
max: Int!
|
|
||||||
count: Int!
|
count: Int!
|
||||||
bin: Int!
|
min: Int
|
||||||
|
max: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
type JobsStatistics {
|
type JobsStatistics {
|
||||||
|
@ -1969,10 +1969,10 @@ type MetricHistoPoints {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type MetricHistoPoint {
|
type MetricHistoPoint {
|
||||||
min: Int!
|
bin: Int
|
||||||
max: Int!
|
|
||||||
count: Int!
|
count: Int!
|
||||||
bin: Int!
|
min: Int
|
||||||
|
max: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
type JobsStatistics {
|
type JobsStatistics {
|
||||||
@ -6336,8 +6336,8 @@ func (ec *executionContext) fieldContext_MetricFootprints_data(ctx context.Conte
|
|||||||
return fc, nil
|
return fc, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ec *executionContext) _MetricHistoPoint_min(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
func (ec *executionContext) _MetricHistoPoint_bin(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
||||||
fc, err := ec.fieldContext_MetricHistoPoint_min(ctx, field)
|
fc, err := ec.fieldContext_MetricHistoPoint_bin(ctx, field)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
@ -6350,68 +6350,21 @@ func (ec *executionContext) _MetricHistoPoint_min(ctx context.Context, field gra
|
|||||||
}()
|
}()
|
||||||
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
||||||
ctx = rctx // use context from middleware stack in children
|
ctx = rctx // use context from middleware stack in children
|
||||||
return obj.Min, nil
|
return obj.Bin, nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ec.Error(ctx, err)
|
ec.Error(ctx, err)
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
if resTmp == nil {
|
if resTmp == nil {
|
||||||
if !graphql.HasFieldError(ctx, fc) {
|
|
||||||
ec.Errorf(ctx, "must not be null")
|
|
||||||
}
|
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
res := resTmp.(int)
|
res := resTmp.(*int)
|
||||||
fc.Result = res
|
fc.Result = res
|
||||||
return ec.marshalNInt2int(ctx, field.Selections, res)
|
return ec.marshalOInt2ᚖint(ctx, field.Selections, res)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ec *executionContext) fieldContext_MetricHistoPoint_min(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
func (ec *executionContext) fieldContext_MetricHistoPoint_bin(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
fc = &graphql.FieldContext{
|
|
||||||
Object: "MetricHistoPoint",
|
|
||||||
Field: field,
|
|
||||||
IsMethod: false,
|
|
||||||
IsResolver: false,
|
|
||||||
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
|
||||||
return nil, errors.New("field of type Int does not have child fields")
|
|
||||||
},
|
|
||||||
}
|
|
||||||
return fc, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ec *executionContext) _MetricHistoPoint_max(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
|
||||||
fc, err := ec.fieldContext_MetricHistoPoint_max(ctx, field)
|
|
||||||
if err != nil {
|
|
||||||
return graphql.Null
|
|
||||||
}
|
|
||||||
ctx = graphql.WithFieldContext(ctx, fc)
|
|
||||||
defer func() {
|
|
||||||
if r := recover(); r != nil {
|
|
||||||
ec.Error(ctx, ec.Recover(ctx, r))
|
|
||||||
ret = graphql.Null
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
|
||||||
ctx = rctx // use context from middleware stack in children
|
|
||||||
return obj.Max, nil
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
ec.Error(ctx, err)
|
|
||||||
return graphql.Null
|
|
||||||
}
|
|
||||||
if resTmp == nil {
|
|
||||||
if !graphql.HasFieldError(ctx, fc) {
|
|
||||||
ec.Errorf(ctx, "must not be null")
|
|
||||||
}
|
|
||||||
return graphql.Null
|
|
||||||
}
|
|
||||||
res := resTmp.(int)
|
|
||||||
fc.Result = res
|
|
||||||
return ec.marshalNInt2int(ctx, field.Selections, res)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ec *executionContext) fieldContext_MetricHistoPoint_max(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
|
||||||
fc = &graphql.FieldContext{
|
fc = &graphql.FieldContext{
|
||||||
Object: "MetricHistoPoint",
|
Object: "MetricHistoPoint",
|
||||||
Field: field,
|
Field: field,
|
||||||
@ -6468,8 +6421,8 @@ func (ec *executionContext) fieldContext_MetricHistoPoint_count(ctx context.Cont
|
|||||||
return fc, nil
|
return fc, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ec *executionContext) _MetricHistoPoint_bin(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
func (ec *executionContext) _MetricHistoPoint_min(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
||||||
fc, err := ec.fieldContext_MetricHistoPoint_bin(ctx, field)
|
fc, err := ec.fieldContext_MetricHistoPoint_min(ctx, field)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
@ -6482,24 +6435,62 @@ func (ec *executionContext) _MetricHistoPoint_bin(ctx context.Context, field gra
|
|||||||
}()
|
}()
|
||||||
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
||||||
ctx = rctx // use context from middleware stack in children
|
ctx = rctx // use context from middleware stack in children
|
||||||
return obj.Bin, nil
|
return obj.Min, nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ec.Error(ctx, err)
|
ec.Error(ctx, err)
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
if resTmp == nil {
|
if resTmp == nil {
|
||||||
if !graphql.HasFieldError(ctx, fc) {
|
|
||||||
ec.Errorf(ctx, "must not be null")
|
|
||||||
}
|
|
||||||
return graphql.Null
|
return graphql.Null
|
||||||
}
|
}
|
||||||
res := resTmp.(int)
|
res := resTmp.(*int)
|
||||||
fc.Result = res
|
fc.Result = res
|
||||||
return ec.marshalNInt2int(ctx, field.Selections, res)
|
return ec.marshalOInt2ᚖint(ctx, field.Selections, res)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ec *executionContext) fieldContext_MetricHistoPoint_bin(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
func (ec *executionContext) fieldContext_MetricHistoPoint_min(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "MetricHistoPoint",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
return nil, errors.New("field of type Int does not have child fields")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _MetricHistoPoint_max(ctx context.Context, field graphql.CollectedField, obj *model.MetricHistoPoint) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_MetricHistoPoint_max(ctx, field)
|
||||||
|
if err != nil {
|
||||||
|
return graphql.Null
|
||||||
|
}
|
||||||
|
ctx = graphql.WithFieldContext(ctx, fc)
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
ec.Error(ctx, ec.Recover(ctx, r))
|
||||||
|
ret = graphql.Null
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
|
||||||
|
ctx = rctx // use context from middleware stack in children
|
||||||
|
return obj.Max, nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
ec.Error(ctx, err)
|
||||||
|
return graphql.Null
|
||||||
|
}
|
||||||
|
if resTmp == nil {
|
||||||
|
return graphql.Null
|
||||||
|
}
|
||||||
|
res := resTmp.(*int)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalOInt2ᚖint(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_MetricHistoPoint_max(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
fc = &graphql.FieldContext{
|
fc = &graphql.FieldContext{
|
||||||
Object: "MetricHistoPoint",
|
Object: "MetricHistoPoint",
|
||||||
Field: field,
|
Field: field,
|
||||||
@ -6636,14 +6627,14 @@ func (ec *executionContext) fieldContext_MetricHistoPoints_data(ctx context.Cont
|
|||||||
IsResolver: false,
|
IsResolver: false,
|
||||||
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
switch field.Name {
|
switch field.Name {
|
||||||
|
case "bin":
|
||||||
|
return ec.fieldContext_MetricHistoPoint_bin(ctx, field)
|
||||||
|
case "count":
|
||||||
|
return ec.fieldContext_MetricHistoPoint_count(ctx, field)
|
||||||
case "min":
|
case "min":
|
||||||
return ec.fieldContext_MetricHistoPoint_min(ctx, field)
|
return ec.fieldContext_MetricHistoPoint_min(ctx, field)
|
||||||
case "max":
|
case "max":
|
||||||
return ec.fieldContext_MetricHistoPoint_max(ctx, field)
|
return ec.fieldContext_MetricHistoPoint_max(ctx, field)
|
||||||
case "count":
|
|
||||||
return ec.fieldContext_MetricHistoPoint_count(ctx, field)
|
|
||||||
case "bin":
|
|
||||||
return ec.fieldContext_MetricHistoPoint_bin(ctx, field)
|
|
||||||
}
|
}
|
||||||
return nil, fmt.Errorf("no field named %q was found under type MetricHistoPoint", field.Name)
|
return nil, fmt.Errorf("no field named %q was found under type MetricHistoPoint", field.Name)
|
||||||
},
|
},
|
||||||
@ -13542,26 +13533,17 @@ func (ec *executionContext) _MetricHistoPoint(ctx context.Context, sel ast.Selec
|
|||||||
switch field.Name {
|
switch field.Name {
|
||||||
case "__typename":
|
case "__typename":
|
||||||
out.Values[i] = graphql.MarshalString("MetricHistoPoint")
|
out.Values[i] = graphql.MarshalString("MetricHistoPoint")
|
||||||
case "min":
|
case "bin":
|
||||||
out.Values[i] = ec._MetricHistoPoint_min(ctx, field, obj)
|
out.Values[i] = ec._MetricHistoPoint_bin(ctx, field, obj)
|
||||||
if out.Values[i] == graphql.Null {
|
|
||||||
out.Invalids++
|
|
||||||
}
|
|
||||||
case "max":
|
|
||||||
out.Values[i] = ec._MetricHistoPoint_max(ctx, field, obj)
|
|
||||||
if out.Values[i] == graphql.Null {
|
|
||||||
out.Invalids++
|
|
||||||
}
|
|
||||||
case "count":
|
case "count":
|
||||||
out.Values[i] = ec._MetricHistoPoint_count(ctx, field, obj)
|
out.Values[i] = ec._MetricHistoPoint_count(ctx, field, obj)
|
||||||
if out.Values[i] == graphql.Null {
|
if out.Values[i] == graphql.Null {
|
||||||
out.Invalids++
|
out.Invalids++
|
||||||
}
|
}
|
||||||
case "bin":
|
case "min":
|
||||||
out.Values[i] = ec._MetricHistoPoint_bin(ctx, field, obj)
|
out.Values[i] = ec._MetricHistoPoint_min(ctx, field, obj)
|
||||||
if out.Values[i] == graphql.Null {
|
case "max":
|
||||||
out.Invalids++
|
out.Values[i] = ec._MetricHistoPoint_max(ctx, field, obj)
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
panic("unknown field " + strconv.Quote(field.Name))
|
panic("unknown field " + strconv.Quote(field.Name))
|
||||||
}
|
}
|
||||||
|
@ -110,10 +110,10 @@ type MetricFootprints struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type MetricHistoPoint struct {
|
type MetricHistoPoint struct {
|
||||||
Min int `json:"min"`
|
Bin *int `json:"bin,omitempty"`
|
||||||
Max int `json:"max"`
|
|
||||||
Count int `json:"count"`
|
Count int `json:"count"`
|
||||||
Bin int `json:"bin"`
|
Min *int `json:"min,omitempty"`
|
||||||
|
Max *int `json:"max,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type MetricHistoPoints struct {
|
type MetricHistoPoints struct {
|
||||||
|
@ -96,7 +96,7 @@ func SecurityCheck(ctx context.Context, query sq.SelectBuilder) (sq.SelectBuilde
|
|||||||
user := GetUserFromContext(ctx)
|
user := GetUserFromContext(ctx)
|
||||||
if user == nil {
|
if user == nil {
|
||||||
var qnil sq.SelectBuilder
|
var qnil sq.SelectBuilder
|
||||||
return qnil, fmt.Errorf("user context is nil!")
|
return qnil, fmt.Errorf("user context is nil")
|
||||||
} else if user.HasAnyRole([]schema.Role{schema.RoleAdmin, schema.RoleSupport, schema.RoleApi}) { // Admin & Co. : All jobs
|
} else if user.HasAnyRole([]schema.Role{schema.RoleAdmin, schema.RoleSupport, schema.RoleApi}) { // Admin & Co. : All jobs
|
||||||
return query, nil
|
return query, nil
|
||||||
} else if user.HasRole(schema.RoleManager) { // Manager : Add filter for managed projects' jobs only + personal jobs
|
} else if user.HasRole(schema.RoleManager) { // Manager : Add filter for managed projects' jobs only + personal jobs
|
||||||
|
@ -460,13 +460,8 @@ func (r *JobRepository) AddMetricHistograms(
|
|||||||
stat *model.JobsStatistics) (*model.JobsStatistics, error) {
|
stat *model.JobsStatistics) (*model.JobsStatistics, error) {
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
|
|
||||||
for i, m := range metrics {
|
for _, m := range metrics {
|
||||||
// DEBUG
|
metricHisto, err := r.jobsMetricStatisticsHistogram(ctx, m, filter)
|
||||||
fmt.Println(i, m)
|
|
||||||
var err error
|
|
||||||
var metricHisto *model.MetricHistoPoints
|
|
||||||
|
|
||||||
metricHisto, err = r.jobsMetricStatisticsHistogram(ctx, m, filter)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("Error while loading job metric statistics histogram: %s", m)
|
log.Warnf("Error while loading job metric statistics histogram: %s", m)
|
||||||
continue
|
continue
|
||||||
@ -529,6 +524,12 @@ func (r *JobRepository) jobsMetricStatisticsHistogram(
|
|||||||
dbMetric = "flops_any_avg"
|
dbMetric = "flops_any_avg"
|
||||||
case "mem_bw":
|
case "mem_bw":
|
||||||
dbMetric = "mem_bw_avg"
|
dbMetric = "mem_bw_avg"
|
||||||
|
case "mem_used":
|
||||||
|
dbMetric = "mem_used_max"
|
||||||
|
case "net_bw":
|
||||||
|
dbMetric = "net_bw_avg"
|
||||||
|
case "file_bw":
|
||||||
|
dbMetric = "file_bw_avg"
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("%s not implemented", metric)
|
return nil, fmt.Errorf("%s not implemented", metric)
|
||||||
}
|
}
|
||||||
@ -562,46 +563,67 @@ func (r *JobRepository) jobsMetricStatisticsHistogram(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// log.Debugf("Metric %s: DB %s, Peak %f, Unit %s", metric, dbMetric, peak, unit)
|
||||||
// Make bins, see https://jereze.com/code/sql-histogram/
|
// Make bins, see https://jereze.com/code/sql-histogram/
|
||||||
// Diffs:
|
|
||||||
// CAST(X AS INTEGER) instead of floor(X), used also for for Min , Max selection
|
|
||||||
// renamed to bin for simplicity and model struct
|
|
||||||
// Ditched rename from job to data, as it conflicts with security check afterwards
|
|
||||||
start := time.Now()
|
|
||||||
prepQuery := sq.Select(
|
|
||||||
fmt.Sprintf(`CAST(min(job.%s) as INTEGER) as min`, dbMetric),
|
|
||||||
fmt.Sprintf(`CAST(max(job.%s) as INTEGER) as max`, dbMetric),
|
|
||||||
fmt.Sprintf(`count(job.%s) as count`, dbMetric),
|
|
||||||
fmt.Sprintf(`CAST((case when job.%s = value.max then value.max*0.999999999 else job.%s end - value.min) / (value.max - value.min) * 10 as INTEGER) +1 as bin`, dbMetric, dbMetric))
|
|
||||||
prepQuery = prepQuery.From("job")
|
|
||||||
prepQuery = prepQuery.CrossJoin(fmt.Sprintf(`(select max(%s) as max, min(%s) as min from job where %s is not null and %s < %f) as value`, dbMetric, dbMetric, dbMetric, dbMetric, peak))
|
|
||||||
prepQuery = prepQuery.Where(fmt.Sprintf(`job.%s is not null and job.%s < %f`, dbMetric, dbMetric, peak))
|
|
||||||
|
|
||||||
query, qerr := SecurityCheck(ctx, prepQuery)
|
start := time.Now()
|
||||||
|
|
||||||
|
crossJoinQuery := sq.Select(
|
||||||
|
fmt.Sprintf(`max(%s) as max`, dbMetric),
|
||||||
|
fmt.Sprintf(`min(%s) as min`, dbMetric),
|
||||||
|
).From("job").Where(
|
||||||
|
fmt.Sprintf(`%s is not null`, dbMetric),
|
||||||
|
).Where(
|
||||||
|
fmt.Sprintf(`%s <= %f`, dbMetric, peak),
|
||||||
|
)
|
||||||
|
|
||||||
|
crossJoinQuery, cjqerr := SecurityCheck(ctx, crossJoinQuery)
|
||||||
|
if cjqerr != nil {
|
||||||
|
return nil, cjqerr
|
||||||
|
}
|
||||||
|
|
||||||
|
crossJoinQuerySql, _, sqlerr := crossJoinQuery.ToSql()
|
||||||
|
if sqlerr != nil {
|
||||||
|
return nil, sqlerr
|
||||||
|
}
|
||||||
|
|
||||||
|
bins := 10
|
||||||
|
binQuery := fmt.Sprintf(`CAST( (case when job.%s = value.max then value.max*0.999999999 else job.%s end - value.min) / (value.max - value.min) * %d as INTEGER )`, dbMetric, dbMetric, bins)
|
||||||
|
|
||||||
|
mainQuery := sq.Select(
|
||||||
|
fmt.Sprintf(`%s + 1 as bin`, binQuery),
|
||||||
|
fmt.Sprintf(`count(job.%s) as count`, dbMetric),
|
||||||
|
fmt.Sprintf(`CAST(((value.max / %d) * (%s )) as INTEGER ) as min`, bins, binQuery),
|
||||||
|
fmt.Sprintf(`CAST(((value.max / %d) * (%s + 1 )) as INTEGER ) as max`, bins, binQuery),
|
||||||
|
).From("job").CrossJoin(
|
||||||
|
fmt.Sprintf(`(%s) as value`, crossJoinQuerySql),
|
||||||
|
).Where(fmt.Sprintf(`job.%s is not null and job.%s <= %f`, dbMetric, dbMetric, peak))
|
||||||
|
|
||||||
|
mainQuery, qerr := SecurityCheck(ctx, mainQuery)
|
||||||
|
|
||||||
if qerr != nil {
|
if qerr != nil {
|
||||||
return nil, qerr
|
return nil, qerr
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, f := range filters {
|
for _, f := range filters {
|
||||||
query = BuildWhereClause(f, query)
|
mainQuery = BuildWhereClause(f, mainQuery)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Finalize query with Grouping and Ordering
|
// Finalize query with Grouping and Ordering
|
||||||
query = query.GroupBy("bin").OrderBy("bin")
|
mainQuery = mainQuery.GroupBy("bin").OrderBy("bin")
|
||||||
|
|
||||||
rows, err := query.RunWith(r.DB).Query()
|
rows, err := mainQuery.RunWith(r.DB).Query()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("Error while running query: %s", err)
|
log.Errorf("Error while running mainQuery: %s", err)
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
points := make([]*model.MetricHistoPoint, 0)
|
points := make([]*model.MetricHistoPoint, 0)
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
point := model.MetricHistoPoint{}
|
point := model.MetricHistoPoint{}
|
||||||
if err := rows.Scan(&point.Min, &point.Max, &point.Count, &point.Bin); err != nil {
|
if err := rows.Scan(&point.Bin, &point.Count, &point.Min, &point.Max); err != nil {
|
||||||
log.Warn("Error while scanning rows")
|
log.Warnf("Error while scanning rows for %s", metric)
|
||||||
return nil, err
|
return nil, err // Totally bricks cc-backend if returned and if all metrics requested?
|
||||||
}
|
}
|
||||||
|
|
||||||
points = append(points, &point)
|
points = append(points, &point)
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
import { gql, getContextClient , mutationStore } from '@urql/svelte'
|
import { gql, getContextClient , mutationStore } from '@urql/svelte'
|
||||||
|
|
||||||
export let cluster
|
export let cluster
|
||||||
export let availableMetrics = ['cpu_load', 'flops_any', 'mem_bw']
|
|
||||||
export let metricsInHistograms
|
export let metricsInHistograms
|
||||||
export let isOpen
|
export let isOpen
|
||||||
|
|
||||||
|
let availableMetrics = ['cpu_load', 'flops_any', 'mem_used', 'mem_bw', 'net_bw', 'file_bw']
|
||||||
let pendingMetrics = [...metricsInHistograms] // Copy
|
let pendingMetrics = [...metricsInHistograms] // Copy
|
||||||
const client = getContextClient()
|
const client = getContextClient()
|
||||||
|
|
||||||
|
@ -316,16 +316,18 @@ export function checkMetricDisabled(m, c, s) { //[m]etric, [c]luster, [s]ubclust
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function convert2uplot(canvasData) {
|
export function convert2uplot(canvasData) {
|
||||||
// initial use: Canvas Histogram Data to Uplot
|
// Prep: Uplot Data Structure
|
||||||
let uplotData = [[],[]] // [X, Y1, Y2, ...]
|
let uplotData = [[],[]] // [X, Y1, Y2, ...]
|
||||||
canvasData.forEach( cd => {
|
// MetricHisto Only: Check if 1st bin not-null -> Set 0-Value bin for scaling
|
||||||
if (cd.bin) { // MetricHisto Datafromat
|
// Else: Only Single 0-Value bin returned -> No reset required
|
||||||
// Force Zero Entry for scaling
|
if (canvasData[0]?.bin) {
|
||||||
if (uplotData[0].length == 0) {
|
|
||||||
uplotData[0].push(0)
|
uplotData[0].push(0)
|
||||||
uplotData[1].push(0)
|
uplotData[1].push(0)
|
||||||
}
|
}
|
||||||
uplotData[0].push(cd.max)
|
// Iterate
|
||||||
|
canvasData.forEach( cd => {
|
||||||
|
if (Object.keys(cd).length == 4) { // MetricHisto Datafromat
|
||||||
|
uplotData[0].push(cd?.max ? cd.max : 0)
|
||||||
uplotData[1].push(cd.count)
|
uplotData[1].push(cd.count)
|
||||||
} else { // Default
|
} else { // Default
|
||||||
uplotData[0].push(cd.value)
|
uplotData[0].push(cd.value)
|
||||||
|
Loading…
Reference in New Issue
Block a user