summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/dashboard/validator/schemas/panel.json
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" }
    }
  }
}