mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2026-08-31 08:57:14 +02:00
plot-configuration.resample-policy and resample-algo are read into PlotConfiguration and exposed through UIDefaultsMap as the site default for new users, but neither appeared in the schema, so they looked unsupported. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
206 lines
7.3 KiB
Go
206 lines
7.3 KiB
Go
// Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
|
// All rights reserved. This file is part of cc-backend.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package web
|
|
|
|
const configSchema = `{
|
|
"type": "object",
|
|
"properties": {
|
|
"job-list": {
|
|
"description": "Job list defaults. Applies to user- and jobs views.",
|
|
"type": "object",
|
|
"properties": {
|
|
"use-paging": {
|
|
"description": "If classic paging is used instead of continuous scrolling by default.",
|
|
"type": "boolean"
|
|
},
|
|
"show-footprint": {
|
|
"description": "If footprint bars are shown as first column by default.",
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"node-list": {
|
|
"description": "Node list defaults. Applies to node list view.",
|
|
"type": "object",
|
|
"properties": {
|
|
"use-paging": {
|
|
"description": "If classic paging is used instead of continuous scrolling by default.",
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"job-view": {
|
|
"description": "Job view defaults.",
|
|
"type": "object",
|
|
"properties": {
|
|
"show-polar-plot": {
|
|
"description": "If the job metric footprints polar plot is shown by default.",
|
|
"type": "boolean"
|
|
},
|
|
"show-footprint": {
|
|
"description": "If the annotated job metric footprint bars are shown by default.",
|
|
"type": "boolean"
|
|
},
|
|
"show-roofline": {
|
|
"description": "If the job roofline plot is shown by default.",
|
|
"type": "boolean"
|
|
},
|
|
"show-stat-table": {
|
|
"description": "If the job metric statistics table is shown by default.",
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
"metric-config": {
|
|
"description": "Global initial metric selections for primary views of all clusters.",
|
|
"type": "object",
|
|
"properties": {
|
|
"job-list-metrics": {
|
|
"description": "Initial metrics shown for new users in job lists (User and jobs view).",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-plot-metrics": {
|
|
"description": "Initial metrics shown for new users as job view metric plots.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-table-metrics": {
|
|
"description": "Initial metrics shown for new users in job view statistics table.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"clusters": {
|
|
"description": "Overrides for global defaults by cluster and subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "The name of the cluster."
|
|
},
|
|
"job-list-metrics": {
|
|
"description": "Initial metrics shown for new users in job lists (User and jobs view) for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-plot-metrics": {
|
|
"description": "Initial metrics shown for new users as job view timeplots for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-table-metrics": {
|
|
"description": "Initial metrics shown for new users in job view statistics table for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"sub-clusters": {
|
|
"description": "The array of overrides per subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "The name of the subcluster.",
|
|
"type": "string"
|
|
},
|
|
"job-list-metrics": {
|
|
"description": "Initial metrics shown for new users in job lists (User and jobs view) for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-plot-metrics": {
|
|
"description": "Initial metrics shown for new users as job view timeplots for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"job-view-table-metrics": {
|
|
"description": "Initial metrics shown for new users in job view statistics table for subcluster.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"minItems": 1
|
|
}
|
|
}
|
|
},
|
|
"required": ["name"],
|
|
"minItems": 1
|
|
}
|
|
}
|
|
},
|
|
"required": ["name"],
|
|
"minItems": 1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"plot-configuration": {
|
|
"description": "Initial settings for plot render options.",
|
|
"type": "object",
|
|
"properties": {
|
|
"color-background": {
|
|
"description": "If the metric plot backgrounds are initially colored by threshold limits.",
|
|
"type": "boolean"
|
|
},
|
|
"plots-per-row": {
|
|
"description": "How many plots are initially rendered in per row. Applies to job, single node, and analysis views.",
|
|
"type": "integer"
|
|
},
|
|
"line-width": {
|
|
"description": "Initial thickness of rendered plotlines. Applies to metric plot, job compare plot and roofline.",
|
|
"type": "integer"
|
|
},
|
|
"smoothing-window": {
|
|
"description": "Initial display smoothing window in data points, applied after downsampling. 0 disables smoothing. Display-only: reported statistics and footprints are unaffected.",
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"resample-policy": {
|
|
"description": "Initial resample policy for new users, controlling how many data points metric plots request. Empty string falls back to main.resampling.default-policy.",
|
|
"type": "string",
|
|
"enum": ["", "low", "medium", "high"]
|
|
},
|
|
"resample-algo": {
|
|
"description": "Initial resample algorithm for new users. Empty string falls back to main.resampling.default-algo.",
|
|
"type": "string",
|
|
"enum": ["", "lttb", "average", "simple"]
|
|
},
|
|
"color-scheme": {
|
|
"description": "Initial colorScheme to be used for metric plots.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}`
|