debian-mirror-gitlab/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/metrics.json
2020-03-13 15:44:24 +05:30

23 lines
582 B
JSON

{
"type": "object",
"required": [
"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" },
"edit_path": { "type": ["string", "null"] }
},
"additionalProperties": false
}