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

panels.json « schemas « dashboard « metrics « gitlab « lib « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20595cc0d73d6fa241c3ee83482c140c665e04d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "title",
    "y_label",
    "metrics"
  ],
  "properties": {
    "title": { "type": "string" },
    "id": { "type": "string" },
    "type": { "type": "string" },
    "y_label": { "type": "string" },
    "y_axis": { "$ref": "axis.json" },
    "max_value": { "type": "number" },
    "weight": { "type": "number" },
    "metrics": {
      "type": "array",
      "items": { "$ref": "metrics.json" }
    }
  },
  "additionalProperties": false
}