Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/metrics/dashboard/validator/schemas/panel.json')
-rw-r--r--lib/gitlab/metrics/dashboard/validator/schemas/panel.json24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/gitlab/metrics/dashboard/validator/schemas/panel.json b/lib/gitlab/metrics/dashboard/validator/schemas/panel.json
deleted file mode 100644
index 2ae9608036e..00000000000
--- a/lib/gitlab/metrics/dashboard/validator/schemas/panel.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "type": "object",
- "required": ["title", "metrics"],
- "properties": {
- "type": {
- "type": "string",
- "enum": ["area-chart", "line-chart", "anomaly-chart", "bar", "column", "stacked-column", "single-stat", "heatmap", "gauge"],
- "default": "area-chart"
- },
- "title": { "type": "string" },
- "y_label": { "type": "string" },
- "y_axis": { "$ref": "./axis.json" },
- "max_value": { "type": "number" },
- "weight": { "type": "number" },
- "metrics": {
- "type": "array",
- "items": { "$ref": "./metric.json" }
- },
- "links": {
- "type": "array",
- "items": { "$ref": "./link.json" }
- }
- }
-}