mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-12-26 13:29:05 +01:00
Add MetricConfig in SubClusters.
This commit is contained in:
parent
efde2cbb8e
commit
747f6d4e2d
@ -50,6 +50,7 @@ type SubCluster {
|
|||||||
flopRateSimd: MetricValue!
|
flopRateSimd: MetricValue!
|
||||||
memoryBandwidth: MetricValue!
|
memoryBandwidth: MetricValue!
|
||||||
topology: Topology!
|
topology: Topology!
|
||||||
|
metricConfig: [MetricConfig!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type MetricValue {
|
type MetricValue {
|
||||||
@ -86,6 +87,10 @@ type MetricConfig {
|
|||||||
scope: MetricScope!
|
scope: MetricScope!
|
||||||
aggregation: String
|
aggregation: String
|
||||||
timestep: Int!
|
timestep: Int!
|
||||||
|
peak: Float!
|
||||||
|
normal: Float!
|
||||||
|
caution: Float!
|
||||||
|
alert: Float!
|
||||||
subClusters: [SubClusterConfig]
|
subClusters: [SubClusterConfig]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,7 +138,11 @@ type ComplexityRoot struct {
|
|||||||
|
|
||||||
MetricConfig struct {
|
MetricConfig struct {
|
||||||
Aggregation func(childComplexity int) int
|
Aggregation func(childComplexity int) int
|
||||||
|
Alert func(childComplexity int) int
|
||||||
|
Caution func(childComplexity int) int
|
||||||
Name func(childComplexity int) int
|
Name func(childComplexity int) int
|
||||||
|
Normal func(childComplexity int) int
|
||||||
|
Peak func(childComplexity int) int
|
||||||
Scope func(childComplexity int) int
|
Scope func(childComplexity int) int
|
||||||
SubClusters func(childComplexity int) int
|
SubClusters func(childComplexity int) int
|
||||||
Timestep func(childComplexity int) int
|
Timestep func(childComplexity int) int
|
||||||
@ -215,6 +219,7 @@ type ComplexityRoot struct {
|
|||||||
FlopRateScalar func(childComplexity int) int
|
FlopRateScalar func(childComplexity int) int
|
||||||
FlopRateSimd func(childComplexity int) int
|
FlopRateSimd func(childComplexity int) int
|
||||||
MemoryBandwidth func(childComplexity int) int
|
MemoryBandwidth func(childComplexity int) int
|
||||||
|
MetricConfig func(childComplexity int) int
|
||||||
Name func(childComplexity int) int
|
Name func(childComplexity int) int
|
||||||
Nodes func(childComplexity int) int
|
Nodes func(childComplexity int) int
|
||||||
NumberOfNodes func(childComplexity int) int
|
NumberOfNodes func(childComplexity int) int
|
||||||
@ -702,6 +707,20 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
|
|||||||
|
|
||||||
return e.complexity.MetricConfig.Aggregation(childComplexity), true
|
return e.complexity.MetricConfig.Aggregation(childComplexity), true
|
||||||
|
|
||||||
|
case "MetricConfig.alert":
|
||||||
|
if e.complexity.MetricConfig.Alert == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return e.complexity.MetricConfig.Alert(childComplexity), true
|
||||||
|
|
||||||
|
case "MetricConfig.caution":
|
||||||
|
if e.complexity.MetricConfig.Caution == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return e.complexity.MetricConfig.Caution(childComplexity), true
|
||||||
|
|
||||||
case "MetricConfig.name":
|
case "MetricConfig.name":
|
||||||
if e.complexity.MetricConfig.Name == nil {
|
if e.complexity.MetricConfig.Name == nil {
|
||||||
break
|
break
|
||||||
@ -709,6 +728,20 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
|
|||||||
|
|
||||||
return e.complexity.MetricConfig.Name(childComplexity), true
|
return e.complexity.MetricConfig.Name(childComplexity), true
|
||||||
|
|
||||||
|
case "MetricConfig.normal":
|
||||||
|
if e.complexity.MetricConfig.Normal == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return e.complexity.MetricConfig.Normal(childComplexity), true
|
||||||
|
|
||||||
|
case "MetricConfig.peak":
|
||||||
|
if e.complexity.MetricConfig.Peak == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return e.complexity.MetricConfig.Peak(childComplexity), true
|
||||||
|
|
||||||
case "MetricConfig.scope":
|
case "MetricConfig.scope":
|
||||||
if e.complexity.MetricConfig.Scope == nil {
|
if e.complexity.MetricConfig.Scope == nil {
|
||||||
break
|
break
|
||||||
@ -1106,6 +1139,13 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
|
|||||||
|
|
||||||
return e.complexity.SubCluster.MemoryBandwidth(childComplexity), true
|
return e.complexity.SubCluster.MemoryBandwidth(childComplexity), true
|
||||||
|
|
||||||
|
case "SubCluster.metricConfig":
|
||||||
|
if e.complexity.SubCluster.MetricConfig == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return e.complexity.SubCluster.MetricConfig(childComplexity), true
|
||||||
|
|
||||||
case "SubCluster.name":
|
case "SubCluster.name":
|
||||||
if e.complexity.SubCluster.Name == nil {
|
if e.complexity.SubCluster.Name == nil {
|
||||||
break
|
break
|
||||||
@ -1429,6 +1469,7 @@ type SubCluster {
|
|||||||
flopRateSimd: MetricValue!
|
flopRateSimd: MetricValue!
|
||||||
memoryBandwidth: MetricValue!
|
memoryBandwidth: MetricValue!
|
||||||
topology: Topology!
|
topology: Topology!
|
||||||
|
metricConfig: [MetricConfig!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type MetricValue {
|
type MetricValue {
|
||||||
@ -1465,6 +1506,10 @@ type MetricConfig {
|
|||||||
scope: MetricScope!
|
scope: MetricScope!
|
||||||
aggregation: String
|
aggregation: String
|
||||||
timestep: Int!
|
timestep: Int!
|
||||||
|
peak: Float!
|
||||||
|
normal: Float!
|
||||||
|
caution: Float!
|
||||||
|
alert: Float!
|
||||||
subClusters: [SubClusterConfig]
|
subClusters: [SubClusterConfig]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2422,6 +2467,14 @@ func (ec *executionContext) fieldContext_Cluster_metricConfig(ctx context.Contex
|
|||||||
return ec.fieldContext_MetricConfig_aggregation(ctx, field)
|
return ec.fieldContext_MetricConfig_aggregation(ctx, field)
|
||||||
case "timestep":
|
case "timestep":
|
||||||
return ec.fieldContext_MetricConfig_timestep(ctx, field)
|
return ec.fieldContext_MetricConfig_timestep(ctx, field)
|
||||||
|
case "peak":
|
||||||
|
return ec.fieldContext_MetricConfig_peak(ctx, field)
|
||||||
|
case "normal":
|
||||||
|
return ec.fieldContext_MetricConfig_normal(ctx, field)
|
||||||
|
case "caution":
|
||||||
|
return ec.fieldContext_MetricConfig_caution(ctx, field)
|
||||||
|
case "alert":
|
||||||
|
return ec.fieldContext_MetricConfig_alert(ctx, field)
|
||||||
case "subClusters":
|
case "subClusters":
|
||||||
return ec.fieldContext_MetricConfig_subClusters(ctx, field)
|
return ec.fieldContext_MetricConfig_subClusters(ctx, field)
|
||||||
}
|
}
|
||||||
@ -2492,6 +2545,8 @@ func (ec *executionContext) fieldContext_Cluster_subClusters(ctx context.Context
|
|||||||
return ec.fieldContext_SubCluster_memoryBandwidth(ctx, field)
|
return ec.fieldContext_SubCluster_memoryBandwidth(ctx, field)
|
||||||
case "topology":
|
case "topology":
|
||||||
return ec.fieldContext_SubCluster_topology(ctx, field)
|
return ec.fieldContext_SubCluster_topology(ctx, field)
|
||||||
|
case "metricConfig":
|
||||||
|
return ec.fieldContext_SubCluster_metricConfig(ctx, field)
|
||||||
}
|
}
|
||||||
return nil, fmt.Errorf("no field named %q was found under type SubCluster", field.Name)
|
return nil, fmt.Errorf("no field named %q was found under type SubCluster", field.Name)
|
||||||
},
|
},
|
||||||
@ -4933,6 +4988,182 @@ func (ec *executionContext) fieldContext_MetricConfig_timestep(ctx context.Conte
|
|||||||
return fc, nil
|
return fc, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _MetricConfig_peak(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_MetricConfig_peak(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.Peak, 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.(*float64)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalNFloat2ᚖfloat64(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_MetricConfig_peak(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "MetricConfig",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
return nil, errors.New("field of type Float does not have child fields")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _MetricConfig_normal(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_MetricConfig_normal(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.Normal, 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.(*float64)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalNFloat2ᚖfloat64(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_MetricConfig_normal(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "MetricConfig",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
return nil, errors.New("field of type Float does not have child fields")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _MetricConfig_caution(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_MetricConfig_caution(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.Caution, 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.(*float64)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalNFloat2ᚖfloat64(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_MetricConfig_caution(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "MetricConfig",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
return nil, errors.New("field of type Float does not have child fields")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _MetricConfig_alert(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_MetricConfig_alert(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.Alert, 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.(*float64)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalNFloat2ᚖfloat64(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_MetricConfig_alert(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "MetricConfig",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
return nil, errors.New("field of type Float does not have child fields")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (ec *executionContext) _MetricConfig_subClusters(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
func (ec *executionContext) _MetricConfig_subClusters(ctx context.Context, field graphql.CollectedField, obj *schema.MetricConfig) (ret graphql.Marshaler) {
|
||||||
fc, err := ec.fieldContext_MetricConfig_subClusters(ctx, field)
|
fc, err := ec.fieldContext_MetricConfig_subClusters(ctx, field)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -7615,6 +7846,72 @@ func (ec *executionContext) fieldContext_SubCluster_topology(ctx context.Context
|
|||||||
return fc, nil
|
return fc, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) _SubCluster_metricConfig(ctx context.Context, field graphql.CollectedField, obj *schema.SubCluster) (ret graphql.Marshaler) {
|
||||||
|
fc, err := ec.fieldContext_SubCluster_metricConfig(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.MetricConfig, 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.([]*schema.MetricConfig)
|
||||||
|
fc.Result = res
|
||||||
|
return ec.marshalNMetricConfig2ᚕᚖgithubᚗcomᚋClusterCockpitᚋccᚑbackendᚋpkgᚋschemaᚐMetricConfigᚄ(ctx, field.Selections, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) fieldContext_SubCluster_metricConfig(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
|
||||||
|
fc = &graphql.FieldContext{
|
||||||
|
Object: "SubCluster",
|
||||||
|
Field: field,
|
||||||
|
IsMethod: false,
|
||||||
|
IsResolver: false,
|
||||||
|
Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
|
||||||
|
switch field.Name {
|
||||||
|
case "name":
|
||||||
|
return ec.fieldContext_MetricConfig_name(ctx, field)
|
||||||
|
case "unit":
|
||||||
|
return ec.fieldContext_MetricConfig_unit(ctx, field)
|
||||||
|
case "scope":
|
||||||
|
return ec.fieldContext_MetricConfig_scope(ctx, field)
|
||||||
|
case "aggregation":
|
||||||
|
return ec.fieldContext_MetricConfig_aggregation(ctx, field)
|
||||||
|
case "timestep":
|
||||||
|
return ec.fieldContext_MetricConfig_timestep(ctx, field)
|
||||||
|
case "peak":
|
||||||
|
return ec.fieldContext_MetricConfig_peak(ctx, field)
|
||||||
|
case "normal":
|
||||||
|
return ec.fieldContext_MetricConfig_normal(ctx, field)
|
||||||
|
case "caution":
|
||||||
|
return ec.fieldContext_MetricConfig_caution(ctx, field)
|
||||||
|
case "alert":
|
||||||
|
return ec.fieldContext_MetricConfig_alert(ctx, field)
|
||||||
|
case "subClusters":
|
||||||
|
return ec.fieldContext_MetricConfig_subClusters(ctx, field)
|
||||||
|
}
|
||||||
|
return nil, fmt.Errorf("no field named %q was found under type MetricConfig", field.Name)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return fc, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (ec *executionContext) _SubClusterConfig_name(ctx context.Context, field graphql.CollectedField, obj *schema.SubClusterConfig) (ret graphql.Marshaler) {
|
func (ec *executionContext) _SubClusterConfig_name(ctx context.Context, field graphql.CollectedField, obj *schema.SubClusterConfig) (ret graphql.Marshaler) {
|
||||||
fc, err := ec.fieldContext_SubClusterConfig_name(ctx, field)
|
fc, err := ec.fieldContext_SubClusterConfig_name(ctx, field)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -11387,6 +11684,34 @@ func (ec *executionContext) _MetricConfig(ctx context.Context, sel ast.Selection
|
|||||||
|
|
||||||
out.Values[i] = ec._MetricConfig_timestep(ctx, field, obj)
|
out.Values[i] = ec._MetricConfig_timestep(ctx, field, obj)
|
||||||
|
|
||||||
|
if out.Values[i] == graphql.Null {
|
||||||
|
invalids++
|
||||||
|
}
|
||||||
|
case "peak":
|
||||||
|
|
||||||
|
out.Values[i] = ec._MetricConfig_peak(ctx, field, obj)
|
||||||
|
|
||||||
|
if out.Values[i] == graphql.Null {
|
||||||
|
invalids++
|
||||||
|
}
|
||||||
|
case "normal":
|
||||||
|
|
||||||
|
out.Values[i] = ec._MetricConfig_normal(ctx, field, obj)
|
||||||
|
|
||||||
|
if out.Values[i] == graphql.Null {
|
||||||
|
invalids++
|
||||||
|
}
|
||||||
|
case "caution":
|
||||||
|
|
||||||
|
out.Values[i] = ec._MetricConfig_caution(ctx, field, obj)
|
||||||
|
|
||||||
|
if out.Values[i] == graphql.Null {
|
||||||
|
invalids++
|
||||||
|
}
|
||||||
|
case "alert":
|
||||||
|
|
||||||
|
out.Values[i] = ec._MetricConfig_alert(ctx, field, obj)
|
||||||
|
|
||||||
if out.Values[i] == graphql.Null {
|
if out.Values[i] == graphql.Null {
|
||||||
invalids++
|
invalids++
|
||||||
}
|
}
|
||||||
@ -12149,6 +12474,13 @@ func (ec *executionContext) _SubCluster(ctx context.Context, sel ast.SelectionSe
|
|||||||
|
|
||||||
out.Values[i] = ec._SubCluster_topology(ctx, field, obj)
|
out.Values[i] = ec._SubCluster_topology(ctx, field, obj)
|
||||||
|
|
||||||
|
if out.Values[i] == graphql.Null {
|
||||||
|
invalids++
|
||||||
|
}
|
||||||
|
case "metricConfig":
|
||||||
|
|
||||||
|
out.Values[i] = ec._SubCluster_metricConfig(ctx, field, obj)
|
||||||
|
|
||||||
if out.Values[i] == graphql.Null {
|
if out.Values[i] == graphql.Null {
|
||||||
invalids++
|
invalids++
|
||||||
}
|
}
|
||||||
@ -12955,6 +13287,27 @@ func (ec *executionContext) marshalNFloat2ᚕᚕfloat64ᚄ(ctx context.Context,
|
|||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) unmarshalNFloat2ᚖfloat64(ctx context.Context, v interface{}) (*float64, error) {
|
||||||
|
res, err := graphql.UnmarshalFloatContext(ctx, v)
|
||||||
|
return &res, graphql.ErrorOnPath(ctx, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ec *executionContext) marshalNFloat2ᚖfloat64(ctx context.Context, sel ast.SelectionSet, v *float64) graphql.Marshaler {
|
||||||
|
if v == nil {
|
||||||
|
if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
|
||||||
|
ec.Errorf(ctx, "the requested element is null which the schema does not allow")
|
||||||
|
}
|
||||||
|
return graphql.Null
|
||||||
|
}
|
||||||
|
res := graphql.MarshalFloatContext(*v)
|
||||||
|
if res == graphql.Null {
|
||||||
|
if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
|
||||||
|
ec.Errorf(ctx, "the requested element is null which the schema does not allow")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return graphql.WrapContextMarshaler(ctx, res)
|
||||||
|
}
|
||||||
|
|
||||||
func (ec *executionContext) marshalNHistoPoint2ᚕᚖgithubᚗcomᚋClusterCockpitᚋccᚑbackendᚋinternalᚋgraphᚋmodelᚐHistoPointᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.HistoPoint) graphql.Marshaler {
|
func (ec *executionContext) marshalNHistoPoint2ᚕᚖgithubᚗcomᚋClusterCockpitᚋccᚑbackendᚋinternalᚋgraphᚋmodelᚐHistoPointᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.HistoPoint) graphql.Marshaler {
|
||||||
ret := make(graphql.Array, len(v))
|
ret := make(graphql.Array, len(v))
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
|
Loading…
Reference in New Issue
Block a user