summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/metrics.json
blob: 9c1be32645ab9969e8ac858fff29dbcbff692603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "type": "object",
  "required": [
    "unit",
    "label",
    "prometheus_endpoint_path"
  ],
  "oneOf": [
    { "required": ["query"] },
    { "required": ["query_range"] }
  ],
  "properties": {
    "id": { "type": "string" },
    "query_range": { "type": "string" },
    "query": { "type": "string" },
    "unit": { "type": "string" },
    "label": { "type": "string" },
    "track": { "type": "string" },
    "prometheus_endpoint_path": { "type": "string" },
    "metric_id": { "type": "number" }
  },
  "additionalProperties": false
}