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

panel.json « schemas « validator « dashboard « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 011eef53e40bc98c997a30c8572614bf1b10a3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "type": "object",
  "required": ["title", "metrics"],
  "properties": {
    "type": {
      "type": "string",
      "enum": ["area-chart", "anomaly-chart", "bar", "column", "stacked-column", "single-stat", "heatmap"],
      "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" }
    }
  }
}