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: a16f1ef592f611caa5989c8fbf67cb550c022305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "required": [
    "title",
    "y_label",
    "metrics"
  ],
  "properties": {
    "title": { "type": "string" },
    "type": { "type": "string" },
    "y_label": { "type": "string" },
    "weight": { "type": "number" },
    "metrics": {
      "type": "array",
      "items": { "$ref": "metrics.json" }
    }
  },
  "additionalProperties": false
}