gitlab-org--gitlab-foss/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/metrics.json

24 lines
545 B
JSON

{
"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
}